body{
    font-family:'Poppins',sans-serif;
    background-color:#ffffff;
}

/* ==========================
   VEGETABLE PRODUCT SECTION
========================== */
.veg-product-section {
    background: linear-gradient(to bottom, #f5fff8, #edf7f0);
    padding: 80px 0;
}

.veg-product-section .product-image img {
    width: 100%;
    max-width: 650px; /* IMAGE SIZE INCREASED */
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    transition: 0.5s ease;
}

.veg-product-section .product-image img:hover {
    transform: scale(1.05);
}

.veg-product-section .product-content {
    padding-left: 30px; /* GAP REDUCED */
}

.veg-product-section .product-tag {
    background: linear-gradient(135deg, #388e3c, #66bb6a);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.veg-product-section .product-title {
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0;
    color:#234220;
}

.veg-product-section .product-desc {
    font-size: 15px;
    line-height: 1.8;
    color:#555;
}

.veg-product-section .btn-primary {
    background: linear-gradient(135deg, #388e3c, #66bb6a);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: #fff;
    transition: 0.4s;
}

.veg-product-section .btn-primary:hover {
    transform: translateY(-3px);
}

/* ===============================
   VEGETABLE HIGHLIGHT SECTION
=============================== */
.veg-highlight-section {
    background: linear-gradient(to right, #f1fff5, #ffffff);
    padding: 90px 0;
}

.veg-highlight-section .highlight-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2e7d32;
}

.veg-highlight-section .highlight-header p {
    max-width: 750px;
    margin: auto;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.veg-highlight-section .highlight-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    height: 100%;
    text-align: center;
}

.veg-highlight-section .highlight-card:hover {
    transform: translateY(-10px);
    background: #e8f5e9;
}

.veg-highlight-section .highlight-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.veg-highlight-section .highlight-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* ================================
   VEGETABLE VARIETIES
================================ */
.veg-varieties-section {
    background: linear-gradient(to right, #f4fbf8, #ffffff);
    padding: 90px 0;
}

.veg-varieties-section .variety-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.veg-varieties-section .variety-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    transition: 0.4s ease;
    height: 100%;
    min-height: 380px; /* ALL BOXES SAME SIZE */
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.veg-varieties-section .variety-card img {
    max-width: 200px; /* IMAGE SIZE INCREASED */
    width: 100%;
    margin: 0 auto 20px;
}

.veg-varieties-section .variety-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color:#234220;
}

.veg-varieties-section .variety-card p {
    font-size: 15px;
    color:#555;
}

.veg-varieties-section .variety-card:hover {
    background: #e8f6ed;
    transform: translateY(-8px);
}

.veg-varieties-section .variety-cta {
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
    transition: 0.3s;
}

.veg-varieties-section .variety-card:hover .variety-cta {
    letter-spacing: 1px;
}

/* ================================
   VEGETABLE BENEFITS
================================ */
.veg-benefits-section {
    background: #f4fff8;
    padding: 90px 0;
}

.veg-benefits-section .benefit-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    transition: 0.3s ease;
    text-align: center;
}

.veg-benefits-section .benefit-box:hover {
    background: #e3f4ea;
    transform: translateY(-5px);
}

/* ================================
   FADE ANIMATION
================================ */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
    .veg-product-section .product-content {
        padding-left: 0;
        text-align: center;
        margin-top: 20px;
    }

    .veg-product-section .product-image img {
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {

    .veg-product-section {
        padding: 60px 0;
        text-align: center;
    }

    .veg-product-section .product-title {
        font-size: 26px;
    }

    .veg-highlight-section .highlight-header h2,
    .section-title {
        font-size: 24px;
    }

    .veg-highlight-section .highlight-header p {
        font-size: 14px;
    }

    .veg-varieties-section .variety-card {
        min-height: auto;
        padding: 30px 20px;
    }

    .veg-varieties-section .variety-card img {
        max-width: 180px;
    }

    .veg-benefits-section .benefit-box {
        margin-bottom: 15px;
    }
}