body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
}

/* ==========================
   RED CHILLI PRODUCT SECTION
========================== */
.chilli-product-section {
    background: linear-gradient(to bottom, #fff7f5, #fff3f0);
    padding: 80px 0;
}

.chilli-product-section .product-image img {
    width: 100%;
    max-width: 650px;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    transition: 0.5s ease;
}

.chilli-product-section .product-image img:hover {
    transform: scale(1.05);
}

.chilli-product-section .product-content {
    padding-left: 30px;
}

.chilli-product-section .product-tag {
    background: linear-gradient(135deg, #b22222, #ff4d4d);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.chilli-product-section .product-title {
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0;
    color: #7f1a1a;
}

.chilli-product-section .product-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.chilli-product-section .btn-primary {
    background: linear-gradient(135deg, #b22222, #ff4d4d);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: #fff;
    transition: 0.4s;
}

.chilli-product-section .btn-primary:hover {
    transform: translateY(-3px);
}

/* ===============================
   RED CHILLI HIGHLIGHT SECTION
=============================== */
.chilli-highlight-section {
    background: linear-gradient(to right, #fff2f0, #ffffff);
    padding: 90px 0;
}

.chilli-highlight-section .highlight-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #b22222;
}

.chilli-highlight-section .highlight-header p {
    max-width: 750px;
    margin: auto;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.chilli-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);
    text-align: center;
}

.chilli-highlight-section .highlight-card:hover {
    transform: translateY(-10px);
    background: #ffe6e6;
}

.chilli-highlight-section .highlight-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.chilli-highlight-section .highlight-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* ================================
   RED CHILLI VARIETIES
================================ */
.chilli-varieties-section {
    background: linear-gradient(to right, #fff6f5, #ffffff);
    padding: 90px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.chilli-varieties-section .variety-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.chilli-varieties-section .variety-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    transition: 0.4s ease;
    width: 300px;
    min-height: auto; /* remove fixed extra height */
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* top aligned */
    align-items: center;
}

.chilli-varieties-section .variety-card img {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 8px; /* compact spacing */
    transition: 0.3s ease;
}

.chilli-varieties-section .variety-card h4 {
    font-weight: 600;
    margin-bottom: 4px;
    color: #b22222;
    font-size: 18px;
}

.chilli-varieties-section .variety-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.5;
}

/* VIEW DETAILS BUTTON */
.variety-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #b22222;
    background: none;
    border: 1px solid #b22222;
    padding: 6px 18px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s ease;
    margin-top: 0; /* remove extra space */
}

.variety-btn:hover {
    background: #b22222;
    color: #fff;
    letter-spacing: 1px;
}

.chilli-varieties-section .variety-card:hover {
    background: #ffe6e6;
    transform: translateY(-8px);
}

/* ================================
   RED CHILLI BENEFITS
================================ */
.chilli-benefits-section {
    background: #fff2f0;
    padding: 90px 0;
}

.chilli-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;
}

.chilli-benefits-section .benefit-box:hover {
    background: #ffe6e6;
    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) {
    .chilli-product-section .product-content {
        padding-left: 0;
        text-align: center;
        margin-top: 20px;
    }

    .chilli-product-section .product-image img {
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }

    .chilli-varieties-section .variety-card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .chilli-product-section {
        padding: 60px 0;
        text-align: center;
    }

    .chilli-product-section .product-title {
        font-size: 26px;
    }

    .chilli-highlight-section .highlight-header h2,
    .section-title {
        font-size: 24px;
    }

    .chilli-highlight-section .highlight-header p {
        font-size: 14px;
    }

    .chilli-varieties-section .variety-card {
        width: 100%;
        min-height: auto;
        padding: 15px 10px;
    }

    .chilli-varieties-section .variety-card img {
        max-height: 140px;
    }

    .chilli-benefits-section .benefit-box {
        margin-bottom: 15px;
    }
}
/* ==============================
   WHY CHOOSE US SECTION
================================ */
.whychoose-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* space between boxes */
    padding: 60px 0;
}

.whychoose-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    flex: 1 1 280px; /* flexible width but minimum 280px */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* content aligned to top */
    align-items: center;
    text-align: center;
    min-height: 250px; /* uniform height for all cards */
}

.whychoose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

.whychoose-card .icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.whychoose-card h4 {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 18px;
}

.whychoose-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0; /* remove extra space */
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .whychoose-card {
        flex: 1 1 100%;
        min-height: auto;
        padding: 20px 15px;
        margin-bottom: 15px;
    }
}

/* ==============================
   WHY CHOOSE US SECTION (ABSOLUTE SAME HEIGHT)
================================ */

.whychoose-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 60px 0;
}

/* IMPORTANT */
.whychoose-section > div {
    display: flex;
}

.whychoose-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    text-align: center;
    width: 100%;
    height: 100%;   /* FORCE FULL HEIGHT */
}

.whychoose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

.whychoose-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.whychoose-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.whychoose-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .whychoose-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .whychoose-section {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   WHY CHOOSE US SECTION (FINAL FIX)
================================ */

.whychoose-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 60px 0;
    align-items: stretch;
}

.whychoose-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    text-align: center;
    height: 100%;
}

.whychoose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .whychoose-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .whychoose-section {
        grid-template-columns: 1fr;
    }
}

/* FORCE EQUAL HEIGHT - HIGHLIGHT SECTION */

.chilli-highlight-section .row {
    display: flex;
    flex-wrap: wrap;
}

.chilli-highlight-section .col-md-3 {
    display: flex;
}

.highlight-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
