/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.header-fixed {
    position: fixed;
    background: white;
    top: 0;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header .container {
    background: var(--color-white);
    border-radius: 0 0 20px 20px;
    padding: 10px 20px;
    transition: padding 0.3s ease;
}

.header.header-fixed .container {
    padding: 8px 20px;
}

.header.header-fixed .logo img {
    height: 45px;
    transition: height 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    justify-content: center;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.header,
.header * {
    font-family: var(--ff-body);
}

.header .nav-link,
.header .dropdown-toggle,
.header .dropdown-menu li a,
.header .header-cta .btn {
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
}

.dropdown-toggle i {
    font-size: 0.9em;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--color-text);
    cursor: pointer;
    z-index: 1300;
}

.nav-close,
.nav-overlay {
    display: none;
}

.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    background: transparent;
    border: none;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    list-style: none;
    display: none;
    z-index: 1200;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 16px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 15px;
}

.has-dropdown:hover>.dropdown-menu,
.has-dropdown.open>.dropdown-menu {
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-text);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(199, 231, 56, 0.3);
}


/* About Banner  */
.about-banner {
    position: relative;
    width: 100%;
    background: #f5f5f5;
}

.about-banner-img {
    margin-bottom: -4px;
    width: 100%;
    z-index: -1;
    object-position: top;
}

.bannerContent {
    position: absolute;
    bottom: clamp(12%, 15vh, 22%);
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    padding: 0 12px;
}

.about-banner-title {
    font-family: var(--ff-heading);
    font-size: 55px;
    font-weight: 400;
    color: white;
    text-align: center;
    line-height: 1.1;
}

.about-banner-para {
    font-family: var(--ff-body);
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin-top: 16px;
}

/* Large Tablet */
@media (max-width: 1024px) {
    .about-banner-title br {
        display: none;
    }

    .bannerContent {
        width: 70%;
    }

    .about-banner-title {
        font-size: 44px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .about-banner-title {
        font-size: 36px;
        bottom: 12%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .about-banner-img {
        height: 250px;
        object-fit: cover;
    }

    .bannerContent {
        bottom: 15%;
        max-width: 94%;
        width: 80%;
    }

    .about-banner-title {
        font-size: 25px;
    }

    .about-banner-para {
        font-size: 14px;
    }

    .about-banner-para br {
        display: none;
    }
}

/* About Banner end  */



/* FAQ */
.faq-section {
    padding: var(--section-padding) 0;
    background: #fff;
}

.faq-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-heading);
    font-weight: 400;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 30px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid #D8D8D8;
    box-shadow: 0px 10px 30px 0px #00000014;
    overflow: hidden;
    border-radius: 10px;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--ff-heading);
    font-size: var(--fs-body);
    font-weight: 400;
    color: var(--color-text);
}

.faq-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--color-text);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item-active .faq-answer {
    max-height: 300px;
    padding: 0 20px 18px;
}

.faq-answer p {
    font-family: var(--ff-body);
    font-size: 16px;
    color: #5a6a64;
    line-height: 1.7;
    margin: 0;
}

/* Map */
.map-section {
    position: relative;
    width: 100%;
    background: #F5F5F5;
    padding-bottom: var(--section-padding-sm);
}

.map-container {
    position: relative;
    width: 100%;
    bottom: 30px;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
}

.map-info-address {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.5;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #001F1A 0%, #003A30 50%, #001F1A 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0 0;
}

.footer-decor-left {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 100px;
    opacity: 0.6;
}

.footer-decor-center {
    position: absolute;
    top: -8%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    opacity: 0.6;
}

.footer-decor-right {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 120px;
    opacity: 0.4;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-top-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 16px;
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text);
}

.footer-cta {
    font-size: 14px;
    padding: 12px 24px;
}

.footer-nav {
    padding: 30px 0;
}

.footer-nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 50px;
}

.footer-nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.footer-contact-item:hover {
    color: var(--color-primary);
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .header .container {
        padding: 12px 16px;
    }

    .header-content {
        gap: 16px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        z-index: 1600;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 85%;
        max-width: 360px;
        background: var(--color-white);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 320ms ease;
        display: block;
        z-index: 4000;
        padding-top: 72px;
    }

    .nav-close {
        position: absolute;
        top: 14px;
        right: 12px;
        background: transparent;
        border: none;
        font-size: 20px;
        color: var(--color-text);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.38);
        z-index: 2000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 220ms ease;
    }

    .nav-overlay.visible {
        opacity: 1;
        pointer-events: auto;
    }

    body.nav-open .nav {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
    }

    .nav-menu>li {
        border-top: 1px solid #F0F0F0;
    }

    .nav-menu .nav-link,
    .dropdown-toggle {
        display: block;
        padding: 12px 18px;
        width: 100%;
        text-align: left;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 0 12px;
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 260ms ease, padding 200ms ease;
    }

    .has-dropdown.open>.dropdown-menu {
        max-height: 600px;
        padding: 8px 0 8px 12px;
    }

    body.nav-open {
        overflow: hidden;
    }

    .header-cta {
        display: none;
    }

    .footer-nav-menu {
        gap: 30px;
    }

    .footer-contact {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: var(--section-padding-sm) 0;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 16px;
    }

    .faq-item-active .faq-answer {
        padding: 0 20px 16px;
    }

    .map-container iframe {
        height: 350px;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-top-right {
        flex-direction: column;
        gap: 16px;
    }

    .footer-nav-menu {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-contact {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer-decor-left,
    .footer-decor-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 30px !important;
    }

    .header .container {
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .map-section {
        padding-bottom: 10px;
    }

    .map-container iframe {
        height: 300px;
    }


    .footer {
        padding: 30px 0 10px;
    }

    .footer-logo img {
        height: 42px;
    }

    .footer-nav {
        padding: 10px 0;
    }

    .footer-nav-link {
        font-size: 12px;
    }

    .footer-top-right {
        gap: 20px;
    }

    .footer-contact {
        gap: 12px;
        padding: 18px 0 10px;
    }

    .footer-contact-item {
        font-size: 13px;
        gap: 8px;
    }

    .footer-contact-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .footer-copyright {
        font-size: 13px;
    }

    .footer-decor-center {
        display: none;
    }
}


/* ===== Testimonials Section: START ===== */
.testimonials {
    padding: var(--section-padding) 0;
    background: #F5F5F5;
    margin-top: -4px;
    overflow-x: clip;
}

.testimonials-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-heading);
    font-weight: 400;
    color: var(--color-text);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 24px;
    margin-top: -150px;
}

.testimonials-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.testimonials-google-logo {
    height: 24px;
    width: 74px;
    min-width: 74px;
    object-fit: contain;
}

.testimonials-google-stars {
    display: flex;
    gap: 2px;
    color: #FBBC04;
    font-size: 14px;
}

.testimonials-google-text {
    font-family: var(--ff-body);
    font-size: 14px;
    color: #555;
}

.testimonials-google-text strong {
    color: var(--color-text);
}

.testimonials-carousel-wrapper {
    margin-left: calc((100vw - 1200px) / 2 + 20px);
    padding-right: 0;
    margin-bottom: 40px;
}

.testimonials-carousel {
    overflow: visible;
}

.testimonials-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0px 10px 40px 0px #0000000D;
    border: 1px solid #D7D7D7;

}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: #FBBC04;
    font-size: 16px;
}

.testimonial-google-icon {
    height: 20px;
    width: 60px !important;
    min-width: 60px;
    object-fit: contain;
}

.testimonial-text {
    font-family: var(--ff-body);
    font-size: var(--fs-body);
    font-style: italic;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0 0 20px;
    height: 120px;
    overflow-y: auto;
    padding-right: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    max-width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-avatar-initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #EAF5EE;
    border: 1px solid #CFE4D8;
    color: var(--color-text);
    font-family: var(--ff-body);
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.testimonial-name {
    font-family: var(--ff-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
}

.testimonials-action {
    text-align: center;
}

.testimonials-btn {
    padding: 8px 24px;
    font-size: 16px;
}

/* ----- Testimonials Section Media Query: max-width 1240px ----- */
@media (max-width: 1240px) {
    .testimonials-carousel-wrapper {
        margin-left: 20px;
    }
}

/* ----- Testimonials Section Media Query: max-width 992px ----- */
@media (max-width: 992px) {
    .testimonials-carousel-wrapper {
        margin-left: 20px;
    }
}

/* ----- Testimonials Section Media Query: max-width 768px ----- */
@media (max-width: 768px) {
    .testimonials {
        padding: var(--section-padding) 0;
    }

    .testimonials-title {
        font-size: 32px;
        margin-top: -80px;
    }

    .testimonials-carousel-wrapper {
        margin-left: 20px;
    }
}

/* ----- Testimonials Section Media Query: max-width 480px ----- */
@media (max-width: 480px) {
    .testimonials {
        padding: var(--section-padding) 0;
    }

    .testimonials-title {
        font-size: 28px;
        margin-top: -30px;
    }

    .testimonials-title br {
        display: none;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonials-google {
        flex-direction: column;
    }
}

/* ===== Testimonials Section: END ===== */