* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
}

/* navbar css */

.navbar {
    background-color: #2b507f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    border-bottom-left-radius: 13px;
    border-bottom-right-radius: 13px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar__logo span {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.navbar__links {
    list-style: none;
    display: flex;
    gap: 40px;
}

@media (max-width: 768px) {
    .navbar__links {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        background: rgb(55, 104, 168);
        /* optional */
        position: absolute;
        top: 60px;
        /* adjust as per your navbar height */
        left: 0;
        width: 100%;
        z-index: 10;
        padding: 20px;
    }

    .navbar__links.active a {
        color: white;
    }

    .navbar__links.active {
        display: flex;
    }
}

.navbar__links li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.navbar .cta-button {
    margin-top: 0;
}
.navbar__cta .cta-button {
    background-color: white;
    color: #154f7a;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
    margin-right: 10px;
}

.navbar__cta .cta-button:hover {
    background-color: #e0e0e0;
}
.cta-button {
    background-color: #fbbf24;
    color: #1f2937;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cta-button {
    background: #fbbf24;
    color: #1f2937;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
/* Icon Buttons */
.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #154f7a;
    cursor: pointer;
    border: none;
    margin-left: 10px;
}

.icon-btn.phone {
    background-color: #ffd700;
    color: #154f7a;
}

.icon-btn i {
    font-size: 18px;
}

/* Hide mobile icons on desktop */
.mobile-cta {
    display: none;
}

/* ✅ Responsive behavior */
@media screen and (max-width: 768px) {
    .navbar__links,
    .desktop-cta {
        display: none;
    }

    .mobile-cta {
        display: flex;
    }
    .navbar__cta .cta-button {
        margin-right: 0;
    }
}



.contact-section1 {
    margin-top: 110px;
    margin-bottom: 50px;
    text-align: center;
}
.contact-header1 {
    font-size: 37px;
    font-weight: 600;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.contact-details1 {
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
}
.contact-item1 {
    font-size: 22px;
    opacity: 0.9;
}


/* footer */
.site-footer {
    background: linear-gradient(90deg, #203e66 0%, #3076bb 100%);
    color: white;
    padding: clamp(3rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem) 0;
}
.footer-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.brand-section {
    max-width: 400px;
}
.company-logo {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 700;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 0.05em;
}
.brand-description {
    font-size: clamp(0.875rem, 0.5vw, 0rem);
    line-height: 1.6;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    opacity: 0.9;
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #1e3a8a;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.menu-column {
    display: flex;
    flex-direction: column;
}
.column-header {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
}
.menu-link {
    color: white;
    text-decoration: none;
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    opacity: 0.9;
    transition: all 0.3s ease;
}
.contact-section {
    display: flex;
    flex-direction: column;
}
.contact-header {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.contact-details {
    display: flex ;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
}
.contact-item {
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    opacity: 0.9;
}
.contact-item.highlight {
    opacity: 1;
    font-weight: 500;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: clamp(1rem, 2vw, 1.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.copyright-text {
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    opacity: 0.8;
}
.legal-links {
    display: flex ;
    gap: clamp(1rem, 2vw, 1.5rem);
}
.legal-link {
    color: white;
    text-decoration: none;
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    opacity: 0.8;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 2.5rem);
    }
    .brand-section {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    .menu-column {
        width: 48%;
    }
    .contact-section {
        width: 100%;
        margin-top: 1rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: clamp(1rem, 2vw, 1.5rem);
    }
    .legal-links {
        justify-content: center;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
}