@import url("./components/header.css");
@import url("./components/footer.css");

/* =====================================================
   PAGE BASE
===================================================== */
.about-us-section {
    background: #fff;
}

/* =====================================================
   HERO SECTION (FIXED HEIGHT – NOT TOO TALL)
===================================================== */
.about-us-hero {
    position: relative;
    min-height: 30vh;              /* balanced height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    margin-top: -170px;
}

.about-us-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* DARK GRADIENT OVERLAY */
.about-us-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.25) 100%
    );
    z-index: 1;
}

/* HERO CONTENT */
.about-us-hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 4rem 1rem;
}

.about-us-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    margin-top: 180px;
}

.about-us-hero p {
    font-size: 1.15rem;
    opacity: 0.95;
}

/* =====================================================
   MAIN CONTENT
===================================================== */
.py-6 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.about-content-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* =====================================================
   STATS SECTION
===================================================== */
.stats-section {
    background: #f1f1f1;
    color: #046104;
    padding: 2rem 0;
}

.stats-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.stats-section p {
    font-size: 1.05rem;
    opacity: 0.9;
}

/* =====================================================
   MOBILE OPTIMIZATION
===================================================== */
@media (max-width: 768px) {

    .about-us-hero {
        min-height: auto;
        padding: 4rem 0 3.5rem;
    }

    .about-us-hero h1 {
        font-size: 2.2rem;
    }

    .about-us-hero p {
        font-size: 1rem;
    }

    .about-content-image img {
        height: 300px;
    }

    .stats-section h2 {
        font-size: 2.4rem;
    }
}
