        :root {
            --green: #16a34a;
            --green-dark: #15803d;
            --green-light: #dcfce7;
            --gold: #ca8a04;
            --gold-light: #fef9c3;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            color: #1e293b;
        }

        /* ===== NAVBAR ===== */
        /* .navbar {
            background: linear-gradient(135deg, #0b0c0b, #0a0a0a) !important
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.15);
        } */
.navbar {
    background: #000102;
    backdrop-filter: blur(10px);
    padding: 10px 0;
    transition: .3s;
}

        .navbar-brand {
            font-size: 1.3rem;
            font-weight: 800;
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand .brand-icon {
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .nav-link {
            font-weight: 500;
            padding: 0.4rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            color: rgba(255,255,255,0.85) !important;
        }

        .nav-link:hover, .nav-link.active {
            background: rgba(255,255,255,0.15);
            color: #fff !important;
        }

        /* ===== HERO ===== */
        /* .hero {
            background-image: linear-gradient(135deg, #14532d 0%, #166534 50%, #15803d 100%);
            padding: 5rem 0 4rem;
            position: relative;
            overflow: hidden;
        } */
            .hero {
    background-image: url("../image/671a339a-61cb-422d-baf2-422017186240.png");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 700px;
}
            @media (max-width: 768px) {
                .hero {
                background-image: url("../image/671a339a-61cb-422d-baf2-422017186240.png");
                background-size: cover;
                background-position: top center;
                background-repeat: no-repeat;
                padding: 5rem 0 4rem;
                position: relative;
                overflow: hidden;
                min-height: 0px;
              }
            }
        .hero::before {
            content: '';
            position: absolute;
            top: -100px; right: -100px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
            border-radius: 50%;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -80px; left: -80px;
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(202,138,4,0.12), transparent 70%);
            border-radius: 50%;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: #fde047;
            padding: 0.4rem 1rem;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .hero-tag .dot {
            width: 7px; height: 7px;
            background: #4ade80;
            border-radius: 50%;
            animation: blink 1.5s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 1.2rem;
        }

        .hero h1 span {
            color: #fde047;
        }

        .hero .lead {
            color: rgba(255,255,255,0.8);
            font-size: 1.05rem;
            margin-bottom: 2rem;
            max-width: 480px;
        }

        .hero-img-wrap {
            position: relative;
        }

        .hero-img-wrap img {
            border-radius: 16px;
            /* box-shadow: 0 25px 60px rgba(0,0,0,0.4); */
            /* border: 3px solid rgba(255,255,255,0.15); */
        }
        .hero-badge-float {
            position: absolute;
            bottom: -15px;
            left: -15px;
            background: #fff;
            border-radius: 12px;
            padding: 0.7rem 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            font-size: 0.85rem;
        }

        .hero-badge-float .badge-icon {
            width: 36px; height: 36px;
            background: var(--green-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--green);
            font-size: 1.1rem;
        }

        .hero-badge-float strong { display: block; color: #1e293b; font-weight: 700; }
        .hero-badge-float small { color: #64748b; }

        .btn-gold {
            background: linear-gradient(135deg, #ca8a04, #d97706);
            color: #fff;
            font-weight: 700;
            padding: 0.75rem 1.8rem;
            border-radius: 10px;
            border: none;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(202,138,4,0.4);
            color: #fff;
        }

        .btn-outline-white {
            background: transparent;
            color: #fff;
            font-weight: 600;
            padding: 0.75rem 1.8rem;
            border-radius: 10px;
            border: 2px solid rgba(255,255,255,0.35);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-outline-white:hover {
            background: rgba(255,255,255,0.1);
            color: #fff;
            border-color: rgba(255,255,255,0.6);
        }

        /* ===== ABOUT / BUSINESS DETAILS ===== */
        #about {
            padding: 5rem 0;
            background: #f8fafc;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 0.5rem;
        }

        .section-subtitle {
            color: #64748b;
            font-size: 1rem;
        }

        .section-divider {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--green), #4ade80);
            border-radius: 4px;
            margin: 1rem auto 0;
        }

        .business-table {
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .business-table table {
            margin: 0;
        }

        .business-table th {
            background: #f1f5f9;
            color: #475569;
            font-weight: 600;
            font-size: 0.9rem;
            width: 40%;
            vertical-align: middle;
            padding: 0.85rem 1rem;
        }

        .business-table td {
            font-weight: 500;
            color: #1e293b;
            padding: 0.85rem 1rem;
            vertical-align: middle;
        }

        .business-table tr:hover td,
        .business-table tr:hover th {
            background: #f0fdf4;
        }

        .gst-number {
            font-family: 'Courier New', monospace;
            font-size: 0.95rem;
            background: #f0fdf4;
            color: var(--green-dark);
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .cert-img-wrap {
            position: relative;
        }

        .cert-img-wrap img {
            border-radius: 14px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            border: 2px solid #e2e8f0;
        }

        .cert-label {
            text-align: center;
            margin-top: 0.75rem;
            font-size: 0.85rem;
            color: #64748b;
            font-weight: 500;
        }

        /* ===== FEATURES ===== */
        .features-section {
            padding: 4.5rem 0;
            background: #fff;
        }

        .feature-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            border-color: var(--green);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(22,163,74,0.12);
        }

        .feature-icon-wrap {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            font-size: 1.6rem;
        }

        .feature-card h5 {
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.4rem;
        }

        .feature-card p {
            font-size: 0.88rem;
            color: #64748b;
            margin: 0;
        }

        /* ===== SERVICES ===== */
        #services {
            padding: 5rem 0;
            background: #f8fafc;
        }

        .service-card {
            background: #fff;
            border-radius: 16px;
            padding: 2.5rem 2rem;
            text-align: center;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            border-color: #bbf7d0;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
        }

        .service-card h4 {
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.75rem;
        }

        .service-card p {
            color: #64748b;
            font-size: 0.92rem;
            line-height: 1.7;
        }

        /* ===== CONTACT ===== */
        #contact {
            padding: 5rem 0;
            background: linear-gradient(135deg, #14532d, #166534);
        }

        .contact-info h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #000;
            margin-bottom: 1rem;
        }

        .contact-info .brand-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fde047;
            margin-bottom: 1.5rem;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1rem;
            color: rgba(255,255,255,0.85);
            font-size: 0.95rem;
        }

        .contact-detail .icon-wrap {
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.12);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fde047;
            flex-shrink: 0;
        }

        .contact-form-wrap {
            background: #fff;
            border-radius: 18px;
            padding: 2.5rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .contact-form-wrap .form-label {
            font-weight: 600;
            color: #374151;
            font-size: 0.9rem;
        }

        .contact-form-wrap .form-control {
            border: 1.5px solid #e5e7eb;
            border-radius: 10px;
            padding: 0.7rem 1rem;
            font-size: 0.95rem;
            transition: border-color 0.3s;
        }

        .contact-form-wrap .form-control:focus {
            border-color: var(--green);
            box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
        }

        .btn-submit {
            background: linear-gradient(135deg, #16a34a, #15803d);
            color: #fff;
            font-weight: 700;
            padding: 0.8rem;
            border-radius: 10px;
            border: none;
            width: 100%;
            font-size: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(22,163,74,0.4);
        }

        /* ===== FOOTER ===== */
        footer {
            background: #0f172a;
            color: rgba(255,255,255,0.7);
            padding: 2rem 0;
            text-align: center;
        }

        footer .gstin {
            display: inline-block;
            background: rgba(255,255,255,0.08);
            padding: 0.25rem 0.75rem;
            border-radius: 6px;
            font-family: 'Courier New', monospace;
            font-size: 0.85rem;
            color: #4ade80;
            margin-left: 5px;
        }

        footer .footer-brand {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .hero { padding: 4rem 0 3rem; }
            .hero-img-wrap { margin-top: 2.5rem; }
            .hero-badge-float { display: none; }
        }


           /* ===== PRODUCT CARDS ===== */
.product-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: #bbf7d0;
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #f1f5f9;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #16a34a;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-body {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #16a34a;
}

.product-btn {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-btn:hover {
    opacity: 0.9;
    color: #fff;
    transform: translateX(2px);
}

.logo{
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.navbar-nav .nav-link{
    color:#fff;
    font-weight:500;
    padding:10px 16px !important;
    transition:.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#b7ffb7;
}

.navbar-toggler{
    box-shadow:none !important;
}

.btn-success{
    background:#22c55e;
    border:none;
}

.btn-success:hover{
    background:#16a34a;
}

.about-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    height:100%;
    transition:.3s;
}

.about-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.about-tag{
    display:inline-block;
    background:#166534;
    color:#fff;
    padding:6px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
}

.about-title{
    font-size:38px;
    font-weight:700;
    color:#222;
    margin-bottom:10px;
}

.about-title span{
    color:#166534;
}

.about-line{
    width:70px;
    height:4px;
    background:#166534;
    border-radius:10px;
    margin-bottom:25px;
}

.about-card p{
    color:#666;
    font-size:16px;
    line-height:30px;
    text-align:justify;
    margin-bottom:18px;
}

.about-btn{
    display:inline-block;
    margin-top:10px;
    background:#166534;
    color:#fff;
    padding:12px 28px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    background:#084298;
    color:#fff;
    text-decoration:none;
}

.about-btn i{
    margin-left:8px;
}

@media(max-width:768px){

    .about-card{
        padding:25px;
    }

    .about-title{
        font-size:28px;
    }

    .about-card p{
        font-size:15px;
        line-height:28px;
    }
}

/* Products Dropdown */
.navbar .dropdown-menu{
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    padding: 10px 0;
    min-width: 280px;
}

.navbar .dropdown-item{
    padding: 10px 20px;
    font-size: 15px;
    transition: .3s;
}

.navbar .dropdown-item:hover{
    background: #2d8f45;
    color: #fff;
}

@media (min-width:992px){

.navbar .dropdown:hover>.dropdown-menu{
    display:block;
    margin-top:0;
}

}
/* ===========================
   Product Page
=========================== */

.blog-style-one{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
    margin-bottom:30px;
}

.blog-style-one:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.blog-style-one .thumb{
    overflow:hidden;
    position:relative;
}

.blog-style-one .thumb img{
    width:100%;
    height:325px;
    object-fit:cover;
    transition:.5s;
}

.blog-style-one:hover .thumb img{
    transform:scale(1.08);
}

.blog-style-one .info{
    padding:20px;
    text-align:center;
    margin:0 !important;
}

.blog-style-one .post-title{
    margin-bottom:20px;
}

.blog-style-one .post-title a{
    color:#222;
    font-size:22px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.blog-style-one:hover .post-title a{
    color:#2d8f45;
}

.blog-style-one .link{
    margin-top:10px;
}

.blog-style-one .link a{
    display:inline-block;
    background:#2d8f45;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.blog-style-one .link a:hover{
    background:#191627;
    color:#fff;
}

.blog-style-one .link span{
    margin-left:8px;
}

/* ===========================
   Breadcrumb
=========================== */

.breadcrumb-area{
    padding:120px 0;
    background-size:cover !important;
    background-position:center !important;
}

.breadcrumb-area h1{
    color:#fff;
    font-size:48px;
    font-weight:700;
}

.breadcrumb li,
.breadcrumb li a{
    color:#fff;
    font-size:16px;
}

.breadcrumb li.active{
    color:#f4c542;
}

/* ===========================
   Responsive
=========================== */

@media(max-width:991px){

.blog-style-one .thumb img{
    height:280px;
}

.breadcrumb-area{
    padding:90px 0;
}

.breadcrumb-area h1{
    font-size:36px;
}

}

@media(max-width:767px){

.blog-style-one .thumb img{
    height:240px;
}

.blog-style-one .post-title a{
    font-size:20px;
}

.blog-style-one .link a{
    width:100%;
    text-align:center;
}

.breadcrumb-area h1{
    font-size:30px;
}

}

/* ==========================
   Breadcrumb
========================== */

.fruits-breadcrumb{
    position:relative;
    background:url('../image/hq720.jpg') center center/cover no-repeat;
    padding:170px 0 120px;
    overflow:hidden;
}

.fruits-breadcrumb .breadcrumb-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(18,35,20,.75),
        rgba(32,80,45,.60)
    );
}

.fruits-breadcrumb .container{
    position:relative;
    z-index:2;
}

.fruits-breadcrumb h1{
    color:#fff;
    font-size:54px;
    font-weight:700;
    margin-bottom:20px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.fruits-breadcrumb .breadcrumb{
    background:none;
    margin:0;
    padding:0;
}

.fruits-breadcrumb .breadcrumb li,
.fruits-breadcrumb .breadcrumb li a{
    color:#fff;
    font-size:17px;
    text-decoration:none;
}

.fruits-breadcrumb .breadcrumb li.active{
    color:#FFD54F;
}

.fruits-breadcrumb .breadcrumb-item + .breadcrumb-item::before{
    color:#fff;
}

.fruits-breadcrumb .breadcrumb a:hover{
    color:#FFD54F;
}

@media(max-width:991px){

.fruits-breadcrumb{
    padding:120px 0 90px;
}

.fruits-breadcrumb h1{
    font-size:38px;
}

}

@media(max-width:767px){

.fruits-breadcrumb{
    padding:100px 0 70px;
}

.fruits-breadcrumb h1{
    font-size:30px;
}

.fruits-breadcrumb .breadcrumb li,
.fruits-breadcrumb .breadcrumb li a{
    font-size:15px;
}

}


.gallery-breadcrumb{
    position:relative;
    background:url('image/vegetable-fruit-powders-500x500.webp') center center/cover no-repeat;
    padding:170px 0 120px;
}

.gallery-breadcrumb .breadcrumb-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.gallery-breadcrumb .container{
    position:relative;
    z-index:2;
}

.gallery-breadcrumb h1{
    color:#fff;
    font-size:52px;
    font-weight:700;
}

.gallery-breadcrumb .breadcrumb{
    background:none;
    margin-top:15px;
}

.gallery-breadcrumb .breadcrumb li,
.gallery-breadcrumb .breadcrumb li a{
    color:#fff;
    text-decoration:none;
}

.gallery-breadcrumb .breadcrumb li.active{
    color:#FFD54F;
}


/*=========================
Gallery
=========================*/

.gallery-section{
    padding:80px 0;
    background:#fff;
}

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.gallery-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.4s;
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay a{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#28a745;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    text-decoration:none;
    transition:.3s;
}

.gallery-overlay a:hover{
    background:#fff;
    color:#28a745;
}

@media(max-width:768px){

.gallery-card img{
    height:220px;
}

.gallery-breadcrumb h1{
    font-size:38px;
}

}


/*==========================
Product Cards
==========================*/

.blog-style-one{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.blog-style-one:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.18);
}

.blog-style-one .thumb{
    overflow:hidden;
}

.blog-style-one .thumb img{
    transition:.5s;
}

.blog-style-one:hover img{
    transform:scale(1.08);
}

.blog-style-one .info{
    padding:22px;
    text-align:center;
}

.post-title{
    margin-bottom:20px;
}

.post-title a{
    color:#222;
    font-size:24px;
    font-weight:700;
    text-decoration:none;
}

.post-title a:hover{
    color:#2f8f46;
}

.link a{
    background:#2f8f46;
    border:none;
    transition:.3s;
}

.link a:hover{
    background:#191627;
}

@media(max-width:768px){

.vegetables-breadcrumb{
    padding:110px 0 70px;
}

.vegetables-breadcrumb h1{
    font-size:34px;
}

}
