/* ==========================
   GLOBAL STYLES
========================== */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
}

.moringa-product-section {
    display: flex;
    align-items: center;       /* Vertical alignment */
    justify-content: center;   /* Horizontal centering if needed */
    gap: 30px;                 /* Space between image and content */
    flex-wrap: wrap;           /* Responsive for small screens */
}

.moringa-product-section .product-content {
    padding-left: 0;           /* Remove extra padding */
    flex: 1;                   /* Take remaining space */
    min-width: 250px;          /* Ensure it doesn’t shrink too much */
}

.moringa-product-section .product-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==========================
   MORINGA PRODUCT SECTION
========================== */
.moringa-product-section {
    background: linear-gradient(to bottom, #f8fdf9, #eef7f1);
    padding: 80px 0;
}

.moringa-product-section .product-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.5s ease;
}

.moringa-product-section .product-image img:hover {
    transform: scale(1.05);
}



.moringa-product-section .product-tag {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.moringa-product-section .product-title {
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0;
    color: #234220;
}

.moringa-product-section .product-desc {
    font-size: 15px;
    line-height: 1.8;
    color:#555;
}

.moringa-product-section .btn-primary {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: #fff;
    transition: 0.4s;
}

.moringa-product-section .btn-primary:hover {
    transform: translateY(-3px);
}

/* ==========================
   MORINGA HIGHLIGHT SECTION
========================== */
.moringa-highlight-section {
    background: linear-gradient(to right, #f1fff4, #ffffff);
    padding: 90px 0;
}

.moringa-highlight-section .highlight-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2e7d32;
}

.moringa-highlight-section .highlight-header p {
    max-width: 750px;
    margin: auto;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.moringa-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;
}

.moringa-highlight-section .highlight-card:hover {
    transform: translateY(-10px);
    background: #e8f5e9;
}

.moringa-highlight-section .highlight-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.moringa-highlight-section .highlight-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* ==========================
   MORINGA VARIETIES SECTION
========================== */
.moringa-varieties-section {
    background: linear-gradient(to right, #f4fbf6, #ffffff);
    padding: 90px 0;
}

.moringa-varieties-section .variety-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.moringa-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;
}

.moringa-varieties-section .variety-card img {
    width: 150px;        /* FIXED WIDTH */
    height: 150px;       /* FIXED HEIGHT */
    object-fit: contain; /* KEEP PROPORTION */
    margin: 0 auto 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.moringa-varieties-section .variety-card:hover img {
    transform: scale(1.08);
}

.moringa-varieties-section .variety-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #234220;
}

.moringa-varieties-section .variety-card p {
    font-size: 15px;
    color: #555;
}

.moringa-varieties-section .variety-card:hover {
    background: #eefaf2;
    transform: translateY(-8px);
}

.moringa-varieties-section .variety-cta {
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
    transition: 0.3s;
}

.moringa-varieties-section .variety-card:hover .variety-cta {
    letter-spacing: 1px;
}

/* ==========================
   MORINGA BENEFITS SECTION
========================== */
.moringa-benefits-section {
    background: #f4fff7;
    padding: 90px 0;
}

.moringa-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;
}

.moringa-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) {
    .moringa-product-section .product-content {
        padding-left: 0;
        text-align: center;
        margin-top: 20px;
    }

    .moringa-product-section .product-image img {
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .moringa-varieties-section .variety-card img {
        width: 130px;
        height: 130px;
    }

    .moringa-varieties-section .variety-card {
        padding: 30px 20px;
        min-height: auto;
    }

    .moringa-product-section .product-title {
        font-size: 26px;
    }

    .moringa-highlight-section .highlight-header h2,
    .section-title {
        font-size: 24px;
    }

    .moringa-highlight-section .highlight-header p {
        font-size: 14px;
    }

    .moringa-benefits-section .benefit-box {
        margin-bottom: 15px;
    }
}