﻿/* General Reset */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
}

/* Hero Section */
.about-hero {
    background-image: url('Images/aboutbc.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .about-hero .overlay {
        background-color: rgba(0, 0, 0, 0.5);
        padding: 2rem;
        border-radius: 10px;
        color: #fff;
        text-align: center;
    }

.hero-heading {
    font-size: 2.5rem;
    animation: fadeInDown 1.5s ease-in-out;
}

/* About Section */
.about-section {
    padding: 4rem 2rem;
    background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

.about-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.about-image {
    flex: 1 1 40%;
    text-align: center;
}

    .about-image img {
        width: 100%;
        max-width: 500px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

.about-text {
    flex: 1 1 50%;
}

    .about-text h2 {
        color: #2c3e50;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        color: #34495e;
        margin-bottom: 1rem;
    }

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.fadeInRight {
    animation-name: fadeInRight;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.seeds-section {
    padding: 80px 20px;
    color: #fff;
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

    .seeds-section .container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .seeds-section .title {
        font-size: 40px;
        font-weight: bold;
        margin-bottom: 50px;
        text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        animation: fadeInDown 1s ease-out;
    }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.4s ease, box-shadow 0.3s;
    cursor: pointer;
    opacity: 0;
    animation: fadeUp 1s forwards;
}

    .card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .card h3 {
        font-size: 18px;
        font-weight: 600;
        line-height: 1.4;
    }

    .card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 12px 24px rgba(0,0,0,0.5);
    }

/* Animation Delays */
.delay-0 {
    animation-delay: 0.2s;
}

.delay-1 {
    animation-delay: 0.4s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.8s;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
