:root {
    --green: #4b5d2a;
    --dark-olive: #2f3e1e;
    --light-green: #6d7f42;
    --accent: #8fba2f;
    --earth: #a07040;
    --earth-light: #c8a06a;
    --cream: #f6f1e7;
    --white: #ffffff;
    --text-dark: #1a230e;
    --text-muted: #6b7a52;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* ─── SCROLLBAR ─────────────────────────── */
::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #f0ece0;
}

::-webkit-scrollbar-thumb {
    background: var(--green);
    border-radius: 10px;
}

/* ─── UTILITY ───────────────────────────── */
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--dark-olive);
    line-height: 1.2;
}

.section-sub {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

.accent-bar {
    width: 55px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--earth-light));
    border-radius: 4px;
    margin: 10px auto 20px;
}

.btn-ganga {
    background: linear-gradient(135deg, var(--green), var(--accent));
    color: #fff;
    font-weight: 700;
    letter-spacing: .5px;
    padding: .65rem 1.8rem;
    border-radius: 50px;
    border: none;
    transition: transform .25s, box-shadow .25s;
}

.btn-ganga:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(75, 93, 42, .45);
    color: #fff;
}

.btn-outline-ganga {
    border: 2px solid #fff;
    color: #fff;
    font-weight: 700;
    letter-spacing: .5px;
    padding: .6rem 1.7rem;
    border-radius: 50px;
    background: transparent;
    transition: background .25s, color .25s, transform .25s;
}

.btn-outline-ganga:hover {
    background: #fff;
    color: var(--dark-olive);
    transform: translateY(-3px);
}

/* ─── TOPBAR ────────────────────────────── */
.topbar {
    background: var(--dark-olive);
    color: #ffffff;
    font-size: 13px;
    padding: 7px 0;
}



.topbar a {
    color: #ffffff;
    text-decoration: none;
}

.topbar a:hover {
    color: var(--accent);
}

/* ─── NAVBAR ────────────────────────────── */
.navbar {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    padding: 0;
    transition: padding .3s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .97);
    padding: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .14);
}

.navbar-brand .logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--green), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(75, 93, 42, .35);
}

.logo-text {
    line-height: 1.1;
}

.logo-text .name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark-olive);
}

.logo-text .tagline {
    font-size: .65rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-link {
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .3px;
    color: var(--text-dark) !important;
    padding: 8px 14px !important;
    border-radius: 6px;
    transition: color .2s, background .2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green) !important;
    background: rgba(75, 93, 42, .07);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
}

.dropdown-item {
    border-radius: 8px;
    font-size: .84rem;
    font-weight: 600;
    padding: 8px 14px;
    color: var(--text-dark);
    transition: background .2s, color .2s;
}

.dropdown-item:hover {
    background: rgba(75, 93, 42, .09);
    color: var(--green);
}

.dropdown-item i {
    margin-right: 8px;
    color: var(--accent);
}

/* ─── HERO ──────────────────────────────── */
#heroCarousel {
    position: relative;
}

.carousel-item {
     height: 71vh;
    min-height: 461px;
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.carousel-item.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgb(0 0 0 / 57%) 40%, rgb(0 0 0 / 0%));
}


.carousel-caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 8%;
    text-align: left;
}

.slide-badge {
    display: inline-block;
    background: rgba(143, 186, 47, .25);
    border: 1px solid rgba(143, 186, 47, .5);
    color: #c8e87a;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
    backdrop-filter: blur(4px);
}

.slide-heading {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    max-width: 680px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
    margin-bottom: 18px;
}

.slide-sub {
    font-family: 'Lora', serif;
    font-size: clamp(.95rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, .82);
    max-width: 520px;
    margin-bottom: 32px;
    font-style: italic;
}

.slide-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .3);
}

.carousel-control-prev {
    left: 2%;
}

.carousel-control-next {
    right: 2%;
}

.carousel-indicators [data-bs-target] {
    width: 30px;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .5);
}

.carousel-indicators .active {
    background: var(--accent);
    width: 50px;
}

/* ─── ABOUT ─────────────────────────────── */
#about {
    background: var(--cream);
    padding: 90px 0;
}

.about-img-wrap {
    position: relative;
    display: inline-block;
}

.about-img-wrap img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(75, 93, 42, .25);
    width: 100%;
    object-fit: cover;
    height: 440px;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--green), var(--accent));
    color: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(75, 93, 42, .4);
}

.about-badge .num {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.about-badge .lbl {
    font-size: .72rem;
    font-weight: 600;
    opacity: .85;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.about-feature .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--green), var(--accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.about-feature h6 {
    font-weight: 700;
    color: var(--dark-olive);
    margin-bottom: 3px;
}

.about-feature p {
    font-size: .83rem;
    color: var(--text-muted);
    margin: 0;
}

/* ─── WHY CHOOSE ─────────────────────────── */
#why {
    background: var(--white);
    padding: 90px 0;
}

.why-card {
    background: var(--cream);
    border-radius: 18px;
    padding: 36px 26px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(75, 93, 42, .1);
    transition: transform .3s, box-shadow .3s, background .3s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(75, 93, 42, .15);
    background: #fff;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--green), var(--accent));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #fff;
    box-shadow: 0 8px 20px rgba(75, 93, 42, .3);
    transition: transform .3s;
}

.why-card:hover .why-icon {
    transform: rotate(10deg) scale(1.1);
}

.why-card h5 {
    font-weight: 800;
    color: var(--dark-olive);
    font-size: .95rem;
    margin-bottom: 10px;
}

.why-card p {
    font-size: .82rem;
    color: var(--text-muted);
    margin: 0;
}

/* ─── PRODUCTS ───────────────────────────── */
#products {
    background: linear-gradient(175deg, #f0ece0 0%, #e8f0d8 100%);
    padding: 90px 0;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .07);
    transition: transform .35s, box-shadow .35s;
    height: 100%;
    border: 1px solid rgba(75, 93, 42, .08);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 22px 50px rgba(75, 93, 42, .2);
}

.product-img-wrap {
    overflow: hidden;
    height: 210px;
    position: relative;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}

.product-body {
    padding: 22px 22px 24px;
}

.product-body h5 {
    font-weight: 800;
    color: var(--dark-olive);
    margin-bottom: 8px;
    font-size: 1rem;
}

.product-body p {
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.6;
}

.product-body .btn-ganga {
    font-size: .82rem;
    padding: .5rem 1.4rem;
}

/* ─── TRUST / CERTS ──────────────────────── */
#trust {
    background: var(--dark-olive);
    padding: 70px 0;
}

.trust-badge {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 18px;
    padding: 30px 24px;
    text-align: center;
    color: #fff;
    transition: background .3s, transform .3s;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, .14);
    transform: translateY(-5px);
}

.trust-badge .tb-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #c8e87a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.7rem;
    color: var(--dark-olive);
    box-shadow: 0 6px 18px rgba(143, 186, 47, .4);
}

.trust-badge h6 {
    font-weight: 800;
    font-size: .95rem;
    margin-bottom: 6px;
}

.trust-badge p {
    font-size: .78rem;
    opacity: .72;
    margin: 0;
}

/* ─── STATS ──────────────────────────────── */
#stats {
    background: linear-gradient(135deg, var(--green), var(--dark-olive));
    padding: 70px 0;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-num {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(90deg, #fff, #c8e87a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 900;
}

.stat-label {
    font-size: .85rem;
    font-weight: 600;
    opacity: .8;
    margin-top: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, .2);
    height: 70px;
    margin: auto;
}

/* ─── CONTACT ────────────────────────────── */
#contact {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

/* .contact-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1600&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(.35);
} */

.contact-wrap {
    position: relative;
    z-index: 2;
}

.contact-info-card {
    background: rgb(83 105 42 / 4%);
    border: 1px solid rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 36px 30px;
    color: #000000;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-info-item .ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent), #8fba2f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--dark-olive);
}

.contact-info-item .ci-label {
    font-size: .72rem;
    font-weight: 700;
    opacity: .6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-item .ci-val {
    font-weight: 600;
    font-size: .9rem;
}

.contact-form-card {
    background: #000000;
    border-radius: 20px;
    padding: 36px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

.contact-form-card h4 {
    font-weight: 800;
    color: white;
    margin-bottom: 22px;
}

.form-control,
.form-select {
    border: 1.5px solid #dde5cc;
    border-radius: 10px;
    font-size: .87rem;
    padding: .75rem 1rem;
    transition: border-color .25s, box-shadow .25s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(143, 186, 47, .2);
}

.form-label {
    font-weight: 600;
    font-size: .82rem;
    color: white;
}

/* ─── FOOTER ─────────────────────────────── */
footer {
    background: #111a0a;
    color: rgba(255, 255, 255, .7);
    padding: 70px 0 0;
}

.footer-brand .name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.footer-brand p {
    font-size: .82rem;
    line-height: 1.7;
    margin-top: 10px;
}

.footer-title {
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    font-size: .83rem;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '›';
    color: var(--accent);
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: 1rem;
    transition: background .25s, color .25s, transform .25s;
}

.social-icon:hover {
    background: var(--accent);
    color: var(--dark-olive);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 50px;
    padding: 20px 0;
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
}

/* ─── BACK TO TOP ─────────────────────────── */
#backTop {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 999;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--accent));
    color: #fff;
    border: none;
    font-size: 1.1rem;
    box-shadow: 0 6px 18px rgba(75, 93, 42, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s;
}

#backTop.visible {
    opacity: 1;
    pointer-events: auto;
}

#backTop:hover {
    transform: translateY(-4px);
}

/* ─── ANIMATIONS ─────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-item.active .slide-badge {
    animation: fadeUp .7s .1s both;
}

.carousel-item.active .slide-heading {
    animation: fadeUp .7s .25s both;
}

.carousel-item.active .slide-sub {
    animation: fadeUp .7s .4s both;
}

.carousel-item.active .slide-btns {
    animation: fadeUp .7s .55s both;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 767px) {
    .carousel-caption {
        padding: 0 6%;
    }

    .about-badge {
        right: 0;
        bottom: -15px;
    }

    .stat-divider {
        display: none;
    }

    .contact-form-card {
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, .98);
        border-radius: 14px;
        padding: 16px;
        margin-top: 10px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
    }
}



.logo-wrap img {

    width: 92px;

}




@media (max-width: 501px) {
   .slide-heading {
    font-size: 30px !important;
   }


}









.ganga-page-header {
    background: linear-gradient(rgba(5,25,5,0.85), rgba(5,25,5,0.85)), 
                url('assets/img/bg-pattern.png');
    background-size: cover;
    background-position: center;
    padding: 39px 0px 35px 50px;
    position: relative;
}

/* Title */
.ganga-page-title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Breadcrumb */
.ganga-breadcrumb {
    font-size: 14px;
    color: #b7e4b7;
}

/* Links */
.ganga-breadcrumb a {
    color: #9df59d;
    text-decoration: none;
    transition: 0.3s;
}

.ganga-breadcrumb a:hover {
    color: #66ff66;
}

/* Separator */
.ganga-breadcrumb span {
    margin: 0 6px;
    color: #6fbf73;
}

/* Active */
.ganga-breadcrumb .active {
    color: #ffffff;
    font-weight: 600;
}

/* Glow effect */
.ganga-page-title {
    text-shadow: 0 0 12px rgba(100,255,100,0.3);
}


@media (max-width: 600px) {

.ganga-page-title {
    font-size: 22px;

}


   .ganga-page-header {
 
    padding: 50px 0 50px;
    position: relative;
}

}



        /* custom scroll */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #e9e0d3;
        }
        ::-webkit-scrollbar-thumb {
            background: #6b8c5c;
            border-radius: 10px;
        }

        /* gallery header with breadcrumb */
        .gallery-hero {
            background: linear-gradient(135deg, #1f3b1a 0%, #2b5e2a 100%);
            padding: 3rem 0 2.5rem 0;
            border-bottom-left-radius: 40px;
            border-bottom-right-radius: 40px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }
        .gallery-hero::before {
            content: "🌱";
            font-size: 220px;
            opacity: 0.08;
            position: absolute;
            bottom: -30px;
            right: 10px;
            pointer-events: none;
        }
        .breadcrumb-custom {
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        .breadcrumb-custom a {
            color: #e9f5e0;
            text-decoration: none;
            transition: 0.2s;
        }
        .breadcrumb-custom a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        .page-title {
            font-weight: 800;
            font-size: 3.2rem;
            letter-spacing: -0.5px;
            background: linear-gradient(120deg, #ffffff, #f9e0a0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        /* brand quote card */
        .brand-quote {
            background: white;
            border-radius: 30px;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
            margin-top: -2rem;
            margin-bottom: 3rem;
            padding: 1.5rem 2rem;
            border-left: 6px solid #ffb347;
            transition: transform 0.3s ease, box-shadow 0.3s;
        }
        .brand-quote:hover {
            transform: translateY(-5px);
            box-shadow: 0 28px 40px -18px rgba(0,0,0,0.15);
        }

        /* gallery grid items */
        .gallery-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            cursor: pointer;
            margin-bottom: 30px;
        }
        .gallery-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 40px rgba(60, 45, 20, 0.2);
        }
        .img-wrapper {
            position: relative;
            overflow: hidden;
            background: #eae3d7;
        }
        .img-wrapper img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-card:hover .img-wrapper img {
            transform: scale(1.08);
        }
        .overlay-icon {
            position: absolute;
            bottom: 15px;
            right: 20px;
            background: rgba(0,0,0,0.65);
            backdrop-filter: blur(4px);
            border-radius: 50px;
            padding: 8px 15px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #ffefcf;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s;
            opacity: 0;
            transform: translateY(10px);
        }
        .gallery-card:hover .overlay-icon {
            opacity: 1;
            transform: translateY(0);
        }
        .card-caption {
            padding: 1rem 1.2rem 1.2rem;
            background: white;
        }
        .card-caption h5 {
            font-weight: 700;
            color: #2c5e2a;
            margin-bottom: 0.3rem;
        }
        .card-caption p {
            font-size: 0.85rem;
            color: #6f6a5e;
            margin: 0;
        }

        /* Sidebar / Quick links & products (exactly matching original structure but modern) */
        .info-sidebar {
            background: #ffffffdd;
            backdrop-filter: blur(2px);
            border-radius: 28px;
            padding: 1.8rem;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            transition: all 0.2s;
            border: 1px solid rgba(110, 80, 40, 0.1);
        }
        .info-sidebar h5 {
            font-weight: 700;
            font-size: 1.3rem;
            border-left: 5px solid #f5b042;
            padding-left: 12px;
            margin-bottom: 1.2rem;
            color: #2c5230;
        }
        .sidebar-links {
            list-style: none;
            padding-left: 0;
        }
        .sidebar-links li {
            margin-bottom: 0.7rem;
        }
        .sidebar-links li a {
            text-decoration: none;
            color: #3a5a3a;
            font-weight: 500;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-links li a i {
            color: #f5a623;
            width: 24px;
        }
        .sidebar-links li a:hover {
            color: #cd7b2e;
            transform: translateX(5px);
            display: inline-flex;
        }
        .contact-info p {
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .contact-info i {
            width: 24px;
            color: #f5a623;
        }
        hr {
            background: #cfd9c7;
            opacity: 0.4;
        }

        /* lightbox custom tweak */
        .lb-data .lb-caption {
            font-size: 1rem;
            font-weight: 500;
        }
        .lb-number {
            font-weight: 500;
        }
        footer {
            background: #1e2f1a;
            color: #ddd7c6;
            border-radius: 30px 30px 0 0;
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.2rem;
            }
            .gallery-hero {
                padding: 2rem 0 1.8rem;
            }
            .brand-quote {
                margin-top: -1rem;
            }
        }
        .btn-outline-organic {
            border: 1.5px solid #aacf9e;
            background: white;
            border-radius: 60px;
            padding: 5px 16px;
            font-weight: 500;
            transition: 0.2s;
        }
        .btn-outline-organic:hover {
            background: #eaf6e4;
            border-color: #719e5e;
        }











        
    
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=DM+Sans:wght@400;500;600&display=swap');

:root {
    --accent: #2e7d32;
    --accent-light: #e8f5e9;
    --accent-mid: #66bb6a;
    --accent-dark: #1b5e20;
    --text-dark: #1a1a1a;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --white: #ffffff;
    --bg-soft: #f9fafb;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg: 0 24px 64px rgba(0,0,0,0.13);
}

/* ── SECTION ── */
.ganga-product-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #f0faf0 0%, #fff 50%, #f9f9f9 100%);
    font-family: 'DM Sans', sans-serif;
    overflow: hidden;
    position: relative;
}

.ganga-product-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,125,50,0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* ── GALLERY ── */
.ganga-product-gallery {
    background: #fff;
    padding: 20px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ganga-product-gallery:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.16);
}

.ganga-gallery-badge {
    position: absolute;
    top: 28px;
    left: 28px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(46,125,50,0.35);
}

.ganga-main-img {
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-soft);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ganga-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.ganga-main-img:hover img {
    transform: scale(1.06);
}

/* Thumbnails */
.ganga-thumb-list {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.ganga-thumb-list img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.55;
    border: 2.5px solid transparent;
    transition: opacity 0.3s, border-color 0.3s, transform 0.25s;
}

.ganga-thumb-list img.active,
.ganga-thumb-list img:hover {
    opacity: 1;
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* ── PRODUCT CONTENT ── */
.ganga-product-content {
    padding: 10px 0;
    animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Eyebrow */
.ganga-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.ganga-eyebrow span.dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.75); }
}

/* Title */
.ganga-product-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.18;
    margin-bottom: 16px;
}

.ganga-product-title span {
    color: var(--accent);
}

/* Divider */
.ganga-title-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ganga-title-divider .line {
    height: 3px;
    width: 48px;
    background: var(--accent);
    border-radius: 10px;
}

.ganga-title-divider .line-sm {
    height: 3px;
    width: 16px;
    background: var(--accent-mid);
    border-radius: 10px;
    opacity: 0.5;
}

/* Desc */
.ganga-product-desc {
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 520px;
}

/* Stats row */
.ganga-stats-row {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.ganga-stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 14px 20px;
    min-width: 90px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
}

.ganga-stat-pill:hover {
    border-color: var(--accent-mid);
    box-shadow: 0 6px 20px rgba(46,125,50,0.12);
    transform: translateY(-3px);
}

.ganga-stat-pill .stat-val {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-dark);
    line-height: 1;
}

.ganga-stat-pill .stat-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    white-space: nowrap;
}

/* Features */
.ganga-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.ganga-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--text-dark);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
    cursor: default;
}

.ganga-feature-list li:hover {
    border-color: var(--accent-mid);
    box-shadow: 0 4px 16px rgba(46,125,50,0.10);
    transform: translateX(4px);
}

.ganga-feature-list li .feat-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

/* CTA Buttons */
.ganga-product-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-ganga {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff !important;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 100px;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(46,125,50,0.30);
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-ganga::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: opacity 0.25s;
}

.btn-ganga:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(46,125,50,0.35);
}

.btn-ganga:hover::after {
    opacity: 1;
}

.btn-outline-ganga {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--accent) !important;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 100px;
    border: 2px solid var(--accent);
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-outline-ganga:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46,125,50,0.15);
}

/* Trust strip */
.ganga-trust-strip {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.ganga-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.ganga-trust-item .trust-dot {
    width: 7px;
    height: 7px;
    background: var(--accent-mid);
    border-radius: 50%;
    flex-shrink: 0;
}

.ganga-trust-sep {
    width: 1px;
    height: 16px;
    background: var(--border);
}

/* ── DECORATIVE BG LEAF ── */
.ganga-deco-leaf {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102,187,106,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .ganga-product-section { padding: 60px 0; }
    .ganga-feature-list    { grid-template-columns: 1fr; }
    .ganga-stats-row       { gap: 12px; }
    .ganga-stat-pill       { min-width: 76px; padding: 10px 14px; }
    .ganga-product-title   { font-size: 28px; }
    .btn-ganga, .btn-outline-ganga { font-size: 14px; padding: 12px 22px; }
}

@media (max-width: 576px) {
    .ganga-product-gallery { padding: 14px; }
    .ganga-thumb-list img  { width: 54px; height: 54px; }
    .ganga-product-actions { flex-direction: column; align-items: stretch; }
    .ganga-product-actions a { text-align: center; justify-content: center; }
}



.ganga-product-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ganga-product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fdf8;
    padding: 5px 18px;
    border-radius: 10px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #28a745;
}

/* Icon style */
.ganga-product-features li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    background: #28a745;
    color: #fff;
    font-size: 13px;
    border-radius: 50%;
    font-weight: bold;
}

/* Hover effect 🔥 */
.ganga-product-features li:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    background: #eefaf0;
}

/* Responsive */
@media (max-width: 576px) {
    .ganga-product-features li {
        font-size: 14px;
        padding: 12px 14px;
    }
}