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

.about-page{
    background:#f8fafc;
}

.about-container{
    width:min(1200px,92%);
    margin:auto;
}

.about-hero{
    background:linear-gradient(135deg,#0f172a,#1d4ed8);
    color:#fff;
    padding:110px 0;
    text-align:center;
}

.about-tag{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
}

.about-hero h1{
    font-size:58px;
    font-weight:800;
    margin-bottom:25px;
    color:#fff;
}

.about-hero p{
    max-width:900px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    color:#fff;
}

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

.about-section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
    font-weight:800;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.about-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.3s;
}

.about-card:hover{
    transform:translateY(-8px);
}

.about-card h3{
    margin-bottom:18px;
    font-size:24px;
}

.about-card p{
    color:#555;
    line-height:1.8;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.feature-item{
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.feature-item h4{
    margin-bottom:15px;
}

.about-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    background:#fff;
    text-align:center;
    padding:40px 20px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.stat-box h3{
    font-size:42px;
    color:#2563eb;
    margin-bottom:10px;
}

.about-cta{
    background:#0f172a;
    color:#fff;
    text-align:center;
    padding:90px 20px;
}

.about-cta h2{
    color:#fff;
    font-size:44px;
    margin-bottom:25px;
}

.about-btn{
    display:inline-block;
    background:#2563eb;
    color:#fff;
    padding:16px 42px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.about-btn:hover{
    background:#1d4ed8;
    color:#fff;
}

@media(max-width:991px){

.about-grid,
.about-stats,
.about-features{
    grid-template-columns:1fr 1fr;
}

.about-hero h1{
    font-size:42px;
}

}

@media(max-width:768px){

.about-grid,
.about-stats,
.about-features{
    grid-template-columns:1fr;
}

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

.about-hero h1{
    font-size:34px;
}

.about-hero p{
    font-size:17px;
}

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

.about-section h2{
    font-size:30px;
}

.about-cta h2{
    font-size:30px;
}

.about-btn{
    width:100%;
    max-width:320px;
}

}
