﻿/* ===== Seed Varieties Section ===== */
.seed-varieties-section {
    background: linear-gradient(180deg, #f0f9ff, #e0f7f1);
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    color: #222;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a5e3f;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
    animation: fadeIn 1.2s ease;
}

/* Grid Layout */
.variety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    width: 90%;
    margin: 0 auto;
}

/* Variety Cards */
.variety-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.2s ease;
}

    .variety-card h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 15px;
        text-align: center;
    }

    .variety-card ul {
        list-style: none;
        padding: 0;
    }

        .variety-card ul li {
            background: rgba(255, 255, 255, 0.8);
            padding: 8px 12px;
            margin: 6px 0;
            border-radius: 8px;
            font-weight: 500;
            color: #333;
        }

    /* Hover Effects */
    .variety-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

/* Color Themes */
.green-gram {
    background: linear-gradient(135deg, #b2f2bb, #69db7c);
    border-left: 5px solid #2f9e44;
}

.research {
    background: linear-gradient(135deg, #a5d8ff, #4dabf7);
    border-left: 5px solid #1c7ed6;
}

.black-gram {
    background: linear-gradient(135deg, #ffd8a8, #ffa94d);
    border-left: 5px solid #e67700;
}

.chickpea {
    background: linear-gradient(135deg, #ffc9de, #f783ac);
    border-left: 5px solid #d6336c;
}

.wheat {
    background: linear-gradient(135deg, #fff3bf, #ffd43b);
    border-left: 5px solid #f08c00;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .variety-card {
        padding: 20px;
    }

        .variety-card h3 {
            font-size: 1.2rem;
        }
}
