﻿/* ===== HERO BANNER ===== */
.hero-banner {
    background-image: url('../Content/Images/cotton (2).jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;
}

    .hero-banner .overlay {
        background: rgba(0,0,0,0.5);
        padding: 3rem 2rem;
        border-radius: 15px;
    }

    .hero-banner h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #16a34a;
    }

    .hero-banner p {
        font-size: 1.3rem;
        color: #fff;
    }

/* COMPANY INFO */
.company-info {
    padding: 80px 10%;
    background: #f8fafc;
}

.info-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.info-text {
    flex: 1 1 50%;
    min-width: 300px;
}

    .info-text h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #1e3a8a;
    }

    .info-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 15px;
        color: #374151;
    }

.info-image {
    flex: 1 1 40%;
    text-align: center;
}

    .info-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

/* ACCORDION */
.accordion-section {
    padding: 60px 10%;
    background: #eef2f7;
}

    .accordion-section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 40px;
        color: #1e3a8a;
    }

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.accordion-header {
    padding: 18px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    background: #16a34a;
    color: #fff;
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.3s;
}

    .accordion-header:hover {
        background: #15803d;
    }

.accordion-body {
    padding: 15px 25px;
    display: none;
    background: #f9fafb;
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
}

/* STATISTICS SECTION */
.stats-section {
    padding: 80px 10%;
    background: #fef9f3;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.stat-card {
    background: #16a34a;
    color: #fff;
    padding: 35px 25px;
    flex: 1 1 250px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

    .stat-card h3 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .stat-card p {
        font-size: 1rem;
    }

    .stat-card:hover {
        transform: translateY(-8px) scale(1.03);
    }

/* ANIMATIONS */
.animated {
    opacity: 0;
    transition: all 0.6s ease-in-out;
}

.fadeInLeft {
    transform: translateX(-40px);
    animation: fadeLeft 1s forwards;
}

.fadeInRight {
    transform: translateX(40px);
    animation: fadeRight 1s forwards;
}

.fadeInUp {
    transform: translateY(30px);
    animation: fadeUp 1s forwards;
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .info-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-banner h1 {
        font-size: 2rem;
    }
}
