* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #ffffff;
    color: #1b3058;
}

/* ================= HERO ================= */

.about-hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 90px 20px;
    background: linear-gradient(
        135deg,
        rgba(27, 48, 88, 0.95),
        rgba(28, 47, 87, 0.95)
    ),
    url('../images/about-us.png') center/cover no-repeat;
}

.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    max-width: 900px;
    margin: auto;
    background: linear-gradient(90deg, #ffcc00, #ffe066);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    margin-top: 22px;
    max-width: 680px;
    margin-inline: auto;
    color: #e5e7eb;
    line-height: 1.8;
    font-size: 16px;
}

/* ================= ABOUT ================= */

.about-section {
    padding: 110px 10%;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1b3058;
}

.about-text p {
    margin-bottom: 16px;
    color: #475569;
    line-height: 1.75;
    font-size: 15.5px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.stat-card {
    background: #1c2f57;
    padding: 35px 25px;
    border-radius: 22px;
    text-align: center;
    transition: 0.35s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card h3 {
    font-size: 34px;
    color: #ffcc00;
}

.stat-card p {
    color: #e5e7eb;
}

/* ================= VISION ================= */

.vision-section {
    padding: 110px 10%;
    background: #f8fafc;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

.vision-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 28px;
    text-align: center;
    transition: 0.35s ease;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #ffcc00;
}

.vision-card:hover {
    transform: translateY(-12px);
}

.vision-card i {
    font-size: 42px;
    color: #1b3058;
    margin-bottom: 18px;
}

/* ================= WHY ================= */

.why-section {
    padding: 110px 10%;
    text-align: center;
    background: #ffffff;
}

.why-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #1b3058;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.why-card {
    background: #1c2f57;
    padding: 38px 30px;
    border-radius: 26px;
    color: #ffffff;
    transition: 0.35s ease;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

.why-card h4 {
    color: #ffcc00;
}

.why-card p {
    color: #e5e7eb;
}

.why-card:hover {
    transform: translateY(-10px);
}

/* ================= CTA ================= */

.cta-section {
    padding: 120px 20px;
    text-align: center;
    margin-bottom: 3%;
    background: linear-gradient(135deg, #1b3058, #1c2f57);
}

.cta-section h2 {
    color: #ffcc00;
}

.cta-section p {
    color: #e5e7eb;
}

.cta-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 46px;
    background: linear-gradient(90deg, #ffcc00, #ffe066);
    color: #1b3058;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition: 0.35s ease;
    box-shadow: 0 15px 35px rgba(255, 204, 0, 0.4);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(255, 204, 0, 0.55);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .about-grid,
    .vision-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .about-section,
    .vision-section,
    .why-section {
        padding: 80px 8%;
    }
}
