/* ==========================================
ABOUT HERO
========================================== */

.about-hero{

    padding:100px 0;

    background:linear-gradient(
        135deg,
        #08111F,
        #102347
    );

    color:#fff;

}

.hero-badge{

    display:inline-block;

    background:#2563EB;

    color:#fff;

    padding:10px 24px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:25px;

}

.hero-title{

    font-size:3.5rem;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

}

.hero-title span{

    color:#38BDF8;

}

.hero-description{

    color:#CBD5E1;

    font-size:1.15rem;

    line-height:1.9;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-image{

    max-width:100%;

    animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}
/* ==========================================
FOUNDER
========================================== */

.about-founder{

    padding:100px 0;

    background:#ffffff;

}

.founder-image{

    width:380px;

    max-width:100%;

    border-radius:30px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.section-tag{

    display:inline-block;

    padding:8px 22px;

    border-radius:40px;

    background:#DBEAFE;

    color:#2563EB;

    font-weight:700;

    margin-bottom:18px;

}

.about-founder h2{

    font-size:2.8rem;

    font-weight:800;

    color:#0F172A;

    margin-bottom:10px;

}

.about-founder h5{

    color:#2563EB;

    margin-bottom:25px;

    font-weight:600;

}

.about-founder p{

    color:#64748B;

    font-size:1.08rem;

    line-height:1.9;

    margin-bottom:20px;

}

.founder-buttons{

    display:flex;

    gap:20px;

    margin-top:30px;

    flex-wrap:wrap;

}

/* ==========================================
JOURNEY
========================================== */

.journey-section{

    padding:100px 0;

    background:#ffffff;

}

.timeline{

    position:relative;

    max-width:900px;

    margin:auto;

}

.timeline::before{

    content:"";

    position:absolute;

    left:40px;

    top:0;

    bottom:0;

    width:4px;

    background:#2563EB;

}

.timeline-item{

    display:flex;

    gap:30px;

    margin-bottom:50px;

    position:relative;

}

.timeline-icon{

    width:80px;

    height:80px;

    min-width:80px;

    border-radius:50%;

    background:#2563EB;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:2rem;

    z-index:2;

}

.timeline-content{

    background:#F8FAFC;

    padding:30px;

    border-radius:20px;

    flex:1;

    box-shadow:0 12px 35px rgba(15,23,42,.08);

    transition:.35s;

}

.timeline-content:hover{

    transform:translateY(-8px);

}

.timeline-content span{

    color:#2563EB;

    font-weight:700;

}

.timeline-content h4{

    margin:10px 0 15px;

    font-weight:700;

    color:#0F172A;

}

.timeline-content p{

    color:#64748B;

    line-height:1.8;

}

@media(max-width:768px){

.timeline::before{

left:25px;

}

.timeline-item{

gap:20px;

}

.timeline-icon{

width:50px;

height:50px;

min-width:50px;

font-size:1.3rem;

}

}

/* ==========================================
SKILLS
========================================== */

.skills-section{

    padding:100px 0;

    background:#F8FAFC;

}

.skill-card{

    background:#ffffff;

    border-radius:25px;

    padding:40px;

    height:100%;

    text-align:center;

    transition:.35s;

    box-shadow:0 15px 35px rgba(15,23,42,.08);

}

.skill-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(15,23,42,.15);

}

.skill-icon{

    width:90px;

    height:90px;

    margin:auto auto 25px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #2563EB,
        #3B82F6
    );

    display:flex;

    justify-content:center;

    align-items:center;

}

.skill-icon i{

    color:#ffffff;

    font-size:2.4rem;

}

.skill-card h4{

    font-weight:700;

    color:#0F172A;

    margin-bottom:18px;

}

.skill-card p{

    color:#64748B;

    line-height:1.8;

}

/* ==========================================
ACHIEVEMENTS
========================================== */

.achievement-section{

    padding:100px 0;

    background:#ffffff;

}

.achievement-card{

    background:#F8FAFC;

    border-radius:24px;

    padding:40px 25px;

    text-align:center;

    transition:.35s;

    height:100%;

    box-shadow:0 12px 30px rgba(15,23,42,.08);

}

.achievement-card:hover{

    transform:translateY(-10px);

    background:#2563EB;

}

.achievement-card i{

    font-size:3rem;

    color:#2563EB;

    margin-bottom:20px;

    transition:.35s;

}

.achievement-card h3{

    font-size:2.7rem;

    font-weight:800;

    color:#0F172A;

    margin-bottom:12px;

    transition:.35s;

}

.achievement-card p{

    color:#64748B;

    line-height:1.7;

    margin:0;

    transition:.35s;

}

.achievement-card:hover i,
.achievement-card:hover h3,
.achievement-card:hover p{

    color:#ffffff;

}

/* ==========================================
RESEARCH
========================================== */

.research-section{

    padding:100px 0;

    background:#F8FAFC;

}

.research-card{

    background:#ffffff;

    padding:40px 35px;

    border-radius:24px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 15px 35px rgba(15,23,42,.08);

}

.research-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 55px rgba(15,23,42,.15);

}

.research-card i{

    font-size:3rem;

    color:#2563EB;

    margin-bottom:22px;

}

.research-card h4{

    color:#0F172A;

    font-weight:700;

    margin-bottom:18px;

}

.research-card p{

    color:#64748B;

    line-height:1.8;

}

/* ==========================================
            JOURNEY
========================================== */

.journey-section{

    padding:100px 0;

    background:#ffffff;

}

.timeline{

    position:relative;

    max-width:900px;

    margin:auto;

}

.timeline::before{

    content:"";

    position:absolute;

    left:110px;

    top:0;

    bottom:0;

    width:4px;

    background:#2563EB;

}

.timeline-item{

    display:flex;

    margin-bottom:60px;

    position:relative;

}

.timeline-year{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#2563EB;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    margin-right:50px;

    z-index:2;

    flex-shrink:0;

}

.timeline-content{

    background:#F8FAFC;

    padding:30px;

    border-radius:20px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    flex:1;

}

.timeline-content h4{

    font-weight:700;

    margin-bottom:12px;

    color:#0F172A;

}

.timeline-content p{

    color:#64748B;

    line-height:1.8;

}

@media(max-width:768px){

.timeline::before{

left:45px;

}

.timeline-item{

flex-direction:column;

padding-left:80px;

}

.timeline-year{

position:absolute;

left:0;

width:70px;

height:70px;

font-size:.85rem;

margin:0;

}

}

/* ===================================================
   MISSION SECTION
=================================================== */

.mission-section{

    padding:110px 0;

    background:#ffffff;

}

.section-tag{

    display:inline-block;

    padding:8px 20px;

    border-radius:40px;

    background:#DBEAFE;

    color:#2563EB;

    font-weight:700;

    margin-bottom:20px;

}

.mission-section h2{

    font-size:2.6rem;

    font-weight:800;

    color:#0F172A;

    margin-bottom:25px;

}

.mission-section p{

    color:#64748B;

    line-height:1.9;

    margin-bottom:20px;

}

.mission-image{

    border-radius:30px;

    box-shadow:0 25px 60px rgba(15,23,42,.15);

}

.mission-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:35px;

}

.mission-card{

    background:#F8FAFC;

    border-radius:20px;

    padding:25px;

    transition:.35s;

}

.mission-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(15,23,42,.12);

}

.mission-card i{

    font-size:2rem;

    color:#2563EB;

    margin-bottom:15px;

}

.mission-card h5{

    font-weight:700;

    margin-bottom:12px;

    color:#0F172A;

}

.mission-card p{

    margin:0;

}

@media(max-width:768px){

    .mission-grid{

        grid-template-columns:1fr;

    }

}

/*==================================================
            CORE VALUES
==================================================*/

.values-section{

    padding:100px 0;

    background:#ffffff;

}

.value-card{

    background:#ffffff;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 15px 35px rgba(15,23,42,.08);

}

.value-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(15,23,42,.15);

}

.value-icon{

    width:90px;

    height:90px;

    margin:auto auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        #2563EB,
        #3B82F6
    );

}

.value-icon i{

    color:#fff;

    font-size:2.5rem;

}

.value-card h4{

    margin:20px 0 15px;

    font-weight:700;

    color:#0F172A;

}

.value-card p{

    color:#64748B;

    line-height:1.8;

}

/*==================================================
        WHY CHOOSE SOHAIL ACADEMY
==================================================*/

.why-section{

    padding:110px 0;

    background:#F8FAFC;

}

.why-image{

    width:100%;

}

.why-item{

    display:flex;

    gap:25px;

    padding:25px;

    background:#ffffff;

    border-radius:20px;

    margin-bottom:25px;

    transition:.35s;

    box-shadow:0 10px 30px rgba(15,23,42,.08);

}

.why-item:hover{

    transform:translateX(10px);

    box-shadow:0 25px 45px rgba(15,23,42,.12);

}

.why-icon{

    min-width:75px;

    height:75px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        #2563EB,
        #3B82F6
    );

}

.why-icon i{

    color:white;

    font-size:2rem;

}

.why-item h4{

    font-weight:700;

    color:#0F172A;

    margin-bottom:10px;

}

.why-item p{

    color:#64748B;

    line-height:1.8;

    margin:0;

}

/*==================================================
            LEARNING JOURNEY
==================================================*/

.journey-section{

    padding:110px 0;

    background:#ffffff;

}

.journey-wrapper{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.journey-card{

    position:relative;

    background:#F8FAFC;

    padding:40px 30px;

    border-radius:24px;

    text-align:center;

    transition:.35s;

    box-shadow:0 15px 35px rgba(15,23,42,.08);

}

.journey-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(15,23,42,.15);

}

.journey-number{

    width:70px;

    height:70px;

    margin:auto auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        #2563EB,
        #3B82F6
    );

    color:#ffffff;

    font-size:1.5rem;

    font-weight:800;

}

.journey-card h4{

    color:#0F172A;

    margin-bottom:15px;

    font-weight:700;

}

.journey-card p{

    color:#64748B;

    line-height:1.8;

}

@media(max-width:992px){

.journey-wrapper{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.journey-wrapper{

grid-template-columns:1fr;

}

}

/*==================================================
        STUDENT SUCCESS STATISTICS
==================================================*/

.statistics-section{

    padding:110px 0;

    background:linear-gradient(
        135deg,
        #08111F,
        #102347
    );

}

.statistics-section .section-title h2{

    color:#ffffff;

}

.statistics-section .section-title p{

    color:#CBD5E1;

}

.statistics-section .section-badge{

    background:rgba(255,255,255,.12);

    color:#ffffff;

}

.stat-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border-radius:24px;

    padding:45px 30px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.stat-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.14);

}

.stat-card i{

    font-size:3rem;

    color:#F59E0B;

    margin-bottom:20px;

}

.stat-card h2{

    font-size:3rem;

    font-weight:800;

    color:#ffffff;

    margin-bottom:10px;

}

.stat-card p{

    color:#CBD5E1;

    margin:0;

    font-size:1.05rem;

}

/*==================================================
                CALL TO ACTION
==================================================*/

.cta-section{

    padding:120px 0;

    background:#F8FAFC;

}

.cta-box{

    background:linear-gradient(
        135deg,
        #2563EB,
        #1D4ED8
    );

    border-radius:30px;

    padding:80px 60px;

    text-align:center;

    color:#ffffff;

    box-shadow:0 30px 60px rgba(37,99,235,.25);

}

.cta-box .section-badge{

    background:rgba(255,255,255,.15);

    color:#ffffff;

}

.cta-box h2{

    font-size:3rem;

    font-weight:800;

    margin:25px 0;

}

.cta-box p{

    max-width:850px;

    margin:auto;

    color:#E2E8F0;

    line-height:1.9;

    font-size:1.15rem;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

    margin-top:45px;

}

.cta-buttons .btn{

    padding:15px 35px;

    border-radius:50px;

    font-weight:700;

}

.cta-buttons .btn-outline-light:hover{

    color:#2563EB;

}

@media(max-width:768px){

.cta-box{

padding:60px 30px;

}

.cta-box h2{

font-size:2.2rem;

}

}

/*==================================================
                PREMIUM FOOTER
==================================================*/

.footer{

    background:#08111F;

    color:#CBD5E1;

    padding:90px 0 30px;

}

.footer-logo{

    width:220px;

    margin-bottom:25px;

}

.footer-about{

    line-height:1.9;

    margin-bottom:25px;

}

.footer h5{

    color:#ffffff;

    margin-bottom:25px;

    font-weight:700;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer li{

    margin-bottom:14px;

}

.footer a{

    color:#CBD5E1;

    text-decoration:none;

    transition:.3s;

}

.footer a:hover{

    color:#F59E0B;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.2rem;

}

.footer-social a:hover{

    background:#2563EB;

    color:#ffffff;

}

.contact-list i{

    color:#F59E0B;

    margin-right:10px;

}

.footer hr{

    border-color:rgba(255,255,255,.10);

    margin:50px 0 25px;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.footer-bottom p{

    margin:0;

}

@media(max-width:768px){

.footer-bottom{

flex-direction:column;

text-align:center;

}

}