
/* =========================
   ABOUT PAGE SCOPE (CRITICAL)
========================= */

.about-page{
    background:#f6f6f9;
}

/* =========================
   HERO
========================= */

.about-page .about-hero{
    background: linear-gradient(rgba(134,47,186,0.85), rgba(90,24,154,0.85)),
    url('../images/container-bg.jpg');
    background-size:cover;
    background-position:center;
    text-align:center;
    color:white;
    padding:100px 20px;
}

.about-page .hero-content{
    max-width:800px;
    margin:auto;
}

.about-page .about-hero h1{
    font-size:2.8rem;
}

.about-page .about-hero span{
    color:#facc15;
}

/* =========================
   ABOUT SECTION
========================= */

.about-page .about-section{
    max-width:1200px;
    margin:auto;
    padding:70px 20px;
}

.about-page .about-container{
    display:flex;
    gap:40px;
    align-items:center;
}

.about-page .about-text{
    flex:1;
}

.about-page .about-text h2{
    color:#862fba;
    margin-bottom:15px;
}

.about-page .about-text p{
    color:#555;
    line-height:1.8;
    margin-bottom:10px;
}

.about-page .about-image{
    flex:1;
}

.about-page .about-image img{
    width:100%;
    border-radius:15px;
}

/* =========================
   STATS
========================= */

.about-page .stats-section{
    max-width:1200px;
    margin:auto;
    padding:0 20px 70px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.about-page .stat-box{
    background:white;
    padding:30px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.about-page .stat-box h3{
    color:#862fba;
    font-size:2.5rem;
}

/* =========================
   VISION SECTION
========================= */

.about-page .vision-section{
    max-width:1200px;
    margin:auto;
    padding:0 20px 70px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.about-page .vm-box{
    background:white;
    padding:40px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.about-page .vm-box i{
    font-size:40px;
    color:#862fba;
    margin-bottom:15px;
}

/* =========================
   FOOTER
========================= */

.about-page .main-footer{
    background:#1a1a1a;
    color:white;
    display:flex;
    justify-content:space-between;
    padding:20px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .about-page .about-container{
        flex-direction:column;
    }

    .about-page .stats-section{
        grid-template-columns:1fr;
    }

    .about-page .vision-section{
        grid-template-columns:1fr;
    }

    .about-page .about-hero h1{
        font-size:2rem;
    }
}