﻿/* Background section with image and overlay */
.mn-hero-section {
    background: url('/Content/Images/micronubc.jpg') no-repeat center center/cover;
    padding: 100px 0;
    position: relative;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.mn-hero-overlay {
    background: rgba(0, 0, 0, 0.75);
    padding: 60px 30px;
    max-width: 1100px;
    margin: auto;
    border-radius: 16px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
}

/* Animation */
.mn-hero-content {
    animation: fadeInUp 1.2s ease-out both;
}

/* Heading styles */
.mn-heading {
    font-size: 42px;
    text-align: center;
    font-weight: 700;
    color: #aaffdd;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Intro paragraph */
.mn-intro {
    font-size: 18px;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #e0ffe6;
}

/* Points and details */
.mn-points p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #c0f7db;
}

/* List styling */
.mn-points ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

    .mn-points ul li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
        font-weight: 500;
        color: #d0ffec;
    }

        .mn-points ul li::before {
            content: "✔️";
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 18px;
            color: #96fbc4;
        }

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mn-hero-overlay {
        padding: 40px 20px;
    }

    .mn-heading {
        font-size: 30px;
    }

    .mn-intro,
    .mn-points p,
    .mn-points ul li {
        font-size: 15px;
    }
}
.micronutrient-products {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2f4f4f;
    margin-bottom: 40px;
    position: relative;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.product-image img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-title {
    font-size: 1.1rem;
    color: #006400;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-detail,
.product-pack {
    font-size: 0.95rem;
    color: #555;
    margin: 2px 0;
}
/* Section */
.micronutrient-products {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f9f1, #ffffff);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1b4332;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

    .section-title::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        background: #2d6a4f;
        margin: 15px auto 0;
        border-radius: 2px;
    }

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

    .product-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

/* Product Image */
.product-image {
    width: 100%;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f6f6f6;
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.5s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Product Info */
.product-info {
    padding: 25px;
    text-align: center;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d6a4f;
    margin-bottom: 12px;
}

.product-detail {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.product-pack {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1b4332;
    display: inline-block;
    padding: 6px 14px;
    background: #e9f5ec;
    border-radius: 12px;
}
/* Section Background */
.micronutrient-products {
    padding: 60px 20px;
    background-color: #fdfdfd;
}

.section-heading {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 40px;
}

/* Product Card Styling */
.product-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    }

.image-wrapper {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.product-card:hover .product-img {
    transform: scale(1.08) translateY(-5px);
}

/* Shadow base under product */
.product-base {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 18px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 80%);
    border-radius: 50%;
    z-index: 1;
}

/* Titles and details */
.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2e7d32;
    margin-top: 10px;
}

.card-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    margin: 8px 0;
    line-height: 1.5;
}

.card-pack {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}
