﻿/* Product Section */
.product-section {
    position: relative;
    background-image: url('/Content/Images/mission.jpg'); /* Best background (farm/green field) */
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 60, 30, 0.6);
    z-index: 1;
}

.product-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 800;
    animation: fadeDown 1.2s ease-in-out;
}

.product-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #d4f8e8;
}

/* Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Card */
.product-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(6px);
    animation: fadeUp 1s ease-in-out;
}

    .product-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    }


