﻿/* Hero Section */
.about-hero {
    position: relative;
    height: 300px;
    background: url('/Content/Images/sustain.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .about-hero .overlay {
        background: rgba(0,0,0,0.5);
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.hero-heading {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    animation: fadeInDown 1.5s ease;
}

/* About Section */
.about-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.about-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.about-text {
    flex: 1;
}

    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: #283593;
    }

    .about-text p {
        line-height: 1.6;
        margin-bottom: 15px;
    }

/* Crops Section */


/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.crops-section,
.processing-section {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
}

.section-heading {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2b6a3f;
    font-weight: bold;
    animation: fadeInDown 1s ease-in-out;
}

.crops-grid,
.processing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.crop-card,
.process-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeInUp 1.2s ease-in-out;
}

    .crop-card:hover,
    .process-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    }

.crop-img,
.process-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: transform 0.5s ease;
}

.crop-card:hover .crop-img,
.process-card:hover .process-img {
    transform: scale(1.05);
}

h3 {
    font-size: 1.4rem;
    color: #1e4d2b;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    color: #444;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.view-more-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #ff4081, #f50057);
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

    /* Hover Effect */
    .view-more-btn:hover {
        background: linear-gradient(135deg, #f50057, #ff4081);
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    }

    /* Button Animation Glow */
    .view-more-btn::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        transform: skewX(-20deg);
    }

    /* Moving Shine Effect */
    .view-more-btn:hover::after {
        left: 120%;
        transition: left 0.6s ease;
    }
.mission-vision-section {
    background: linear-gradient(to right, #f0f8f5, #ffffff);
    padding: 80px 20px;
    font-family: "Poppins", sans-serif;
}

.mv-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-in-out;
}

    .mv-card:nth-child(even) {
        flex-direction: row-reverse;
    }

.mv-image img {
    width: 380px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.6s ease;
}

    .mv-image img:hover {
        transform: scale(1.05) rotate(-2deg);
    }

.mv-content {
    flex: 1;
    text-align: left;
}

.mv-title {
    font-size: 32px;
    font-weight: bold;
    color: #1a4d2e;
    margin-bottom: 20px;
    position: relative;
}

    .mv-title::after {
        content: "";
        position: absolute;
        width: 60px;
        height: 4px;
        background: #27ae60;
        left: 0;
        bottom: -10px;
        border-radius: 2px;
    }

.mv-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    max-width: 600px;
    animation: textFade 1.5s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .mv-card {
        flex-direction: colu


