* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Inter', sans-serif; */
    line-height: 1.6;
    color: #4A4A4A !important;
    font-family: "Manrope", sans-serif !important;
    font-optical-sizing: auto !important;
    font-weight: 400;
    font-style: normal;
}

header {
    background: #004c97;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.1rem;
}

nav {
    background: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 10;
}

nav a {
    text-decoration: none;
    color: #004c97;
    font-weight: 600;
}

section {
    padding: 3rem 1rem;
    /* max-width: 1100px; */
    margin: auto;
}

section h2 {
    color: #004c97;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.services,
.why,
.testimonials {
    display: grid;
    gap: 2rem;
}

.card {
    background: #f5f9ff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonials blockquote {
    font-style: italic;
    margin-bottom: 1rem;
}

footer {
    background: #004c97;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input,
textarea {
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

button {
    padding: 0.8rem;
    background: #004c97;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.hide {
    display: none;
}

@media (min-width: 768px) {

    .services,
    .why {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero-header {
    background: #fff;
    /* linear-gradient(135deg, #004c97, #0a82d4); */
    color: white;
    text-align: center;
    padding: 1rem 1rem 4rem;
    animation: fadeIn 1s ease-in-out;
    position: relative;
    overflow: hidden;
    color: #4b8c38;
    margin-top: 100px;
    z-index: 22;
    background: transparent;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: slideIn 1s ease-out forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    animation: fadeIn 2s ease-in 1s forwards;
    opacity: 0;
}

.dark-grey {
    color: #4A4A4A !important;
}

.ml--20 {
    margin-left: -20px;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

#about-section {
    padding: 3rem 1rem;
    /* max-width: 1100px; */
    margin: auto;
    text-align: center;
}

#about-section h2 {
    font-size: 2rem;
    color: #004c97;
    margin-bottom: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-card {
    background: #f5f9ff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.about-card p {
    font-size: 1rem;
    color: #333;
}

.nav-bar-custom {
    background: #fff;
    height: 120px;
    border-bottom: 0;
}

.btn-custom-color {
    background: #4b8c38;
}

.nav-bar-custom img {
    height: 90px;
    border-radius: 50%;
    background: white;
}

.nav-bar-custom .navbar-collapse {
    background: #fff;
}

.about-text .all-titles,
.all-titles {
    font-size: 36px;
    color: #4b8c38;
}

footer {
    background: #4b8c38;
    color: #ecf0f1;
    padding: 30px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: auto;
}

.footer-contact {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 10px;
    display: inline-block;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-copy {
    font-size: 14px;
    color: #bdc3c7;
}

@media (max-width: 768px) {
    .hero-header {
        margin-top: 85px;
    }

    .btn-custom-color.btn-lg.ml-3 {
        margin-left: 0 !important;
    }

    .nav-bar-custom .navbar-nav.mr-0 {
        /* margin-right: 0; */
        text-align: right;
    }

    .nav-bar-custom .navbar-collapse {
        margin-top: -40px;
        background: #f7f5f9;
        padding: 0 10px 20px 0;
    }

    .dropdown {
        padding: 15px;
    }

    .nav-bar-custom {
        height: 100px;
    }

    .about-section {
        flex-direction: column-reverse;
        padding: 0 0px 25px;
    }

    .about-text .all-titles,
    .all-titles {
        font-size: 28px;
    }

    .services .card h3,
    .card h3 {
        font-size: 22px;
    }
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}




.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: #ffffff;
}

.about-text,
.about-image {
    flex: 1 1 300px;
    padding: 20px;
}

.about-text h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.about-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column-reverse;
        text-align: justify;
        padding: 0;
    }

    .about-text h2 {
        font-size: 28px;
    }
}