/* ================================================== */
/* import fonts */
/* ================================================== */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/* ================================================== */
/* Mobile Overflow Fix - Prevent horizontal scrolling and elastic scrolling */
/* ================================================== */

* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    overscroll-behavior-x: none;
    touch-action: pan-y;
    max-width: 100vw;
}

html {
    -webkit-overflow-scrolling: touch;
}

/* Prevent any container from being wider than viewport */
.container-fluid, .row {
    max-width: 100%;
    overflow-x: hidden;
}

/* Additional mobile overflow prevention */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Prevent text and pre elements from causing horizontal overflow */
pre, code {
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-x: auto;
    max-width: 100%;
}

/* Ensure all sections stay within viewport */
section:not(.navbar-section), main, article, aside {
    max-width: 100%;
    overflow-x: hidden;
}

/* Only apply to specific divs that need it */
div.container-fluid, div.row {
    overflow-x: hidden;
}

/* Mobile-specific: Prevent horizontal bounce/elastic scrolling */
@media (max-width: 768px) {
    body {
        overscroll-behavior: none;
        -webkit-overflow-scrolling: touch;
        position: relative;
    }
    
    /* Prevent horizontal scroll on mobile specifically */
    html {
        overflow-x: hidden;
        overscroll-behavior-x: none;
    }
}



:root {
    --primary-color: #2E7D32;
    --secondary-color: #8BC34A;
    --text-color: #333333;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --body-font: "Inter", Helvetica, Arial, sans-serif;
    --body-font-size: 16px;
    --body-font-weight: 400;
    --body-line-height: 1.6;
}

body {
    font-family: var(--body-font);
    font-size: var(--body-font-size);
    color: var(--text-color);
    line-height: var(--body-line-height);
    font-weight: var(--body-font-weight);
}

/* Header Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand h1 {
    font-weight: 600;
    font-size: 1.75rem; /* 25% larger than 1.4rem (default h4) */
    line-height: 1.1;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                url('../images/hero-bg.jpg') center/cover;
    /* padding-top: 50px; */
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 !important;
}

.hero-section h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(46,125,50,0.85) 0%, rgba(255,255,255,0.1) 60%, rgba(255,255,255,0.0) 100%);
    opacity: 0.85;
}

@media (min-width: 768px) {
    .hero-overlay-img {
        background:
            linear-gradient(90deg, rgba(46,125,50,0.85) 0%, rgba(255,255,255,0.1) 60%, rgba(255,255,255,0.0) 100%),
            url('../images/main.png') right center/contain no-repeat;
        opacity: 0.85;
    }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Section Styles */
.section-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Feature Box */
.feature-box {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Services Section */
.card {
    transition: transform 0.3s ease;
}

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

/* Contact Form */
.contact-form .form-control {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.contact-info i {
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
}

/* Info Bar Section */
.info-bar {
    background: #14226a;
    color: #fff;
    font-size: 1rem;
    border-bottom: 4px solid var(--primary-color);
}
.info-bar .info-icon {
    color: var(--secondary-color);
}
.info-bar a {
    color: #fff;
    transition: color 0.2s;
}
.info-bar a:hover {
    color: var(--secondary-color);
}
.info-bar .border-md-start,
.info-bar .border-md-end {
    border-width: 0 1px 0 1px !important;
}
@media (max-width: 991.98px) {
    .info-bar .border-md-start,
    .info-bar .border-md-end {
        border: none !important;
    }
    .info-bar {
        font-size: 0.97rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        padding-top: 100px;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-overlay-img {
        background:
            linear-gradient(90deg, rgba(46,125,50,0.85) 0%, rgba(255,255,255,0.1) 100%),
            url('../images/main.png') bottom right/40% auto no-repeat;
        opacity: 0.7;
    }
}

@media (max-width: 575.98px) {
    .hero-overlay-img {
        background:
            linear-gradient(90deg, rgba(46,125,50,0.92) 0%, rgba(255,255,255,0.1) 100%);
        opacity: 1;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand h1 {
        font-size: 1.375rem; /* 25% larger than 1.1rem */
        white-space: normal;
        word-break: break-word;
        max-width: 140px;
    }
    .navbar-brand {
        gap: 0.5rem;
    }
    .logo-img {
        height: 44px;
        width: 44px;
        max-width: 44px;
        margin-top: 0;
        margin-bottom: 0;
    }
    .hero-section {
        min-height: 45vh;
        padding-top: 80px;
    }
}

.logo-img {
    height: 70px;
    width: 70px;
    max-width: 70px;
    object-fit: contain;
    border-radius: 16px;
    background: transparent;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.08);
    margin-top: -8px;
    margin-bottom: -8px;
    z-index: 2;
    position: relative;
    vertical-align: middle;
}

footer .logo-img {
    height: 36px;
    max-width: 40px;
}

@media (max-width: 991.98px) {
    .logo-img {
        height: 56px;
        width: 56px;
        max-width: 56px;
        margin-top: 0;
        margin-bottom: 0;
    }
}

section[id] {
    scroll-margin-top: 90px;
}

/* .hero-section {
    padding: 0 !important;
} */

section {
    padding: 120px 0 120px 0;
  }

.about-modern {
    /* margin-top: 4rem;
    margin-bottom: 4rem; */
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}
@media (max-width: 767.98px) {
    .about-modern {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

.about-modern .about-img-group {
    display: flex !important;
    flex-direction: row !important;
    gap: 1.2rem;
    width: 100%;
}
.about-modern .about-img,
.about-modern .about-img-offset {
    width: 50% !important;
    min-width: 0;
    height: auto;
    aspect-ratio: 1/1.2;
    border-radius: 24px !important;
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
    background: #fff;
    display: block;
    margin-top: 0 !important;
}
.about-tick {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.5em;
}
.about-tick i {
    font-size: 1.25em;
    color: var(--primary-color) !important;
    vertical-align: middle;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1;
}
.about-modern .btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.about-modern .btn-success:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}
.about-modern .text-success {
    color: var(--primary-color) !important;
}
.about-modern .text-dark {
    color: #222 !important;
}
.about-modern .text-secondary {
    color: #7b8a97 !important;
}
@media (max-width: 991.98px) {
    .about-modern .about-img-group {
        flex-direction: column;
        gap: 1.2rem !important;
        min-height: unset;
    }
    .about-modern .about-img,
    .about-modern .about-img-offset {
        width: 100%;
        height: 160px;
        margin-top: 0 !important;
        border-radius: 24px !important;
        object-fit: cover;
    }
}

@media (min-width: 992px) {
    .about-modern .about-img,
    .about-modern .about-img-offset {
        width: 140px !important;
        /* max-width: 300px !important; */
        height: 380px !important;
        object-fit: cover;
        aspect-ratio: unset !important;
        flex: 0 0 auto;
    }
    .about-modern .about-img-offset {
        margin-top: 76px !important;
    }
}

.bg-light-green {
    background: #f4faf6;
}

.bg-light-green {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}
@media (max-width: 767.98px) {
    .bg-light-green {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

.services-modern .service-card {
    border: none;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 16px rgba(44, 62, 80, 0.06);
    border-radius: 24px;
}
.services-modern .service-card:hover {
    box-shadow: 0 6px 32px rgba(44, 62, 80, 0.12);
}
.services-modern .service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: none;
    font-size: 2.5rem;
    color: var(--primary-color);
    box-shadow: none;
    border: none;
    margin-bottom: 1rem;
}
.services-modern .service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1;
}
.services-modern .service-card h5 {
    font-size: 1.15rem;
    font-weight: 600;
}
.services-modern .service-card p {
    font-size: 1rem;
}
.services-modern .btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    padding: 0.75rem 2.5rem;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
}
.services-modern .btn-success:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}
@media (max-width: 991.98px) {
    .services-modern .service-card {
        margin-bottom: 1.5rem;
    }
}

.info-bar-icon {
    font-size: 2.2rem;
    color: var(--secondary-color);
    background: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.service-readmore {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}
.readmore-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    background: #fff;
    color: #1a2a3a;
    border-radius: 50px;
    padding: 0;
    width: 44px;
    height: 44px;
    transition: width 0.3s cubic-bezier(.4,1.5,.5,1), background 0.2s, border-color 0.2s;
    overflow: hidden;
    position: relative;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: none;
    cursor: pointer;
    outline: none;
    gap: 0;
}
.readmore-btn i {
    font-size: 1.6rem;
    color: var(--primary-color);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1px;
}
.readmore-btn .readmore-text {
    opacity: 0;
    width: 0;
    margin-left: 0;
    white-space: nowrap;
    color: #1a2a3a;
    font-weight: 700;
    font-size: 1.08rem;
    transition: opacity 0.2s, width 0.3s, margin-left 0.3s;
    pointer-events: none;
}
.readmore-btn:hover, .readmore-btn:focus {
    width: 160px;
    background: #fff;
    border-color: var(--primary-color);
}
.readmore-btn:hover i, .readmore-btn:focus i {
    color: var(--primary-color);
}
.readmore-btn:hover .readmore-text, .readmore-btn:focus .readmore-text {
    opacity: 1;
    width: auto;
    margin-left: 0.7rem;
    pointer-events: auto;
}
.readmore-text a {
  color: #1a2a3a !important;
  text-decoration: none !important;
}
.readmore-text a:hover, .readmore-text a:focus {
  color: var(--primary-color) !important;
  text-decoration: underline;
}

.footer-modern {
    background: #19233a !important;
    color: #e3eaf2;
    font-size: 1rem;
    letter-spacing: 0.01em;
}
.footer-modern .logo-img {
    height: 44px;
    width: 44px;
    border-radius: 12px;
    background: #fff;
    object-fit: contain;
    margin-right: 0.75rem;
    margin-bottom: 0 !important;
    margin-top: -6px !important;
    vertical-align: top;
    align-self: flex-start;
}
.footer-modern .h4, .footer-modern h4, .footer-modern h5, .footer-modern h6 {
    color: #fff !important;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 2rem !important;
    font-size: 1.5rem !important;
}
.footer-modern .text-footer-desc {
    color: #bfc5d2;
    font-size: 1rem;
    line-height: 2;
}
.footer-modern .footer-links {
    margin-top: 3.2rem !important;
}
.footer-modern .footer-links li {
    margin-bottom: 0.7rem !important;
}
.footer-modern .footer-links a {
    color: #e3eaf2;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}
.footer-modern .footer-links a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}
.footer-modern .footer-contact i {
    font-size: 1.2rem;
    min-width: 1.5rem;
    color: var(--secondary-color) !important;
    margin-top: 0.2rem;
}
.footer-modern .footer-contact strong {
    color: #fff;
    font-weight: 600;
}
.footer-modern .footer-contact span {
    color: #e3eaf2;
    font-size: 1rem;
}
.footer-modern .footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #e3eaf2;
    font-size: 1.3rem;
    transition: background 0.2s, color 0.2s;
    border: 1.5px solid rgba(255,255,255,0.12);
}
.footer-modern .footer-social-link:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.footer-modern .footer-divider {
    border-color: #2a3550;
    opacity: 1;
}
.footer-modern .footer-policy-links a {
    color: #bfc5d2;
    text-decoration: none;
    margin-right: 1.5rem;
    transition: color 0.2s;
}
.footer-modern .footer-policy-links a:last-child {
    margin-right: 0;
}
.footer-modern .footer-policy-links a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}
@media (max-width: 991.98px) {
    .footer-modern .logo-img {
        height: 36px;
        width: 36px;
        margin-top: -1px !important;
    }
    .footer-modern .footer-social-link {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
}
@media (max-width: 767.98px) {
    .footer-modern {
        font-size: 0.97rem;
    }
    .footer-modern .footer-links a, .footer-modern .footer-contact span {
        font-size: 0.97rem;
    }
    .footer-modern .footer-policy-links a {
        margin-right: 1rem;
    }
}

.footer-modern .footer-contact {
    margin-top: 3rem !important;
}
.footer-modern .footer-contact li {
    margin-bottom: 1.5rem !important;
    display: block;
}
.footer-modern .footer-contact li:last-child {
    margin-bottom: 0 !important;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    color: white;
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #198754;
}

.timeline-dot {
    position: absolute;
    left: -8px;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #198754;
}

.team-member {
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #198754;
}

/* About Us Header Section */
.about-header-section {
    background: #f6f8fc;
    padding-top: 11rem !important;
    padding-bottom: 7.2rem !important;
    min-height: 43vh;
    display: flex;
    align-items: center;
}
.about-header-section .container {
    width: 100%;
}
.about-title {
    font-size: 2.8rem;
    color: #1a2340;
    font-weight: 700;
    letter-spacing: -1px;
    margin-top: 0;
}
.about-divider {
    border: none;
    border-top: 1px solid #1a2340;
    width: 120%;
    max-width: none;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}
.breadcrumb {
    background: transparent;
    font-size: 1.1rem;
    justify-content: center;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #198754;
    padding: 0 0.5rem;
}
.breadcrumb-item a {
    color: #7b8a97;
    text-decoration: none;
    font-weight: 500;
}
.breadcrumb-item.active {
    color: #1a2340;
    font-weight: 500;
}
@media (max-width: 767.98px) {
    .about-title {
        font-size: 2rem;
    }
    .about-divider {
        width: 90%;
    }
    .about-header-section {
        padding-top: 5.5rem !important;
        padding-bottom: 2.4rem !important;
        min-height: 18vh;
    }
}

@media (max-width: 575.98px) {
    .about-title {
        font-size: 1.4rem;
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }
    .about-header-section {
        padding-top: 6.5rem !important;
        padding-bottom: 1.5rem !important;
        min-height: 12vh;
    }
}

/* Floating Navbar Styles */
.floating-navbar {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
    z-index: 1050;
    transition: top 0.3s, opacity 0.3s, box-shadow 0.3s, background 0.3s, border-radius 0.3s, width 0.3s, left 0.3s, transform 0.3s;
    opacity: 1;
}
.floating-navbar.at-top {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.floating-navbar.at-top .nav-link,
.floating-navbar.at-top .btn-success {
    color: #222 !important;
    background: transparent !important;
    box-shadow: none !important;
}
.floating-navbar .nav-link {
    color: #222 !important;
}
.floating-navbar .btn-success {
    color: #fff !important;
}
.floating-navbar .nav-link.active {
    color: #198754 !important;
}
.floating-navbar.hide {
    top: 0;
    opacity: 0;
    pointer-events: none;
}
@media (max-width: 991.98px) {
    .floating-navbar,
    .homepage .floating-navbar,
    .floating-navbar.at-top,
    .homepage .floating-navbar.at-top {
        background: #fff !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        top: 0;
    }
    .floating-navbar .navbar-brand h1,
    .homepage .floating-navbar .navbar-brand h1,
    .floating-navbar.at-top .navbar-brand h1,
    .homepage .floating-navbar.at-top .navbar-brand h1 {
        color: var(--primary-color) !important;
    }
    .floating-navbar .nav-link,
    .homepage .floating-navbar .nav-link,
    .floating-navbar.at-top .nav-link,
    .homepage .floating-navbar.at-top .nav-link {
        color: #222 !important;
    }
    .floating-navbar .nav-link.active,
    .homepage .floating-navbar .nav-link.active,
    .floating-navbar.at-top .nav-link.active,
    .homepage .floating-navbar.at-top .nav-link.active {
        color: var(--primary-color) !important;
    }
    .floating-navbar .btn-success,
    .homepage .floating-navbar .btn-success,
    .floating-navbar.at-top .btn-success,
    .homepage .floating-navbar.at-top .btn-success {
        background-color: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
        color: #fff !important;
    }
}
body.homepage .floating-navbar {
    top: 0;
    border-radius: 0;
    box-shadow: none;
}

.floating-navbar.at-top .btn-success {
    background-color: #277032 !important;
    border-color: #277032 !important;
    color: #fff !important;
    box-shadow: none !important;
}



/* Global Why Choose Us Section Styles */
.global-why-choose-section {
    /* background: #90EE90; */
    min-height: 45vh;
    color: #fff;
}

.why-choose-title {
    font-size: 3rem;
    color: #fff;
    line-height: 1.1;
}
.why-choose-list {
    font-size: 1rem;

}
.why-choose-icon {
    color: var(--primary-color) !important;
}
@media (max-width: 991.98px) {
    .why-choose-title {
        font-size: 2rem;
    }
}

/* Service Intro Section Styles */

.service-intro-img {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
    background: #fff;
    display: block;
    margin: 0 auto;
    position: relative;
}

.service-intro-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.service-intro-quote-overlap {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #4a7be7;
    color: #fff;
    border-radius: 1rem;
    padding: 1.1rem 2rem 1.1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
    max-width: 320px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
@media (max-width: 991.98px) {
    .service-intro-img {
        max-width: 100%;
        aspect-ratio: 16/10;
    }
    .service-intro-quote-overlap {
        top: 10px;
        right: 10px;
        padding: 0.7rem 1.2rem 0.7rem 1rem;
        font-size: 1rem;
        max-width: 90%;
    }
}

.service-intro-quote {
    background: var(--primary-color);
    color: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    max-width: 350px;
    font-size: 1.1rem;
    font-weight: 500;
}




.faq-container {
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 4px 32px rgba(44, 62, 80, 0.07);
    padding: 4rem 3rem;
    margin: 3rem auto 2rem auto;
    max-width: 1200px;
}
.faq-label {
    color: #4a7be7;
    font-size: 1.1rem;
    font-weight: 600;
}
.faq-title {
    color: #1a2340;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
}
.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e5e7eb;
    background: transparent;
}
.faq-accordion .accordion-button {
    background: transparent;
    color: #1a2340;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: none;
    border: none;
    padding: 1.1rem 1.2rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
    color: #277032;
    background: #f4faf6;
}
.faq-accordion .accordion-body {
    color: #4a5568;
    font-size: 1rem;
    padding: 1.1rem 1.2rem 1.2rem 1.2rem;
    background: transparent;
}
.accordion .accordion-button,
.accordion .accordion-button:not(.collapsed),
.accordion .accordion-button:focus,
.accordion .accordion-button:active {
    border-radius: 0 !important;
    box-shadow: none !important;
}
@media (max-width: 991.98px) {
    .faq-container {
        padding: 2rem 1rem;
        border-radius: 1.2rem;
    }
    .faq-title {
        font-size: 2rem;
    }
    /* .accordion-body {
        font-size: 0.9rem;
        color: #0561ff !important;
    } */
    .accordion-button {
        font-size: 0.9rem;
    }
} 

@media (max-width: 991.98px) {
  section {
    padding: 40px 0 40px 0;
  }
}
@media (max-width: 575.98px) {
  section {
    padding: 20px 0 20px 0;
  }
} 

.hero-floating-anim {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: visible;
}
.floating-leaf, .floating-particle {
    position: absolute;
    will-change: transform, opacity;
    pointer-events: none;
    opacity: 0.7;
    left: auto;
    right: auto;
}
.floating-leaf {
    width: 32px;
    height: 32px;
    animation: leaf-float linear infinite;
}
.floating-particle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #b2dfdb 0%, #4a7be7 100%);
    box-shadow: 0 0 12px 2px #4a7be744;
    animation: particle-float linear infinite;
}
@keyframes leaf-float {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(-10deg) scale(0.8);
        opacity: 0;
    }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% {
        transform: translateY(110vh) translateX(30px) rotate(20deg) scale(1.1);
        opacity: 0;
    }
}
@keyframes particle-float {
    0% {
        transform: translateY(-10vh) translateX(0) scale(0.7);
        opacity: 0;
    }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% {
        transform: translateY(110vh) translateX(-20px) scale(1.2);
        opacity: 0;
    }
}
.floating-leaf, .floating-particle {
@media (max-width: 991.98px) {
    .floating-leaf {
        width: 20px;
        height: 20px;
    }
    .floating-particle {
        width: 10px;
        height: 10px;
    }
} 
}

/* Smooth dropdown animation */
@media (min-width: 992px) {
  .navbar .dropdown-menu {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s cubic-bezier(.4,1.5,.5,1), transform 0.25s cubic-bezier(.4,1.5,.5,1);
    display: block;
    pointer-events: none;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.10);
    margin-top: 0.5rem;
    background: #fff;
    border: none;
  }
  .navbar .dropdown:hover .dropdown-menu,
  .navbar .dropdown:focus-within .dropdown-menu,
  .navbar .dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
@media (max-width: 991.98px) {
  .navbar .dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
    min-width: 100%;
    border-radius: 0;
    margin-top: 0;
    background: #fff;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    border: none;
  }
  .navbar .dropdown-menu.show {
    display: block;
  }
}

/* Appointment Popup Modal Styles */
.appointment-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.appointment-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-modal-content {
    background-color: #fff;
    margin: 2rem;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    position: relative;
}

.appointment-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

.appointment-modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.appointment-modal-header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-size: 1rem;
}

.appointment-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
    text-align: center;
}

.appointment-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.appointment-close:focus {
    outline: none;
    box-shadow: none;
}

.appointment-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex-grow: 1;
}

.appointment-form .form-control,
.appointment-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.1);
}

.appointment-form .btn-success {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.appointment-form .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.appointment-otp-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.appointment-otp-section #appointmentOtpHelpText {
    white-space: normal;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.appointment-otp-section #appointmentSendEmailOtpBtn {
    white-space: nowrap;
    flex-shrink: 0;
}

.appointment-form .form-control::placeholder {
    font-size: 0.875rem;
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .appointment-modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
        max-height: 95vh;
    }
    
    .appointment-modal-header {
        padding: 1.5rem;
    }
    
    .appointment-modal-header h2 {
        font-size: 1.5rem;
        padding: 0 3.5rem;
    }
    
    .appointment-modal-body {
        padding: 1.5rem;
    }
    
    .appointment-otp-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .appointment-otp-section #appointmentOtpHelpText {
        white-space: normal;
        flex: none;
        width: 100%;
    }
}

.modal-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100vw;
  /* top will be set dynamically via JS */
}

/* Fix dropdown gap for navbar so mouse can move smoothly from parent to submenu */
.navbar .dropdown-menu {
  margin-top: 0 !important;
  /* Remove any gap */
}

/* Optional: Add a buffer area below the parent link to prevent accidental mouseleave */
.navbar .dropdown:hover::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 16px;
  top: 100%;
  /* Place just below the parent */
  z-index: 1;
}

/* Ensure parent is positioned for the pseudo-element */
.navbar .dropdown {
  position: relative;
}