/* ====== GENERAL STYLES ====== */
.about-page {
    font-family: "Poppins", sans-serif;
    color: #f5f5f5;
    background-color: #00b351;
    overflow-x: hidden;
}

/* ====== HERO SECTION ====== */
.about-hero {
    position: relative;
    background: url('/images/main-header-page.jpg') no-repeat center center;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

    .about-hero .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
    }

    .about-hero .hero-content {
        position: relative;
        z-index: 2;
    }

    .about-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        color: #ffcf5c;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .about-hero p {
        font-size: 1.2rem;
        color: #e8e8e8;
        font-weight: 300;
    }

/* ====== SECTION TITLE ====== */
.section-title {
    text-align: center;
    color: #ffcf5c;
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

    .section-title::after {
        content: "";
        display: block;
        width: 80px;
        height: 3px;
        background: #ffcf5c;
        margin: 10px auto 0;
        border-radius: 5px;
    }

/* ====== ABOUT TEXT ====== */
.about-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 20px 60px;
    text-align: center;
    line-height: 1.8;
}

    .about-intro p {
        font-size: 1rem;
        color: #f0e6d2;
        margin-bottom: 18px;
    }

    .about-intro strong {
        color: #ffcf5c;
    }

/* Fade-up Animation */
.fade-up {
    animation: fadeUp 1.5s ease both;
}

@keyframes fadeUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ====== STATS SECTION ====== */
.stats-section {
    padding: 20px 0;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-card {
    background: #292929;
    padding: 30px 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(255, 207, 92, 0.15);
    }

    .stat-card h3 {
        color: #ffcf5c;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .stat-card p {
        color: #e8e8e8;
        font-size: 1.1rem;
        font-weight: 300;
    }

/* ====== CTA SECTION ====== */
.cta {
    background: url('/images/cta-bg.jpg') center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    position: relative;
}

    .cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgb(15 119 62);
    }

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

    .cta-content h2 {
        color: #ffcf5c;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .cta-content p {
        font-size: 1.1rem;
        color: #f2f2f2;
        margin-bottom: 30px;
        line-height: 1.8;
    }

.cta-btn {
    background-color: #ffcf5c;
    color: #222;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .cta-btn:hover {
        background-color: #e3b94e;
        color: #000;
        transform: scale(1.05);
    }

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}
