:root {
    /* Primary Green Palette */
    --primary-green: #6FBF2A;
    --deep-green: #3E8E1F;
    --light-green: #CFE8B4;
    --fresh-green: #8FD14F;
    /* Neutral Colors */
    --pure-white: #FFFFFF;
    --light-gray: #F5F7F6;
    --text-dark: #2E2E2E;
    --muted-gray: #6B7280;
    --border-gray: #E5E7EB;
    /* Trust Accent */
    --calm-blue: #4FA3D1;
    /* Legacy mappings for consistency */
    --primary-color: var(--primary-green);
    --secondary-color: var(--deep-green);
    --light-bg: var(--light-gray);
    --text-color: var(--text-dark);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

/* Skip to main content for accessibility */
.skip-link {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-green);
    color: white;
    padding: 0;
    font-size: 0;
    text-decoration: none;
    z-index: 9999;
}

    .skip-link:focus {
        top: 0;
    }

/* Header & Navigation */
.top-bar {
    background: var(--text-dark);
    color: white;
    padding: 10px 0;
    font-size: 0.875rem;
}

    .top-bar a {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .top-bar a:hover {
            color: var(--fresh-green);
        }

    .top-bar em {
        color: var(--fresh-green);
    }

.main-header {
    background: var(--pure-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--deep-green) !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
}

    .navbar-brand img {
        max-width: 220px;
    }

.logo-image {
    height: 45px;
    width: auto;
}

.navbar-nav li {
    margin: 0 0.4rem;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary-green);
    }

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    border-radius: var(--border-radius);
    border-top: 3px solid var(--primary-green);
}

.dropdown-item:hover {
    background: var(--light-green);
    color: var(--deep-green);
}

.btn-primary-custom {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 0.625rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(111, 191, 42, 0.2);
}

    .btn-primary-custom:hover {
        background: var(--deep-green);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(62, 142, 31, 0.3);
        color: white;
    }

/* Hero Section */
.hero-section {
    background: linear-gradient(to right top, #002712, #007a32, #009336, #8ebe18, #b1d505);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.08)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
        background-size: cover;
        opacity: 0.4;
    }

    .hero-section .hero-image-container {
        position: relative;
        z-index: 2;
    }

    .hero-section .hero-image {
        width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
.socialicons i {
    font-size: 1.2rem;
    margin-left: 8px;
}
.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    color: var(--pure-white);
}

    .hero-section .lead {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        opacity: 0.95;
        position: relative;
        z-index: 2;
    }

.btn-light-custom {
    background: white;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

    .btn-light-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.25);
        background: var(--light-green);
        color: var(--deep-green);
    }

.btn-outline-light-custom {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-outline-light-custom:hover {
        background: white;
        color: var(--primary-green);
    }

/* Trust Indicators Bar */
.trust-bar {
    background: white;
    padding: 2.5rem 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10;
    border-radius: 15px;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

    .trust-item::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 60%;
        background: var(--border-gray);
    }

    .trust-item:last-child::after {
        display: none;
    }

    .trust-item .icon-wrapper {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--light-green), var(--fresh-green));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        box-shadow: 0 5px 20px rgba(111, 191, 42, 0.2);
    }

    .trust-item em {
        font-size: 2rem;
        color: var(--deep-green);
    }

    .trust-item h5 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

    .trust-item p {
        font-size: 0.875rem;
        color: var(--muted-gray);
        margin: 0;
    }

/* Section Styles */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

    .section-title h2 {
        font-size: 2.5rem;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

    .section-title p {
        font-size: 1.125rem;
        color: var(--muted-gray);
        max-width: 700px;
        margin: 0 auto;
    }

    .section-title .line {
        width: 80px;
        height: 4px;
        background: var(--primary-green);
        margin: 1rem auto 1.5rem;
        border-radius: 2px;
    }

/* Service Cards */
.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-gray);
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-green), var(--fresh-green));
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(111, 191, 42, 0.15);
        border-color: var(--primary-green);
    }

    .service-card .icon-wrapper {
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, var(--primary-green), var(--fresh-green));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        transition: transform 0.3s ease;
        box-shadow: 0 8px 25px rgba(111, 191, 42, 0.25);
    }

    .service-card:hover .icon-wrapper {
        transform: scale(1.1) rotate(5deg);
    }

    .service-card .icon-wrapper em {
        font-size: 2.5rem;
        color: white;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .service-card p {
        color: var(--muted-gray);
        margin-bottom: 1.5rem;
    }

    .service-card .btn-link {
        color: var(--primary-green);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

        .service-card .btn-link:hover {
            color: var(--deep-green);
            gap: 0.75rem;
        }

/* Image Banner */
.image-banner {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Why Choose Us */
.why-choose {
    background: var(--light-gray);
    position: relative;
}

    .why-choose::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 200px;
        background: linear-gradient(180deg, var(--light-green) 0%, transparent 100%);
        opacity: 0.3;
    }

.feature-box {
    display: flex;
    align-items: start;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-green);
}

    .feature-box:hover {
        box-shadow: 0 8px 25px rgba(111, 191, 42, 0.15);
        transform: translateX(5px);
    }

    .feature-box .icon-wrapper {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--light-green), var(--fresh-green));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.5rem;
        flex-shrink: 0;
    }

        .feature-box .icon-wrapper em {
            font-size: 1.5rem;
            color: var(--deep-green);
        }

    .feature-box h4 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

    .feature-box p {
        color: var(--muted-gray);
        margin: 0;
    }

.why-choose-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

/* Course Slider */
.course-slider {
    background: white;
}

.course-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-gray);
}

    .course-card:hover {
        box-shadow: 0 15px 40px rgba(111, 191, 42, 0.15);
        border-color: var(--primary-green);
        transform: translateY(-5px);
    }

    .course-card .course-image {
        height: 220px;
        background: linear-gradient(135deg, var(--primary-green), var(--deep-green));
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

        .course-card .course-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9;
        }

        .course-card .course-image .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(111, 191, 42, 0.8), rgba(62, 142, 31, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .course-card .course-image em {
            font-size: 4rem;
            color: white;
            position: relative;
            z-index: 2;
        }

    .course-card .badge-custom {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: white;
        color: var(--deep-green);
        padding: 0.5rem 1.25rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.875rem;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        z-index: 3;
    }

    .course-card .card-body {
        padding: 2rem;
    }

    .course-card h4 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .course-card .course-meta {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
        font-size: 0.875rem;
        color: var(--muted-gray);
        flex-wrap: wrap;
    }

        .course-card .course-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .course-card .course-meta em {
            color: var(--primary-green);
        }

    .course-card p {
        color: var(--muted-gray);
        margin-bottom: 1.5rem;
    }

/* Swiper Equal Height Slides */
.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: auto;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-green)!important;
    background: white;
    width: 50px!important;
    height: 50px!important;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(111, 191, 42, 0.25);
    transition: all 0.3s ease;
}
    .swiper-button-next:after, .swiper-button-prev:after{
        font-size:1rem!important;
    }
    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: var(--primary-green);
        color: white;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1.5rem;
    }

.swiper-pagination-bullet {
    background: var(--muted-gray);
}

.swiper-pagination-bullet-active {
    background: var(--primary-green);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--deep-green) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,112C960,117,1056,107,1152,90.7C1248,75,1344,53,1392,42.7L1440,32L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
        opacity: 0.3;
    }

    .cta-banner h2 {
        font-size: 2.75rem;
        margin-bottom: 1rem;
        position: relative;
        z-index: 2;
    }

    .cta-banner p {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        opacity: 0.95;
        position: relative;
        z-index: 2;
    }

/* Director Section */
.director-section {
    background: var(--light-gray);
}

.director-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
}

    .director-card:hover {
        box-shadow: 0 15px 50px rgba(111, 191, 42, 0.15);
        border-color: var(--primary-green);
    }

.director-image-wrapper {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--deep-green));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(111, 191, 42, 0.25);
    border: 8px solid white;
    position: relative;
    overflow: hidden;
}

    .director-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .director-image-wrapper em {
        font-size: 5rem;
        color: white;
    }

.director-info h3 {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.director-info .credentials {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.director-info .experience {
    color: var(--muted-gray);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .director-info .experience em {
        color: var(--calm-blue);
    }

.credential-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

    .credential-list li {
        padding: 0.75rem 0;
        padding-left: 2rem;
        position: relative;
        color: var(--muted-gray);
    }

        .credential-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-green);
        }

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
    position: relative;
}

    .testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 0;
        background: var(--primary-green);
        transition: height 0.3s ease;
    }

    .testimonial-card:hover::before {
        height: 100%;
    }

    .testimonial-card:hover {
        box-shadow: 0 15px 40px rgba(111, 191, 42, 0.15);
        border-color: var(--primary-green);
    }

    .testimonial-card .quote-icon {
        font-size: 3rem;
        color: var(--primary-green);
        opacity: 0.2;
        margin-bottom: 1rem;
    }

    .testimonial-card p {
        font-style: italic;
        color: var(--muted-gray);
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .testimonial-author .avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-green), var(--fresh-green));
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 1.25rem;
        flex-shrink: 0;
        box-shadow: 0 5px 15px rgba(111, 191, 42, 0.25);
    }

    .testimonial-author .info h5 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
        color: var(--text-dark);
    }

    .testimonial-author .info p {
        font-size: 0.875rem;
        color: var(--muted-gray);
        margin: 0;
        font-style: normal;
    }

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--deep-green) 100%);
    color: white;
    padding: 2rem 0;
}

.stat-box {
    text-align: center;
}

    .stat-box .number {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .stat-box .label {
        font-size: 1.1rem;
        opacity: 0.95;
    }

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 0;
}
.footer-logo img{
    max-width:160px;
}

footer h5 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 1rem;
}

        footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-green);
        }

    footer ul {
        list-style: none;
        padding: 0;
    }

        footer ul li {
            margin-bottom: 0.75rem;
        }

            footer ul li a {
                color: rgba(255,255,255,0.7);
                text-decoration: none;
                transition: all 0.3s ease;
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
            }

                footer ul li a:hover {
                    color: var(--fresh-green);
                    padding-left: 5px;
                }

    footer .contact-info em {
        width: 20px;
        color: var(--fresh-green);
    }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
}

    .footer-bottom p {
        margin: 0;
        color: rgba(255,255,255,0.7);
    }

    .footer-bottom a {
        color: rgba(255,255,255,0.7);
        transition: color 0.3s ease;
    }

        .footer-bottom a:hover {
            color: var(--fresh-green);
        }

/* =============================================
   NAVBAR TOGGLER ANIMATION (Hamburger → X)
   ============================================= */
.navbar-toggler {
    border: none;
    padding: 0.4rem;
    width: 40px;
    height: 40px;
    position: relative;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    z-index: 1100;
}

.navbar-toggler-icon {
    display: none;
}

.toggler-bar {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    margin: 5px auto;
    transition: transform 0.35s ease, opacity 0.25s ease, top 0.35s ease;
    position: relative;
}

/* Animate to X when open */
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   FULLSCREEN MOBILE MENU
   ============================================= */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        background: var(--pure-white);
        z-index: 1050;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
    }

    .navbar-collapse.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar-collapse .navbar-nav {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        width: 100%;
        padding: 0 2rem;
    }

    .navbar-collapse .nav-item {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .navbar-collapse .nav-link {
        font-size: 1.2rem;
        font-weight: 700;
        padding: 0.75rem 1rem;
        color: var(--text-dark);
        display: block;
        border-bottom: 1px solid var(--border-gray);
        transition: color 0.2s ease;
    }

    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        color: var(--primary-green);
    }

    .navbar-collapse .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-top: none;
        background: var(--light-gray);
        border-radius: var(--border-radius);
        margin: 0.25rem 0;
        text-align: center;
    }

    .navbar-collapse .nav-item.ms-lg-3 {
        margin-top: 1.5rem !important;
    }

    .navbar-collapse .btn-primary-custom {
        font-size: 1rem;
        padding: 0.75rem 2.5rem;
    }

    /* Keep toggler above the overlay */
    .navbar-toggler {
        position: relative;
        z-index: 1100;
    }
}

/* Responsive Styles */
@media (max-width: 1399.98px) {
    .navbar-nav li {
        margin: 0 0;
    }
}

@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.25rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .trust-item {
        margin-bottom: 1.5rem;
    }

        .trust-item::after {
            display: none;
        }

    .feature-box {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 4rem 0 3rem;
    }

        .hero-section h1 {
            font-size: 1.875rem;
        }

        .hero-section .lead {
            font-size: 1rem;
        }

    .section-padding {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .btn-light-custom,
    .btn-outline-light-custom {
        padding: 0.625rem 1.5rem;
        font-size: 1rem;
        margin: 0.25rem;
    }
    p{
        font-size:1rem!important;
    }
    .trust-bar {
        padding: 2rem 0;
    }
    .trust-item {
        padding: 1rem;
        margin-bottom: 0 !important;
    }
    .service-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .cta-banner h2 {
        font-size: 1.875rem;
    }

    .cta-banner p {
        font-size: 1rem;
    }

    .stat-box .number {
        font-size: 2rem;
        line-height: 1;
    }
    .stat-box{
        margin-bottom:1rem;
    }
        .stat-box .label{
            font-size:1rem;
        }
    .section-title {
        text-align: center;
        margin-bottom: 2rem;
    }
    .cta-banner{
        padding:2rem 0;
    }
}

/* ======================
   About Page
   ====================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--deep-green) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.08)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
        background-size: cover;
        opacity: 0.4;
    }

    .page-header h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
    }

    .page-header p {
        font-size: 1.25rem;
        opacity: 0.95;
        position: relative;
    }

/* Breadcrumb */
.breadcrumb-custom {
    background: transparent;
    padding: 1rem 0 0;
    margin: 0;
    justify-content: center;
}

    .breadcrumb-custom .breadcrumb-item {
        color: rgba(255,255,255,0.8);
    }

        .breadcrumb-custom .breadcrumb-item a {
            color: white;
            text-decoration: none;
        }

        .breadcrumb-custom .breadcrumb-item.active {
            color: white;
        }

        .breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255,255,255,0.6);
        }

/* Mission Vision Cards */
.mission-vision-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-gray);
}

    .mission-vision-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 50px rgba(111, 191, 42, 0.15);
        border-color: var(--primary-green);
    }

    .mission-vision-card .icon-wrapper {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-green), var(--fresh-green));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        box-shadow: 0 8px 25px rgba(111, 191, 42, 0.25);
    }

        .mission-vision-card .icon-wrapper em {
            font-size: 2.25rem;
            color: white;
        }

    .mission-vision-card h3 {
        font-size: 1.875rem;
        margin-bottom: 1.25rem;
        color: var(--text-dark);
    }

    .mission-vision-card p {
        color: var(--muted-gray);
        line-height: 1.8;
    }

    .mission-vision-card ul {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0 0;
    }

        .mission-vision-card ul li {
            padding: 0.875rem 0;
            padding-left: 2.25rem;
            position: relative;
            color: var(--muted-gray);
        }

            .mission-vision-card ul li:before {
                content: '\f00c';
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                position: absolute;
                left: 0;
                color: var(--primary-green);
                font-size: 1.1rem;
            }

/* Story Section */
.story-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

/* Values Section */
.values-section {
    background: var(--light-gray);
    position: relative;
}

    .values-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 200px;
        background: linear-gradient(180deg, var(--light-green) 0%, transparent 100%);
        opacity: 0.4;
    }

.value-box {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid var(--border-gray);
}

    .value-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(111, 191, 42, 0.15);
        border-color: var(--primary-green);
    }

    .value-box .icon-wrapper {
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, var(--light-green), var(--fresh-green));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        box-shadow: 0 8px 25px rgba(111, 191, 42, 0.2);
    }

        .value-box .icon-wrapper em {
            font-size: 2.25rem;
            color: var(--deep-green);
        }

    .value-box h4 {
        font-size: 1.375rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .value-box p {
        color: var(--muted-gray);
        margin: 0;
        line-height: 1.7;
    }

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-green), var(--deep-green));
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(111, 191, 42, 0.25);
    transition: transform 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-5px);
    }

    .stat-card .icon-wrapper {
        width: 70px;
        height: 70px;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

        .stat-card .icon-wrapper em {
            font-size: 2rem;
            color: white;
        }

    .stat-card h4 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: white;
    }

    .stat-card p {
        font-size: 1.1rem;
        margin: 0;
        opacity: 0.95;
    }

/* Partnership Cards */
.partnership-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid var(--border-gray);
}

    .partnership-card:hover {
        box-shadow: 0 12px 35px rgba(111, 191, 42, 0.15);
        border-color: var(--primary-green);
        transform: translateY(-5px);
    }

    .partnership-card .icon-wrapper {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--light-green), var(--fresh-green));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

        .partnership-card .icon-wrapper em {
            font-size: 2rem;
            color: var(--deep-green);
        }

    .partnership-card h5 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        color: var(--text-dark);
    }

    .partnership-card p {
        font-size: 0.9375rem;
        color: var(--muted-gray);
        margin: 0;
        line-height: 1.6;
    }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--deep-green) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,112C960,117,1056,107,1152,90.7C1248,75,1344,53,1392,42.7L1440,32L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
        opacity: 0.3;
    }

    .cta-section h2 {
        font-size: 2.75rem;
        margin-bottom: 1.25rem;
        position: relative;
        z-index: 2;
    }

    .cta-section p {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        opacity: 0.95;
        position: relative;
        z-index: 2;
    }

/* About Page Responsive */
@media (max-width: 991px) {
    .page-header h1 {
        font-size: 2.25rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 1rem 0;
    }

        .page-header h1 {
            font-size: 1.875rem;
        }

    .mission-vision-card,
    .value-box,
    .partnership-card {
        margin-bottom: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.875rem;
    }
}

/* ======================
   Team Page
   ====================== */

/* Director Featured Card */
.director-featured {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid var(--border-gray);
}

    .director-featured .director-image-wrapper {
        width: 100%;
        height: 100%;
        min-height: 480px;
        border-radius: 0;
        border: none;
        box-shadow: none;
        margin: 0;
    }

        .director-featured .director-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
        }

    .director-featured .content {
        padding: 3rem;
    }

        .director-featured .content h3 {
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .director-featured .content .title {
            color: var(--primary-green);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .director-featured .content .experience {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: var(--muted-gray);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

            .director-featured .content .experience em {
                color: var(--calm-blue);
            }

        .director-featured .content p {
            color: var(--muted-gray);
            line-height: 1.8;
            margin-bottom: 0;
        }

/* Qualification List */
.qualification-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

    .qualification-list li {
        padding: 0.6rem 0 0.6rem 2rem;
        position: relative;
        color: var(--muted-gray);
        border-bottom: 1px solid var(--border-gray);
    }

        .qualification-list li:last-child {
            border-bottom: none;
        }

        .qualification-list li::before {
            content: '\f059';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-green);
        }

/* Team Member Cards */
.team-member-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .team-member-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(111, 191, 42, 0.15);
        border-color: var(--primary-green);
    }

.team-member-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.team-member-card .card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.team-member-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.team-member-card .designation {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.team-member-card .qualification {
    color: var(--calm-blue);
    font-size: 0.825rem;
    font-style: italic;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-gray);
}

.team-member-card p {
    color: var(--muted-gray);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
}

.team-member-card .social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: auto;
}

    .team-member-card .social-links a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--light-gray);
        color: var(--muted-gray);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.875rem;
        transition: all 0.3s ease;
        text-decoration: none;
    }

        .team-member-card .social-links a:hover {
            background: var(--primary-green);
            color: white;
            transform: translateY(-2px);
        }

/* Team Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid var(--border-gray);
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .value-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-green), var(--fresh-green));
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .value-card:hover::before {
        transform: scaleX(1);
    }

    .value-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(111, 191, 42, 0.15);
        border-color: var(--primary-green);
    }

    .value-card .icon-wrapper {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--light-green), var(--fresh-green));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        box-shadow: 0 8px 25px rgba(111, 191, 42, 0.2);
        transition: transform 0.3s ease;
    }

    .value-card:hover .icon-wrapper {
        transform: scale(1.1) rotate(5deg);
    }

    .value-card .icon-wrapper em {
        font-size: 2rem;
        color: var(--deep-green);
    }

    .value-card h4 {
        font-size: 1.2rem;
        color: var(--text-dark);
        margin-bottom: 0.75rem;
    }

    .value-card p {
        color: var(--muted-gray);
        font-size: 0.9rem;
        line-height: 1.7;
        margin: 0;
    }

/* Team Page Responsive */
@media (max-width: 991px) {
    .director-featured .director-image-wrapper {
        min-height: 320px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .director-featured .content {
        padding: 2rem;
    }

        .director-featured .content h3 {
            font-size: 1.5rem;
        }

    .director-featured .director-image-wrapper {
        min-height: 260px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================
   Product Details Page
   ====================== */

.py-60 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-product-wrapper {
    background: var(--light-gray);
}

/* Product Image Panel */
.section-product-wrapper .col-lg-5 img,
.section-product-wrapper .col-md-5 img {
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Product Info Panel */
.product-detail-view {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-gray);
}

/* Mobile breadcrumb — hidden on desktop */
.for-mbl-container {
    display: none;
}

@media (max-width: 991px) {
    .for-mbl-container {
        display: block;
    }
}

/* Product Name */
.product-name-main {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

/* MRP / original price label */
.ash-color {
    color: var(--muted-gray);
    font-size: 0.9rem;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

/* Price row */
.product-detail-view h5.d-flex {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--deep-green);
    align-items: center;
    gap: 0.75rem;
}

/* Discount badge */
.off-percentage {
    background: linear-gradient(135deg, var(--primary-green), var(--fresh-green));
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(111, 191, 42, 0.3);
}

/* Stock indicators */
.stock {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.instock-green {
    color: var(--deep-green);
}

.instock-green::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(111, 191, 42, 0.2);
}

.instock-limited {
    color: #d97706;
}

.instock-sold {
    color: #dc2626;
}

/* Description block */
.description {
    border-top: 1px solid var(--border-gray);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.description h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.description h5::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.1rem;
    background: var(--primary-green);
    border-radius: 2px;
}

.description p {
    color: var(--muted-gray);
    line-height: 1.8;
    font-size: 0.975rem;
}

/* WhatsApp Enquire Button */
.btn--third.whtsap-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: white;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.975rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    margin-bottom: 1.5rem;
}

.btn--third.whtsap-btn:hover {
    background: #128c47;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    text-decoration: none;
}

.btn--third.whtsap-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: invert(1) !important;
}

/* Attributes Table */
.attribute-table {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-gray) !important;
    margin-top: 1.5rem;
}

.attribute-table tbody tr {
    transition: background 0.2s ease;
}

.attribute-table tbody tr:hover {
    background: var(--light-gray);
}

.attribute-table td.left {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    vertical-align: middle;
    border-right: 2px solid var(--border-gray);
    padding: 0.875rem 1rem;
}

.attribute-table td:not(.left) {
    color: var(--muted-gray);
    vertical-align: middle;
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
}

/* Overview Image */
.overview-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

/* Benefit Cards */
.benefit-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--border-gray);
    height: 100%;
    transition: all 0.3s ease;
}

    .benefit-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary-green);
        box-shadow: 0 15px 40px rgba(111, 191, 42, 0.15);
    }

    .benefit-card .icon-wrapper {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--light-green), var(--fresh-green));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        box-shadow: 0 8px 25px rgba(111, 191, 42, 0.2);
    }

        .benefit-card .icon-wrapper em {
            font-size: 2rem;
            color: var(--deep-green);
        }

    .benefit-card h4 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .benefit-card p {
        color: var(--muted-gray);
        margin: 0;
        line-height: 1.6;
    }

/* Internship Area Cards */
.area-card {
    background: linear-gradient(135deg, var(--primary-green), var(--deep-green));
    color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(111, 191, 42, 0.25);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .area-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        transition: all 0.5s ease;
    }

    .area-card:hover::before {
        top: -60%;
        right: -60%;
    }

    .area-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 50px rgba(111, 191, 42, 0.35);
    }

    .area-card .icon-wrapper {
        width: 90px;
        height: 90px;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        position: relative;
    }

        .area-card .icon-wrapper em {
            font-size: 2.5rem;
            color: white;
        }

    .area-card h4 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: white;
        position: relative;
    }

    .area-card p {
        margin: 0;
        opacity: 0.95;
        position: relative;
    }

/* Activities Section */
.activities-section {
    background: var(--light-gray);
}

.activity-box {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-green);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

    .activity-box:hover {
        box-shadow: 0 10px 30px rgba(111, 191, 42, 0.15);
        transform: translateX(5px);
    }

    .activity-box h4 {
        font-size: 1.375rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

        .activity-box h4 em {
            color: var(--primary-green);
        }

    .activity-box ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .activity-box ul li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            color: var(--muted-gray);
        }

            .activity-box ul li:before {
                content: '\f00c';
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                position: absolute;
                left: 0;
                color: var(--primary-green);
            }

/* Process Timeline */
.process-timeline {
    position: relative;
}

.timeline-item {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 3rem;
}

    .timeline-item::before {
        content: '';
        position: absolute;
        left: 1.25rem;
        top: 3rem;
        width: 2px;
        height: calc(100% + 1rem);
        background: var(--light-green);
    }

    .timeline-item:last-child::before {
        display: none;
    }

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--fresh-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 20px rgba(111, 191, 42, 0.3);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--border-gray);
}

    .timeline-content h4 {
        font-size: 1.375rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .timeline-content p {
        color: var(--muted-gray);
        margin: 0;
    }

/* Eligibility Card */
.eligibility-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--border-gray);
}

    .eligibility-card h4 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

        .eligibility-card h4 em {
            color: var(--primary-green);
            font-size: 1.75rem;
        }

.eligibility-list {
    list-style: none;
    padding: 0;
}

    .eligibility-list li {
        padding: 1rem 0;
        padding-left: 2.5rem;
        position: relative;
        border-bottom: 1px solid var(--border-gray);
    }

        .eligibility-list li:last-child {
            border-bottom: none;
        }

        .eligibility-list li:before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-green);
            font-size: 1.5rem;
        }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--deep-green) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

    .cta-section h2 {
        font-size: 2.75rem;
        margin-bottom: 1.25rem;
        color: white;
    }

    .cta-section p {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        opacity: 0.95;
    }

/* Empty / Not Available State */
.section-product-wrapper .link-orange {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.section-product-wrapper .link-orange:hover {
    color: var(--deep-green);
    text-decoration: underline;
}

/* Product Details Responsive */
@media (max-width: 991px) {
    .product-detail-view {
        margin-top: 1.5rem;
        padding: 1.5rem;
    }

    .product-name-main {
        font-size: 1.5rem;
    }

    .product-detail-view h5.d-flex {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .py-60 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .timeline-item {
        padding-left: 3rem;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .benefit-card {
        margin-bottom: 2rem;
    }

    .activity-box {
        margin-bottom: 1.5rem;
    }
    .product-name-main {
        font-size: 1.25rem;
    }

    .product-detail-view h5.d-flex {
        font-size: 1.25rem;
    }

    .btn--third.whtsap-btn {
        width: 100%;
        justify-content: center;
    }

    .attribute-table td.left {
        width: auto !important;
        min-width: 120px;
    }
}

/* ======================
   Contact Page
   ====================== */

/* Spacing utilities used on contact page */
.pt-100 { padding-top: 5rem; }
.pb-100 { padding-bottom: 5rem; }
.mb-40  { margin-bottom: 2.5rem; }
.mt-30  { margin-top: 1.875rem; }
.mb-20  { margin-bottom: 1.25rem; }
.pt-15  { padding-top: 0.9375rem; }

/* Contact section wrapper */
.contact {
    background: var(--light-gray);
}

/* Contact Info column */
.contact h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 0.75rem;
}

.contact h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 2px;
    margin-top: 0.75rem;
}

/* Address row */
.contact .adrs p {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    border-left: 4px solid var(--primary-green);
    color: var(--muted-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact .adrs p strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact .adrs .min-h {
    min-height: 90px;
}

/* Email link */
.contact .adrs a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact .adrs a:hover {
    color: var(--primary-green);
}

.contact .adrs a img.mail {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Social icons */
.contact .socialicons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.contact .socialicons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--border-gray);
}

.contact .socialicons a:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(111, 191, 42, 0.3);
}

.contact .socialicons a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.contact .socialicons a:hover img {
    filter: brightness(0) invert(1);
}

/* Business hours */
.contact .business {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    border-top: 4px solid var(--primary-green);
}

.contact .business h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.contact .business h3::after {
    display: none;
}

.contact .business p {
    color: var(--muted-gray);
    margin: 0;
}

.contact .business p span {
    font-weight: 600;
    color: var(--deep-green);
    margin-left: 0.5rem;
}

/* Map container */
#map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--border-gray);
}

#map iframe {
    display: block;
    border-radius: var(--border-radius);
}

/* Locate us heading */
.contact .row.mt-30 h3 {
    font-size: 1.75rem;
}

/* Contact Page Responsive */
@media (max-width: 991px) {
    .pt-100 { padding-top: 3.5rem; }
    .pb-100 { padding-bottom: 3.5rem; }
    .cta-section {
        padding: 2rem 0;
    }
        .cta-section h2 {
            font-size:2rem;
        }
        .cta-section p {
            font-size:1rem;
            margin-bottom:0;
        }
}

@media (max-width: 767px) {
    .pt-100 { padding-top: 2.5rem; }
    .pb-100 { padding-bottom: 2.5rem; }

    .contact h3 {
        font-size: 1.5rem;
    }

    #map {
        height: 250px !important;
    }

    #map iframe {
        height: 250px !important;
    }

    .contact .adrs .min-h {
        min-height: unset;
    }
}

/* =============================================
   GALLERY PAGE
   ============================================= */

.gallery-section {
    padding: 3rem 0 4rem;
}

/* --- Gallery Item Card (single gallery / image grid) --- */
.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background: var(--light-gray);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay .gallery-zoom-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    backdrop-filter: blur(4px);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    margin-bottom: 0.6rem;
}

.gallery-item:hover .gallery-overlay .gallery-zoom-icon {
    transform: scale(1);
}

.gallery-overlay .gallery-img-label {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    padding: 0 0.75rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* --- Gallery Album Card (multiple albums view) --- */
.gallery-album-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background: var(--pure-white);
    margin-bottom: 1.5rem;
}

.gallery-album-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.gallery-album-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.gallery-album-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--light-gray);
}

.gallery-album-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-album-card:hover .gallery-album-thumb img {
    transform: scale(1.07);
}

.gallery-album-thumb .gallery-album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(111, 191, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-album-card:hover .gallery-album-thumb .gallery-album-overlay {
    opacity: 1;
}

.gallery-album-overlay i {
    color: #fff;
    font-size: 2.5rem;
    drop-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.gallery-album-info {
    padding: 0.875rem 1rem;
    border-top: 2px solid var(--primary-green);
}

.gallery-album-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.2s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gallery-album-card:hover .gallery-album-info h4 {
    color: var(--primary-green);
}

/* --- Custom Lightbox --- */
.glb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.glb-overlay.glb-open {
    opacity: 1;
    visibility: visible;
}

.glb-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glb-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 80vh;
}

.glb-img-wrap img {
    max-width: 88vw;
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transform: scale(0.92);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.glb-overlay.glb-open .glb-img-wrap img {
    transform: scale(1);
    opacity: 1;
}

.glb-caption {
    margin-top: 0.875rem;
    text-align: center;
    color: rgba(255,255,255,0.92);
    max-width: 80vw;
}

.glb-caption .glb-title {
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.2rem;
}

.glb-caption .glb-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}

.glb-counter {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.4rem;
}

/* Close button */
.glb-close {
    position: fixed;
    top: 1.25rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 10001;
}

.glb-close:hover {
    background: rgba(255,255,255,0.25);
}

/* Prev / Next */
.glb-prev,
.glb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 10001;
    user-select: none;
}

.glb-prev { left: 1.25rem; }
.glb-next { right: 1.25rem; }

.glb-prev:hover,
.glb-next:hover {
    background: rgba(111, 191, 42, 0.55);
    border-color: var(--primary-green);
}

@media (max-width: 575px) {
    .glb-prev { left: 0.5rem; }
    .glb-next { right: 0.5rem; }

    .glb-prev,
    .glb-next {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .gallery-album-info h4 {
        font-size: 0.9rem;
    }
}

