    /* Google Font */
    @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

    /* Bootstrap 5.3.2 */
    @import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');

    /* Font Awesome 6.5.0 */
    @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');


    /* 1. GLOBAL VARIABLES & RESET */
    :root {
        --primary-green: #1a9d4b;
        --dark-green: #10632f;
        --bg-light: #f8faf9;
        --gold: #f1c40f;
        --text-dark: #2d3436;
        --text-grey: #636e72;
    }

    body {
        font-family: 'Plus Jakarta Sans', sans-serif;
        background-color: var(--bg-light);
        color: var(--text-dark);
        margin: 0;
        padding: 0;
    }

    a {
        text-decoration: none;
    }

    /* 2. NAVBAR */
    .navbar {
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        padding: 15px 0;
    }

    .nav-link {
        font-weight: 600;
        color: #4b5563 !important;
        transition: color 0.3s ease;
    }

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

    .active-menu {
        color: var(--primary-green) !important;
    }

    /* 3. LIVE MARKET STATUS BAR (From Style 2) */
    .market-status-bar {
        background: #1a1a1a;
        color: white;
        padding: 8px 0;
        font-size: 0.85rem;
        overflow: hidden;
        white-space: nowrap;
    }

    .trend-up {
        color: #ff6b6b;
    }

    .trend-down {
        color: #51cf66;
    }

    /* 4. HERO SECTION (Merged) */
    .hero-section {
        /* Using the image from Style 2, but compatible with both */
        background: linear-gradient(rgba(16, 99, 47, 0.9), rgba(26, 157, 75, 0.9)), url('https://images.unsplash.com/photo-1488459716781-31db52582fe9?auto=format&fit=crop&w=1200');
        background-size: cover;
        background-position: center;
        color: white;
        padding: 100px 0;
        text-align: center;
        margin-bottom: 40px;
        /* Kept the modern rounded bottom from Style 2 */
        border-radius: 0 0 30px 30px;
    }

    .hero-title {
        font-weight: 800;
        font-size: 3rem;
        /* Merged size */
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .hero-slogan {
        font-size: 1.2rem;
        opacity: 0.9;
        font-weight: 300;
    }

    /* 5. GENERIC CONTENT BOXES (From Style 1) */
    .content-box {
        background: white;
        border-radius: 16px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .highlight-text {
        color: var(--primary-green);
        font-weight: 700;
    }

    .cta-box {
        padding: 40px;
        border-radius: 16px;
        position: relative;
        overflow: hidden;
    }

    .cta-box h3 {
        font-weight: 800;
        margin-bottom: 15px;
    }

    /* 6. FEATURE CARDS (From Style 1) */
    .feature-card {
        background: white;
        padding: 30px 20px;
        border-radius: 12px;
        border: 1px solid #eee;
        text-align: center;
        height: 100%;
        transition: 0.3s;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        border-color: var(--primary-green);
    }

    .icon-wrapper {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: var(--primary-green);
    }

    .feature-title {
        font-weight: 700;
        margin-bottom: 10px;
        font-size: 1.2rem;
    }

    .feature-text {
        color: var(--text-grey);
        font-size: 0.95rem;
    }

    /* 7. CLIENT CARDS (From Style 2 - Slightly different style than Features) */
    .client-card {
        background: white;
        border: 1px solid #eee;
        border-radius: 15px;
        padding: 30px;
        text-align: center;
        transition: 0.3s;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    }

    .client-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary-green);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .client-icon {
        font-size: 2rem;
        color: var(--primary-green);
        margin: 0 auto 15px;
        background: #e8f5e9;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    /* 8. VEGETABLE LIST & SECTIONS (From Style 2) */
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-title {
        font-weight: 800;
        color: #1a1a1a;
        position: relative;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        display: block;
        width: 50px;
        height: 4px;
        background: var(--primary-green);
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .veg-list-item {
        background: white;
        border-bottom: 1px solid #eee;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: 0.2s;
    }

    .veg-list-item:hover {
        background: #f1f8f3;
        padding-left: 20px;
    }


    .inquire-btn-sm {
        background: var(--primary-green);
        color: white;
        border: none;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        text-decoration: none;
        transition: 0.3s;
    }

    .inquire-btn-sm:hover {
        background: var(--dark-green);
        color: white;
    }

    /* 9. STATS SECTION (From Style 2) */
    .stats-section {
        background: white;
        padding: 50px 0;
        margin-top: 50px;
        border-top: 1px solid #eee;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary-green);
    }

    /* 10. FLOATING WHATSAPP (Merged & Enhanced) */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: #25D366;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        text-decoration: none;
        transition: 0.3s;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        color: white;
    }

    /* Error Section Styling */
    .error-section {
        padding: 100px 0;
        min-height: 70vh;
        display: flex;
        align-items: center;
    }

    .error-icon {
        font-size: 5rem;
        color: #198754;
        /* Bootstrap Success Green */
        opacity: 0.8;
    }

    .error-code {
        font-size: 8rem;
        font-weight: 800;
        line-height: 1;
        color: #212529;
        margin-bottom: 0;
    }

    .policy-heading {
        color: #212529;
        font-weight: 700;
        margin-top: 30px;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #f1f1f1;
    }

    .content-box ul {
        padding-left: 20px;
        margin-bottom: 20px;
    }

    .content-box ul li {
        margin-bottom: 10px;
    }

    /* Grid Layout Styles */
    .veg-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #eee;
        background: #fff;
        border-radius: 12px;
        height: 100%;
        /* Ensures all cards in a row are same height */
        padding-bottom: 15px;
    }

    .veg-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-green);
    }

    .veg-icon {
        width: 100%;
        border-radius: 8px;
        object-fit: contain;
        margin-bottom: 15px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .veg-name {
        font-size: 1.25rem;
        font-weight: 800;
        color: #2d3436;
        margin-bottom: 5px;
    }

    .veg-hindi {
        font-size: 1rem;
        color: var(--primary-green);
        font-weight: 600;
    }

    .veg-desc {
        font-size: 0.9rem;
        color: #636e72;
        margin-bottom: 15px;
        min-height: 40px;
    }

    .inquire-btn-card {
        width: 100%;
        background-color: #f1f8f3;
        color: var(--dark-green);
        border: 1px solid var(--primary-green);
        font-weight: 700;
        padding: 10px;
        border-radius: 8px;
        transition: 0.3s;
    }

    .inquire-btn-card:hover {
        background-color: var(--primary-green);
        color: white;
    }

    .logo {
        width: 100px;
        padding: 0;
        margin: 0;
    }

    .list-unstyled li {
        margin-bottom: 10px;
    }

    .inner-section {
        padding-top: 0 !important;
    }

    @media (max-width: 550px) {
        .hero-section {
            padding: 50px 0;
        }

        .hero-title {
            font-size: 2rem;
        }

        .lead {
            font-size: 1rem;
        }

        .btn-group-lg>.btn,
        .btn-lg {
            font-size: 1rem;
        }
    }