﻿/* ===== DIVYAYAJURVEDA WELLNESS - Main Stylesheet ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* ===== TOPBAR ===== */
.top-bar {
    background: #1a6b3a;
    color: #fff;
    padding: 7px 0;
    font-size: 13px;
}

    .top-bar a {
        color: #f5c518;
        text-decoration: none;
    }

    .top-bar .top-contact span {
        margin-right: 20px;
    }

    .top-bar .top-contact i {
        margin-right: 5px;
    }

.top-social a {
    margin-left: 10px;
    font-size: 14px;
}

/* ===== NAVBAR ===== */
.navbar-brand img {
    height: 55px;
}

.navbar-brand .brand-text {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    line-height: 1.2;
}

.navbar-brand .brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a6b3a;
}

.navbar-brand .brand-sub {
    font-size: 12px;
    color: #888;
}

.navbar {
    background: #fff !important;
    box-shadow: 0 2px 15px rgba(0,0,0,.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 600;
    padding: 8px 15px !important;
    font-size: 14px;
    transition: color .3s;
}

    .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
        color: #1a6b3a !important;
    }

.navbar-nav .nav-item.btn-login .nav-link {
    background: #1a6b3a;
    color: #fff !important;
    border-radius: 20px;
    padding: 7px 18px !important;
}

.navbar-nav .nav-item.btn-register .nav-link {
    background: #f5c518;
    color: #333 !important;
    border-radius: 20px;
    padding: 7px 18px !important;
    margin-left: 8px;
}

.navbar-nav .nav-item.btn-login .nav-link:hover {
    background: #145530;
}

.navbar-nav .nav-item.btn-register .nav-link:hover {
    background: #e0b215;
}

/* Mobile navbar collapse - inline, no overlap */
@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 8px 25px rgba(0,0,0,.15);
        border-top: 3px solid #1a6b3a;
        padding: 15px 20px 20px;
        z-index: 1050;
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        border-bottom: 1px solid #f0f0f0;
        font-size: 15px;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    /* Dropdown: inline, not floating */
    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none !important;
        box-shadow: none !important;
        border: none !important;
        background: #f8fdf9 !important;
        border-radius: 10px !important;
        margin: 0 0 8px 10px !important;
        padding: 5px 0 !important;
        width: auto;
    }

    .navbar-nav .dropdown-item {
        padding: 9px 16px;
        font-size: 14px;
        border-bottom: 1px solid #eaf3ec;
    }

    .navbar-nav .dropdown-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-item.btn-login {
        margin-top: 10px;
    }

        .navbar-nav .nav-item.btn-login .nav-link,
        .navbar-nav .nav-item.btn-register .nav-link {
            display: inline-block;
            text-align: center;
            width: auto;
            margin: 5px 0;
        }

    .navbar-nav .nav-item.btn-register .nav-link {
        margin-left: 0;
    }

    .navbar-nav.ms-auto {
        margin-left: 0 !important;
    }

    .navbar-nav.align-items-center {
        align-items: flex-start !important;
    }
}

/* ===== HERO SLIDER ===== */
#heroSlider {
    margin-top: 0;
}

    #heroSlider .carousel-item {
        height: 600px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

        #heroSlider .carousel-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,.48);
        }

        #heroSlider .carousel-item .hero-content {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            z-index: 2;
        }

.btn-hero {
    display: inline-block;
    background: #1a6b3a;
    color: #fff;
    padding: 13px 32px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    margin-right: 10px;
    border: none;
    font-size: 15px;
    transition: all .3s;
}

    .btn-hero:hover {
        background: #f5c518;
        color: #333;
        text-decoration: none;
    }

.btn-hero-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 13px 32px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #fff;
    font-size: 15px;
    transition: all .3s;
}

    .btn-hero-outline:hover {
        background: #fff;
        color: #1a6b3a;
        text-decoration: none;
    }

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* ===== PAGE HERO BANNER ===== */
.page-hero {
    position: relative;
    padding: 90px 0 65px;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,60,30,0.82) 0%, rgba(26,107,58,0.75) 60%, rgba(10,40,20,0.88) 100%);
    z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    letter-spacing: -0.5px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.88); margin-bottom: 18px; }
.page-hero .breadcrumb { background: transparent; justify-content: center; }
.page-hero .breadcrumb-item a { color: #f5c518; text-decoration: none; font-weight: 600; }
.page-hero .breadcrumb-item a:hover { color: #fff; }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.75); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* Per-page background images */
.page-hero-about       { background-image: url('../img/about-herbs.jpg'); }
.page-hero-vision      { background-image: url('../img/why-herbs.jpg'); }
.page-hero-products    { background-image: url('../img/prod1-immunity.jpg'); }
.page-hero-contact     { background-image: url('../img/why-lab.jpg'); }
.page-hero-login       { background-image: url('../img/hero-slide1.jpg'); }
.page-hero-register    { background-image: url('../img/hero-slide2.jpg'); }

/* Hero divider bottom wave */
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 40px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 2;
}
/* Pages where next section bg is not white */
.page-hero-about::after,
.page-hero-products::after { background: #fff; }
.page-hero-vision::after,
.page-hero-contact::after  { background: #f8fdf9; }
.page-hero-login::after,
.page-hero-register::after { background: #f8fdf9; }

@media (max-width: 768px) {
    .page-hero { padding: 70px 0 55px; }
    .page-hero h1 { font-size: 30px; }
    .page-hero p { font-size: 14px; }
}
@media (max-width: 576px) {
    .page-hero { padding: 55px 0 50px; }
    .page-hero h1 { font-size: 24px; }
}

/* ===== DROPDOWN ===== */
.dropdown-menu {
    border-radius: 12px !important;
    border: none !important;
    box-shadow: 0 10px 40px rgba(0,0,0,.12) !important;
    padding: 10px 0 !important;
    min-width: 200px;
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    transition: all .2s;
}

    .dropdown-item:hover {
        background: #e8f5e9;
        color: #1a6b3a;
        padding-left: 26px;
    }

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title .badge-label {
        background: #e8f5e9;
        color: #1a6b3a;
        font-size: 13px;
        font-weight: 600;
        padding: 5px 18px;
        border-radius: 20px;
        display: inline-block;
        margin-bottom: 10px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .section-title h2 {
        font-size: 38px;
        font-weight: 800;
        color: #222;
    }

        .section-title h2 span {
            color: #1a6b3a;
        }

    .section-title p {
        color: #666;
        max-width: 650px;
        margin: 15px auto 0;
        font-size: 16px;
    }

.divider {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #1a6b3a, #f5c518);
    border-radius: 5px;
    margin: 15px auto 0;
}

/* ===== ABOUT US ===== */
.about-section {
    padding: 90px 0;
    background: #fff;
}

.about-img-wrap {
    position: relative;
}

    .about-img-wrap img {
        border-radius: 15px;
        width: 100%;
        box-shadow: 0 15px 40px rgba(0,0,0,.15);
    }

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #1a6b3a;
    color: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
}

    .about-badge h3 {
        font-size: 36px;
        font-weight: 800;
        margin: 0;
    }

    .about-badge p {
        font-size: 13px;
        margin: 0;
    }

.about-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: #222;
    line-height: 1.3;
}

    .about-text h2 span {
        color: #1a6b3a;
    }

.about-text p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin: 15px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin: 12px 0;
}

    .about-feature .icon-box {
        width: 45px;
        height: 45px;
        background: #e8f5e9;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }

        .about-feature .icon-box i {
            color: #1a6b3a;
            font-size: 20px;
        }

    .about-feature h5 {
        font-size: 15px;
        font-weight: 700;
        margin: 0 0 3px;
    }

    .about-feature p {
        font-size: 13px;
        color: #888;
        margin: 0;
    }

.btn-green {
    background: #1a6b3a;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

    .btn-green:hover {
        background: #145530;
        color: #fff;
        text-decoration: none;
    }

/* ===== STATS COUNTER ===== */
.stats-section {
    background: linear-gradient(135deg, #1a6b3a 0%, #2e9e56 100%);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    color: #fff;
}

    .stat-item h3 {
        font-size: 48px;
        font-weight: 800;
        margin: 0;
    }

    .stat-item p {
        font-size: 15px;
        opacity: .85;
        margin: 5px 0 0;
    }

    .stat-item i {
        font-size: 36px;
        color: #f5c518;
        margin-bottom: 10px;
    }

/* ===== VISION MISSION ===== */
.vm-section {
    padding: 90px 0;
    background: #f8fdf9;
}

.vm-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    height: 100%;
}

    .vm-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,.12);
    }

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a6b3a, #2e9e56);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .vm-icon i {
        color: #fff;
        font-size: 32px;
    }

.vm-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.vm-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.vm-values {
    margin-top: 10px;
}

    .vm-values .val-item {
        display: inline-block;
        background: #e8f5e9;
        color: #1a6b3a;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        margin: 4px;
    }

/* ===== PRODUCTS ===== */
.products-section {
    padding: 90px 0;
    background: #fff;
}

.product-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: transform .3s, box-shadow .3s;
    background: #fff;
    height: 100%;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,.15);
    }

    .product-card img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        transition: transform .4s;
    }

    .product-card:hover img {
        transform: scale(1.05);
    }

    .product-card .overflow-hidden {
        overflow: hidden;
    }

.product-body {
    padding: 20px;
}

    .product-body .category {
        font-size: 12px;
        color: #1a6b3a;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .product-body h4 {
        font-size: 18px;
        font-weight: 700;
        color: #222;
        margin: 8px 0;
    }

    .product-body p {
        font-size: 14px;
        color: #666;
        margin-bottom: 15px;
    }

    .product-body .btn-sm {
        background: #1a6b3a;
        color: #fff;
        border-radius: 20px;
        padding: 7px 20px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        border: none;
        cursor: pointer;
    }

        .product-body .btn-sm:hover {
            background: #f5c518;
            color: #333;
        }

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f5c518;
    color: #333;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    padding: 90px 0;
    background: #f8fdf9;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.why-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #1a6b3a, #2e9e56);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

    .why-icon i {
        color: #fff;
        font-size: 26px;
    }

.why-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.why-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.why-img img {
    border-radius: 15px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #1a6b3a 0%, #2e9e56 100%);
}

    .testimonials-section .section-title h2 {
        color: #fff;
    }

    .testimonials-section .section-title p {
        color: rgba(255,255,255,.8);
    }

    .testimonials-section .section-title .badge-label {
        background: rgba(255,255,255,.2);
        color: #fff;
    }

    .testimonials-section .divider {
        background: linear-gradient(90deg, #f5c518, #fff);
    }

.testi-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    position: relative;
}

    .testi-card::before {
        content: '\201C';
        font-size: 80px;
        color: #e8f5e9;
        position: absolute;
        top: 10px;
        left: 20px;
        font-family: Georgia, serif;
        line-height: 1;
    }

    .testi-card .stars {
        color: #f5c518;
        margin-bottom: 15px;
        font-size: 16px;
    }

    .testi-card p {
        font-size: 15px;
        color: #555;
        line-height: 1.8;
        font-style: italic;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

.testi-author {
    display: flex;
    align-items: center;
}

    .testi-author img {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 15px;
        border: 3px solid #e8f5e9;
    }

    .testi-author h5 {
        font-size: 15px;
        font-weight: 700;
        margin: 0;
        color: #222;
    }

    .testi-author span {
        font-size: 13px;
        color: #888;
    }

/* ===== NEWSLETTER ===== */
.newsletter-section {
    padding: 70px 0;
    background: #f5c518;
}

    .newsletter-section h2 {
        font-size: 34px;
        font-weight: 800;
        color: #222;
    }

    .newsletter-section p {
        color: #555;
        font-size: 16px;
    }

.newsletter-form {
    display: flex;
    max-width: 500px;
}

    .newsletter-form input {
        flex: 1;
        padding: 14px 20px;
        border: none;
        border-radius: 30px 0 0 30px;
        font-size: 14px;
        outline: none;
    }

    .newsletter-form button {
        background: #1a6b3a;
        color: #fff;
        border: none;
        padding: 14px 30px;
        border-radius: 0 30px 30px 0;
        font-weight: 700;
        cursor: pointer;
    }

        .newsletter-form button:hover {
            background: #145530;
        }

/* ===== FOOTER ===== */
.footer {
    background: #00330e;
    color: #ccc;
    padding: 70px 0 0;
    border-top: 4px solid #1a6b3a;
}
.footer-logo img {
    height: 55px;
}

.footer-logo .brand-name {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
}

.footer-logo .brand-sub {
    color: #888;
    font-size: 13px;
}

.footer p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.9;
}

.footer h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

    .footer h5::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg,#1a6b3a,#f5c518);
        border-radius: 2px;
    }

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer ul li {
        margin-bottom: 11px;
        font-size: 14px;
        color: #aaa;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

        .footer ul li a {
            color: #aaa;
            text-decoration: none;
            font-size: 14px;
            transition: color .3s, padding-left .2s;
        }

            .footer ul li a:hover {
                color: #f5c518;
                padding-left: 4px;
            }

        .footer ul li i {
            color: #2e9e56;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .footer ul li span {
            color: #aaa;
            line-height: 1.6;
        }

.footer-divider {
    border-color: #1e3028;
    margin: 50px 0 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1e3028;
    color: #aaa;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 15px;
    transition: all .3s;
    text-decoration: none;
}

    .footer-social a:hover {
        background: #1a6b3a;
        color: #fff;
        transform: translateY(-3px);
    }

.footer-bottom {
    background: #472300;
    padding: 20px 0;
    margin-top: 0;
    border-top: 1px solid #1e3028;
}

    .footer-bottom p {
        color: #666;
        font-size: 13px;
        margin: 0;
    }

    .footer-bottom a {
        color: #f5c518;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            color: #fff;
        }

/* ===== BACK TO TOP ===== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1a6b3a;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,.3);
    transition: background .3s;
    border: none;
}

    #backToTop:hover {
        background: #f5c518;
        color: #333;
    }

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    #heroSlider .carousel-item {
        height: 480px;
    }

    .hero-content h2 {
        font-size: 36px !important;
    }

    .about-badge {
        right: 0;
        bottom: -15px;
    }

    .stat-item h3 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    #heroSlider .carousel-item {
        height: 420px;
    }

    .hero-content h2 {
        font-size: 28px !important;
    }

    .hero-content p {
        font-size: 14px !important;
        margin: 10px 0 18px !important;
    }

    .btn-hero, .btn-hero-outline {
        padding: 10px 22px;
        font-size: 13px;
        margin-bottom: 8px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-badge {
        right: 10px;
        bottom: -10px;
        padding: 15px 18px;
    }

        .about-badge h3 {
            font-size: 28px;
        }

    .vm-section {
        padding: 60px 0;
    }

    .products-section {
        padding: 60px 0;
    }

    .why-section {
        padding: 60px 0;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .stat-item h3 {
        font-size: 34px;
    }

    .newsletter-section {
        padding: 50px 0;
    }

        .newsletter-section h2 {
            font-size: 24px;
        }

    .newsletter-form {
        flex-direction: column;
    }

        .newsletter-form input {
            border-radius: 30px;
            margin-bottom: 10px;
        }

        .newsletter-form button {
            border-radius: 30px;
        }

    .why-img img {
        margin-bottom: 15px;
    }

    .testi-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    #heroSlider .carousel-item {
        height: 360px;
    }

    .hero-content h2 {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    .hero-content p {
        font-size: 13px !important;
    }

    .btn-hero, .btn-hero-outline {
        padding: 9px 18px;
        font-size: 12px;
        display: inline-block;
        margin-bottom: 6px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .about-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
        border-radius: 12px;
    }

    .footer .col-lg-4, .footer .col-lg-2, .footer .col-lg-3 {
        margin-bottom: 10px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .vm-card {
        padding: 28px 20px;
    }

    .product-card img {
        height: 180px;
    }

    #backToTop {
        bottom: 15px;
        right: 15px;
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}



/* ===== ABOUT PAGE — TEAM SECTION ===== */
.team-section { background: #f8fdf9; padding: 80px 0; }
.team-card { background: #fff; border-radius: 16px; padding: 36px 24px 28px; text-align: center; box-shadow: 0 4px 24px rgba(26,107,58,0.10); transition: transform 0.3s, box-shadow 0.3s; height: 100%; }
.team-card:hover { transform: translateY(-8px); box-shadow: 0 12px 36px rgba(26,107,58,0.18); }
.team-avatar { width: 90px; height: 90px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 36px; color: #fff; }
.team-card h5 { font-weight: 700; font-size: 17px; color: #222; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: #1a6b3a; font-weight: 600; margin-bottom: 12px; }
.team-card p { font-size: 13px; color: #666; line-height: 1.6; }

/* ===== ABOUT PAGE — TRUST SECTION ===== */
.trust-section { padding: 80px 0; background: #fff; }
.trust-feature { background: #f8fdf9; border-radius: 14px; padding: 32px 24px; text-align: center; border: 1px solid #e0f0e8; transition: transform 0.3s, box-shadow 0.3s; height: 100%; }
.trust-feature:hover { transform: translateY(-5px); box-shadow: 0 8px 28px rgba(26,107,58,0.12); }
.trust-icon { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #1a6b3a, #2e9e56); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 26px; color: #fff; }
.trust-feature h5 { font-weight: 700; color: #222; margin-bottom: 8px; font-size: 16px; }
.trust-feature p { font-size: 14px; color: #666; line-height: 1.6; margin: 0; }

/* ===== CONTACT PAGE ===== */
.contact-info-section { padding: 60px 0 30px; background: #f8fdf9; }
.info-card { background: #fff; border-radius: 14px; padding: 28px 24px; text-align: center; box-shadow: 0 4px 20px rgba(26,107,58,0.09); transition: transform 0.3s, box-shadow 0.3s; height: 100%; }
.info-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(26,107,58,0.15); }
.info-icon { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #1a6b3a, #2e9e56); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 22px; color: #fff; }
.info-card h5 { font-weight: 700; color: #222; margin-bottom: 8px; font-size: 16px; }
.info-card p { font-size: 14px; color: #555; margin: 0; line-height: 1.6; }
.contact-form-section { padding: 70px 0; background: #fff; }
.contact-form-card { background: #fff; border-radius: 16px; box-shadow: 0 6px 30px rgba(26,107,58,0.10); padding: 40px 36px; }
.contact-form-card .form-label { font-weight: 600; color: #333; font-size: 14px; }
.contact-form-card .form-control,
.contact-form-card .form-select { border: 2px solid #e0ece6; border-radius: 10px; padding: 11px 16px; font-size: 14px; transition: border-color 0.3s, box-shadow 0.3s; }
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus { border-color: #1a6b3a; box-shadow: 0 0 0 3px rgba(26,107,58,0.12); }
.btn-submit { background: linear-gradient(135deg, #1a6b3a, #2e9e56); color: #fff; border: none; padding: 13px 36px; border-radius: 30px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-submit:hover { background: linear-gradient(135deg, #145530, #1a6b3a); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,107,58,0.35); }
.office-info-card { background: linear-gradient(135deg, #1a6b3a 0%, #2e9e56 100%); border-radius: 16px; padding: 36px 30px; color: #fff; height: 100%; }
.office-info-card h4 { font-weight: 800; margin-bottom: 24px; font-size: 22px; }
.office-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.office-detail-icon { width: 40px; height: 40px; min-width: 40px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.office-detail h6 { font-weight: 700; margin-bottom: 3px; font-size: 14px; }
.office-detail p { font-size: 13px; margin: 0; color: rgba(255,255,255,0.85); line-height: 1.5; }
.btn-whatsapp { background: #25d366; color: #fff; padding: 12px 24px; border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; transition: background 0.3s; margin-bottom: 20px; }
.btn-whatsapp:hover { background: #20b857; color: #fff; }
.social-links-contact a { width: 38px; height: 38px; background: rgba(255,255,255,0.2); color: #fff; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 15px; margin-right: 8px; text-decoration: none; transition: background 0.3s; }
.social-links-contact a:hover { background: #f5c518; color: #333; }
.faq-section { padding: 80px 0; background: #f8fdf9; }
.faq-section .accordion-button:not(.collapsed) { background: #e8f5ee; color: #1a6b3a; font-weight: 700; box-shadow: none; }
.faq-section .accordion-button:focus { box-shadow: 0 0 0 3px rgba(26,107,58,0.15); }
.faq-section .accordion-item { border: none; border-radius: 12px !important; margin-bottom: 12px; box-shadow: 0 2px 12px rgba(26,107,58,0.07); overflow: hidden; }
.faq-section .accordion-button { font-weight: 600; font-size: 15px; color: #222; border-radius: 12px; padding: 18px 24px; }
.faq-section .accordion-body { font-size: 14px; color: #555; line-height: 1.7; padding: 16px 24px 20px; }

/* ===== PRODUCTS PAGE ===== */
.filter-section { padding: 40px 0 10px; background: #fff; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter-btn { background: #f0f8f3; color: #1a6b3a; border: 2px solid #d0e8da; padding: 9px 22px; border-radius: 30px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.25s; text-decoration: none; }
.filter-btn:hover, .filter-btn.active { background: #1a6b3a; color: #fff; border-color: #1a6b3a; }
.product-price { font-size: 20px; font-weight: 800; color: #1a6b3a; margin: 8px 0 4px; }
.product-price .original-price { font-size: 14px; color: #999; text-decoration: line-through; font-weight: 400; margin-left: 6px; }
.btn-enquiry { background: linear-gradient(135deg, #1a6b3a, #2e9e56); color: #fff; border: none; padding: 10px 20px; border-radius: 25px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.3s; display: inline-flex; align-items: center; gap: 7px; text-decoration: none; width: 100%; justify-content: center; margin-top: 10px; }
.btn-enquiry:hover { background: linear-gradient(135deg, #145530, #1a6b3a); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(26,107,58,0.35); }
.btn-details { background: transparent; color: #1a6b3a; border: 2px solid #1a6b3a; padding: 8px 18px; border-radius: 25px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.3s; display: inline-flex; align-items: center; gap: 6px; text-decoration: none; width: 100%; justify-content: center; margin-top: 6px; }
.btn-details:hover { background: #1a6b3a; color: #fff; }
.product-category-tag { display: inline-block; background: #e8f5ee; color: #1a6b3a; font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 12px; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.benefits-section { padding: 80px 0; background: #f8fdf9; }
.benefit-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: #fff; border-radius: 12px; box-shadow: 0 3px 14px rgba(26,107,58,0.08); margin-bottom: 16px; transition: box-shadow 0.3s; }
.benefit-item:hover { box-shadow: 0 8px 24px rgba(26,107,58,0.15); }
.benefit-icon-sm { width: 48px; height: 48px; min-width: 48px; border-radius: 50%; background: linear-gradient(135deg, #1a6b3a, #2e9e56); display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; }
.benefit-item h6 { font-weight: 700; color: #222; margin-bottom: 4px; font-size: 15px; }
.benefit-item p { font-size: 13px; color: #666; margin: 0; line-height: 1.6; }

/* ===== VISION MISSION PAGE ===== */
.goals-section { padding: 80px 0; background: #f8fdf9; }
.goal-card { background: #fff; border-radius: 14px; padding: 30px 24px; text-align: center; box-shadow: 0 4px 20px rgba(26,107,58,0.09); transition: transform 0.3s, box-shadow 0.3s; height: 100%; }
.goal-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(26,107,58,0.16); }
.goal-icon { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #1a6b3a, #2e9e56); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 26px; color: #fff; }
.goal-card h5 { font-weight: 700; color: #222; margin-bottom: 10px; font-size: 16px; }
.goal-card p { font-size: 14px; color: #555; line-height: 1.7; margin: 0; }
.values-section { padding: 80px 0; background: #fff; }
.values-timeline { position: relative; display: flex; flex-wrap: wrap; gap: 0; }
.values-timeline::before { content: ''; position: absolute; top: 38px; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #1a6b3a, #f5c518, #2e9e56, #f5c518, #1a6b3a); z-index: 0; }
.val-timeline-item { flex: 1; min-width: 160px; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.val-timeline-dot { width: 76px; height: 76px; border-radius: 50%; background: #fff; border: 4px solid #1a6b3a; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 28px; color: #1a6b3a; box-shadow: 0 4px 16px rgba(26,107,58,0.15); transition: background 0.3s, color 0.3s; }
.val-timeline-item:hover .val-timeline-dot { background: #1a6b3a; color: #fff; }
.val-timeline-item h5 { font-weight: 700; color: #1a6b3a; font-size: 15px; margin-bottom: 8px; }
.val-timeline-item p { font-size: 13px; color: #666; line-height: 1.6; }
.milestones-section { padding: 80px 0; background: #f8fdf9; }
.milestone-timeline { position: relative; padding: 0; }
.milestone-timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, #1a6b3a, #f5c518, #2e9e56); transform: translateX(-50%); }
.milestone-item { display: flex; align-items: flex-start; margin-bottom: 48px; position: relative; }
.milestone-item.right { flex-direction: row-reverse; }
.milestone-content { background: #fff; border-radius: 14px; padding: 24px 28px; width: calc(50% - 50px); box-shadow: 0 4px 20px rgba(26,107,58,0.10); position: relative; }
.milestone-item.right .milestone-content { margin-right: 50px; }
.milestone-item:not(.right) .milestone-content { margin-left: 50px; }
.milestone-dot { position: absolute; left: 50%; transform: translateX(-50%); width: 56px; height: 56px; border-radius: 50%; background: #1a6b3a; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 11px; z-index: 2; border: 4px solid #fff; box-shadow: 0 4px 12px rgba(26,107,58,0.3); text-align: center; line-height: 1.2; }
.milestone-year { font-size: 13px; color: #1a6b3a; font-weight: 700; margin-bottom: 4px; }
.milestone-content h5 { font-weight: 700; color: #222; margin-bottom: 6px; font-size: 16px; }
.milestone-content p { font-size: 14px; color: #666; margin: 0; line-height: 1.6; }
.cta-section { background: linear-gradient(135deg, #1a6b3a 0%, #2e9e56 100%); padding: 80px 0; text-align: center; color: #fff; }
.cta-section h2 { font-size: 38px; font-weight: 800; margin-bottom: 16px; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.btn-white { background: #fff; color: #1a6b3a; padding: 14px 36px; border-radius: 30px; font-weight: 700; font-size: 15px; text-decoration: none; display: inline-block; transition: background 0.3s, color 0.3s; margin: 6px; }
.btn-white:hover { background: #f5c518; color: #222; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; padding: 13px 36px; border-radius: 30px; font-weight: 700; font-size: 15px; text-decoration: none; display: inline-block; transition: all 0.3s; margin: 6px; }
.btn-outline-white:hover { background: #fff; color: #1a6b3a; }

/* Milestone responsive */
@media (max-width: 768px) {
    .values-timeline::before { display: none; }
    .val-timeline-item { min-width: 100%; margin-bottom: 24px; }
    .milestone-timeline::before { left: 28px; }
    .milestone-item, .milestone-item.right { flex-direction: column; padding-left: 70px; }
    .milestone-content,
    .milestone-item.right .milestone-content,
    .milestone-item:not(.right) .milestone-content { width: 100%; margin: 0; }
    .milestone-dot { left: 28px; top: 0; }
    .cta-section h2 { font-size: 26px; }
    .contact-form-card { padding: 28px 20px; }
}

/* ===== POLICY PAGES ===== */
.policy-block { margin-bottom: 36px; padding-bottom: 30px; border-bottom: 1px solid #f0f0f0; }
.policy-block:last-of-type { border-bottom: none; }
.policy-block h4 { font-size: 18px; font-weight: 700; color: #222; margin-bottom: 12px; }
.policy-block p { font-size: 15px; color: #555; line-height: 1.85; margin-bottom: 10px; }

/* ===== PROHIBITIONS PAGE ===== */
.prohib-card { background: #fff; border-radius: 14px; padding: 24px 22px; box-shadow: 0 4px 18px rgba(0,0,0,.07); border-left: 4px solid #e74c3c; height: 100%; transition: transform .3s, box-shadow .3s; }
.prohib-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.prohib-icon { font-size: 24px; color: #e74c3c; margin-bottom: 12px; }
.prohib-card h5 { font-size: 15px; font-weight: 700; color: #222; margin-bottom: 8px; }
.prohib-card p { font-size: 13px; color: #666; line-height: 1.7; margin: 0; }

/* ===== DISTRIBUTOR OBLIGATIONS PAGE ===== */
.obligation-card { background: #fff; border-radius: 14px; padding: 26px 24px; box-shadow: 0 4px 18px rgba(26,107,58,.09); border-left: 4px solid #1a6b3a; height: 100%; position: relative; transition: transform .3s, box-shadow .3s; }
.obligation-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(26,107,58,.16); }
.obligation-num { font-size: 32px; font-weight: 900; color: rgba(26,107,58,.12); line-height: 1; margin-bottom: 8px; }
.obligation-card h5 { font-size: 15px; font-weight: 700; color: #222; margin-bottom: 8px; }
.obligation-card p { font-size: 13px; color: #666; line-height: 1.7; margin: 0; }


/* ===== CERTIFICATE GALLERY ===== */
.cert-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
    border: 2px solid #e0f0e8;
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(26,107,58,0.18);
    border-color: #1a6b3a;
}

.cert-img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.cert-card:hover .cert-img {
    transform: scale(1.06);
}

.cert-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,107,58,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 26px;
    color: #fff;
}

.cert-card:hover .cert-overlay {
    opacity: 1;
}

@media (max-width: 576px) {

}
