/* ===== about.css ===== */


/* ===== HERO ===== */
.about-hero{
    background:linear-gradient(135deg,#0b1d4d,#123b8a);
    color:#fff;
    padding:80px 20px;
    text-align:center;
}

.about-hero .hero-inner{
    max-width:1000px;
    margin:auto;
}

.about-hero h1{
    font-size:52px;
    font-weight:800;
    margin-bottom:18px;
}

.about-hero p{
    font-size:20px;
    max-width:780px;
    margin:auto;
    color:#dce6ff;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.hero-buttons a{
    text-decoration:none;
    padding:14px 28px;
    border-radius:10px;
    font-size:16px;
    font-weight:700;
    transition:0.25s ease;
}

.btn-primary{
    background:#ff9800;
    color:#fff;
    box-shadow:0 6px 16px rgba(0,0,0,0.25);
}

.btn-primary:hover{
    background:#ffb000;
    transform:translateY(-2px);
}

.btn-secondary{
    background:#fff;
    color:#123b8a;
}

.btn-secondary:hover{
    background:#e8efff;
}

/* ===== COMMON SECTION ===== */

.section{
    max-width:1200px;
    margin:70px auto;
    padding:0 20px;
}

.section-title{
    text-align:center;
    font-size:38px;
    color:#123b8a;
    margin-bottom:18px;
    font-weight:800;
}

.section-subtitle{
    text-align:center;
    max-width:850px;
    margin:0 auto 50px;
    color:#555;
    font-size:18px;
}

/* ===== STORY ===== */

.story-box{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.story-box p{
    margin-bottom:18px;
    font-size:17px;
}

/* ===== FEATURES ===== */

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:24px;
}

.feature-card{
    background:#fff;
    padding:28px;
    border-radius:16px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    transition:0.25s ease;
    border:1px solid #dbe5ff;
}

.feature-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 24px rgba(0,0,0,0.15);
}

.feature-icon{
    font-size:42px;
    margin-bottom:15px;
}

.feature-card h3{
    color:#123b8a;
    margin-bottom:12px;
    font-size:22px;
}

.feature-card p{
    color:#555;
    font-size:15px;
}

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

.mission-box{
    background:linear-gradient(135deg,#0056ff,#003bbf);
    color:#fff;
    padding:50px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,0.18);
}

.mission-box h2{
    font-size:40px;
    margin-bottom:18px;
}

.mission-box p{
    font-size:20px;
    max-width:850px;
    margin:auto;
    color:#e8f0ff;
}

/* ===== TRUST ===== */

.trust-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:22px;
}

.trust-card{
    background:#fff;
    border-left:5px solid #0056ff;
    padding:25px;
    border-radius:14px;
    box-shadow:0 5px 16px rgba(0,0,0,0.08);
}

.trust-card h4{
    color:#123b8a;
    margin-bottom:10px;
    font-size:20px;
}

.trust-card p{
    color:#555;
}

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

.stats-section{
    background:#fff;
    padding:60px 20px;
}

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

.stat-box{
    background:linear-gradient(135deg,#0b1d4d,#123b8a);
    color:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.18);
}

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

.stat-box p{
    font-size:16px;
    color:#d8e4ff;
}

/* ===== CTA ===== */

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.cta-buttons a{
    text-decoration:none;
    padding:14px 30px;
    border-radius:10px;
    font-weight:700;
    transition:0.25s ease;
}

.cta-buy{
    background:#fff;
    color:#ff6f00;
}

.cta-sell{
    background:#0b1d4d;
    color:#fff;
}

.cta-buttons a:hover{
    transform:translateY(-2px);
}

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

@media(max-width:768px){

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

    .section-title{
        font-size:30px;
    }

    .mission-box h2,
    .cta-section h2{
        font-size:32px;
    }

    .about-hero p,
    .mission-box p,
    .cta-section p{
        font-size:17px;
    }
}