/* ==================================================
   DEVMIXA – ABOUT PAGE (ULTRA PREMIUM ENTERPRISE)
   FINAL RESPONSIVE FIXED
================================================== */

/* ---------- GLOBAL ---------- */

.about-page {
    background: linear-gradient(180deg,#f8faff 0%, #ffffff 100%);
    color: #111827;
    line-height: 1.8;
    overflow-x:hidden;
}

.about-page .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- HERO ---------- */

.about-hero {
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg,#0f172a,#1e3a8a);
    color: #ffffff;
    overflow: hidden;
}

.about-hero::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:420px;
    height:420px;
    background:radial-gradient(circle,rgba(255,255,255,0.15),transparent 70%);
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-hero .subtitle {
    max-width: 760px;
    margin: 0 auto;
    font-size: 20px;
}

/* ---------- INTRO ---------- */

.about-intro {
    padding: 100px 0;
}

.about-intro .container{
    background:#ffffff;
    padding:60px;
    border-radius:32px;
    box-shadow:
        0 60px 160px rgba(0,0,0,0.06),
        0 20px 60px rgba(0,0,0,0.05);
}

.about-intro p {
    max-width: 860px;
    margin: 0 auto 22px;
    font-size: 18px;
    color:#374151;
}

/* ---------- VISION / MISSION ---------- */

.about-vision {
    padding: 110px 0;
    background: linear-gradient(180deg,#f9fbff,#ffffff);
}

.about-vision .two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.about-vision .two-column > div{
    background:#ffffff;
    padding:45px;
    border-radius:26px;
    box-shadow:0 25px 70px rgba(0,0,0,0.06);
    transition:.3s ease;
}

.about-vision h2 {
    font-size: 28px;
    margin-bottom: 18px;
}

/* ---------- STATS ---------- */

.about-stats {
    padding: 90px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.stat {
    background:#ffffff;
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    transition: .3s ease;
}

.stat h3 {
    font-size: 30px;
    font-weight: 800;
}

.stat p {
    margin-top: 8px;
    font-size:15px;
}

/* ---------- FOUNDER ---------- */

.about-founder {
    padding: 110px 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    border-radius: 22px;
}

.founder-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

/* ---------- PROCESS ---------- */

.about-process {
    padding: 110px 0;
    background: linear-gradient(180deg,#f8fafc,#ffffff);
}

.about-process h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 60px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.process-card {
    background:#ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

/* ---------- TRUST ---------- */

.about-trust {
    padding: 120px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.trust-image img {
    width: 100%;
    border-radius: 22px;
}

/* ==================================================
   RESPONSIVE FIX – MOBILE SAFE
================================================== */

@media (max-width: 992px) {

    .about-vision .two-column,
    .stats-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-grid,
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro .container{
        padding:40px;
    }
}

@media (max-width: 768px) {

    .about-hero {
        padding: 90px 0 70px;
    }

    .about-hero h1 {
        font-size: 30px;
    }

    .about-intro {
        padding: 70px 0;
    }

    .about-vision,
    .about-founder,
    .about-process,
    .about-trust {
        padding: 80px 0;
    }

    .about-vision .two-column,
    .stats-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-intro .container{
        padding:30px 20px;
        border-radius:20px;
    }

    .founder-grid {
        gap: 30px;
    }

    .trust-grid {
        gap: 30px;
    }

    .stat,
    .process-card {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {

    .about-hero h1 {
        font-size: 24px;
    }

    .about-intro p {
        font-size: 16px;
    }

    .stat h3 {
        font-size: 24px;
    }
}