/* =================================
   ABOUT PAGE
================================= */

.about-hero{
    margin-top:90px;
    background:linear-gradient(135deg,#1a83c6,#702d8e);
    color:#fff;
    text-align:center;
    padding:100px 20px;
    position:relative;
    overflow:hidden;
}

.about-hero::before{
    content:"";
    position:absolute;
    top:-50%;
    left:-10%;
    width:60%;
    height:200%;
    background:rgba(255,255,255,.05);
    transform:rotate(15deg);
    pointer-events:none;
}

.about-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:1;
}

.about-hero h1{
    font-size:3rem;
    font-weight:800;
    margin-bottom:15px;
}

.about-hero p{
    font-size:1.2rem;
    opacity:.95;
}

.about-section{
    padding:80px 0;
}

.about-block{
    background:#fff;
    padding:40px;
    border-radius:15px;
    margin-bottom:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.about-block h2{
    color:#702d8e;
    font-size:2rem;
    margin-bottom:20px;
}

.about-block p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:15px;
    text-align:justify;
}

.section-subtitle{
    color:#64748b;
    text-align:center !important;
    margin-top:-10px;
    margin-bottom:30px;
    font-size:1.05rem;
}

/* =================================
   SCROLL REVEAL ANIMATION
================================= */

.reveal{
    opacity:0;
    transform:translateY(30px);
    transition:opacity .7s ease, transform .7s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

@media (prefers-reduced-motion: reduce){
    .reveal{
        opacity:1;
        transform:none;
        transition:none;
    }
}

/* =================================
   STATS STRIP
================================= */

.stats-strip{
    background:#fff;
    padding:50px 0;
    border-bottom:1px solid #eef1f5;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    text-align:center;
}

.stat-item h3{
    font-size:2.6rem;
    font-weight:800;
    color:#1a83c6;
    margin-bottom:5px;
}

.stat-item p{
    color:#64748b;
    font-size:.95rem;
    text-transform:uppercase;
    letter-spacing:.5px;
}

/* =================================
   MISSION / VISION
================================= */

.mv-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-bottom:30px;
}

.mv-card{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.mv-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,.1);
}

.mv-icon{
    font-size:2.2rem;
    margin-bottom:15px;
}

.mv-card h2{
    color:#702d8e;
    font-size:1.7rem;
    margin-bottom:15px;
}

.mv-card p{
    color:#64748b;
    line-height:1.9;
    text-align:justify;
}

/* =================================
   WHY CHOOSE US
================================= */

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:25px;
}

.why-card{
    background:#f8fafc;
    padding:25px;
    border-radius:12px;
    border-left:5px solid #1a83c6;
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.why-icon{
    font-size:1.8rem;
    margin-bottom:10px;
}

.why-card h3{
    color:#1e293b;
    margin-bottom:10px;
}

.why-card p{
    color:#64748b;
    text-align:left;
}

/* =================================
   HOW WE WORK / PROCESS
================================= */

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-top:25px;
}

.process-card{
    position:relative;
    background:#f8fafc;
    padding:30px 25px;
    border-radius:12px;
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.process-num{
    display:inline-block;
    font-size:1.8rem;
    font-weight:800;
    color:#1a83c6;
    opacity:.35;
    margin-bottom:8px;
}

.process-card h3{
    color:#1e293b;
    margin-bottom:8px;
}

.process-card p{
    color:#64748b;
    text-align:left;
    margin-bottom:0;
}

/* =================================
   TEAM SECTION
================================= */

.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    margin-top:25px;
}

.team-card{
    text-align:center;
    background:#f8fafc;
    padding:30px 20px;
    border-radius:15px;
    transition:.3s;
}

.team-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 24px rgba(0,0,0,.08);
}

.team-photo{
    width:130px;
    height:130px;
    margin:0 auto 18px;
    border-radius:50%;
    overflow:hidden;
    border:4px solid #fff;
    box-shadow:0 8px 18px rgba(0,0,0,.12);
}

.team-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Dummy avatar - replace this whole block with <img> tag once you have real photos */
.team-photo-dummy{
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#e2e8f0,#cbd5e1);
}

.team-photo-dummy span{
    font-size:3.2rem;
    line-height:1;
}

.team-card h3{
    color:#1e293b;
    font-size:1.15rem;
    margin-bottom:5px;
}

.team-role{
    color:#1a83c6;
    font-weight:600;
    font-size:.9rem;
    text-transform:uppercase;
    letter-spacing:.5px;
}

/* =================================
   FOUNDER SECTION
================================= */

.founder-section{
    background:linear-gradient(135deg,#1a83c6,#702d8e);
    color:#fff;
    text-align:center;
    padding:60px 40px;
    border-radius:15px;
    margin-bottom:30px;
}

.founder-section h2{
    margin-bottom:25px;
    font-size:2rem;
}

.founder-photo{
    width:140px;
    height:140px;
    margin:0 auto 25px;
    border-radius:50%;
    overflow:hidden;
    border:4px solid rgba(255,255,255,.6);
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.founder-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Dummy avatar - replace this whole block with <img> tag once you have a real photo */
.founder-photo-dummy{
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.15);
}

.founder-photo-dummy span{
    font-size:3.6rem;
    line-height:1;
}

.founder-section blockquote{
    max-width:900px;
    margin:auto;
    font-size:1.3rem;
    line-height:1.8;
    font-style:italic;
}

.founder-info{
    margin-top:35px;
}

.founder-info h3{
    font-size:1.5rem;
    margin-bottom:10px;
}

.founder-info p{
    opacity:.95;
    margin-bottom:5px;
}

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

.about-cta{
    text-align:center;
    background:#f8fafc;
    padding:60px 30px;
    border-radius:15px;
    margin-bottom:10px;
}

.about-cta h2{
    color:#1e293b;
    font-size:1.9rem;
    margin-bottom:12px;
}

.about-cta p{
    color:#64748b;
    margin-bottom:25px;
}

.cta-btn{
    display:inline-block;
    background:linear-gradient(135deg,#1a83c6,#702d8e);
    color:#fff;
    text-decoration:none;
    font-weight:700;
    padding:14px 38px;
    border-radius:50px;
    transition:.3s;
    box-shadow:0 8px 18px rgba(26,131,198,.3);
}

.cta-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 24px rgba(26,131,198,.4);
}

/* =================================
   RESPONSIVE
================================= */

@media(max-width:992px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

    .mv-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .about-hero{
        padding:80px 20px;
    }

    .about-hero h1{
        font-size:2.2rem;
    }

    .about-block{
        padding:25px;
    }

    .about-block h2{
        font-size:1.6rem;
    }

    .mv-card{
        padding:28px;
    }

    .founder-section{
        padding:40px 20px;
    }

    .founder-section blockquote{
        font-size:1.05rem;
    }

    .about-cta{
        padding:45px 20px;
    }

    .about-cta h2{
        font-size:1.5rem;
    }
}

@media(max-width:480px){

    .about-hero h1{
        font-size:1.8rem;
    }

    .about-hero p{
        font-size:1rem;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .stat-item h3{
        font-size:2rem;
    }

    .why-grid,
    .process-grid,
    .team-grid{
        grid-template-columns:1fr;
    }

    .team-photo,
    .founder-photo{
        width:110px;
        height:110px;
    }

    .cta-btn{
        padding:12px 30px;
        font-size:.95rem;
    }
}
