/* ===== About Hero ===== */
.about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #334155 100%);
    padding: 110px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.12), transparent 60%);
    border-radius: 50%;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.08), transparent 60%);
    border-radius: 50%;
}

.about-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(102, 126, 234, 0.12);
    border: 1px solid rgba(102, 126, 234, 0.2);
    color: #a5b4fc;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.about-hero h1 .gradient-text {
    background: linear-gradient(135deg, #2563eb, #a8ecc3, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero .hero-desc {
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.8;
    max-width: 560px;
}

/* ===== Stats Bar ===== */
.stats-bar {
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.stats-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #d0d0d0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.stats-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.stats-card .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stats-card .stat-label {
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
}

/* ===== Mission / Vision / Values ===== */
.mvv-section {
    padding: 100px 0;
    background: #fff;
}

.mvv-card {
    background: #f5f5f5;
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid #d0d0d0;
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 24px 24px 0 0;
}

.mvv-card.mission::before {
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
}

.mvv-card.vision::before {
    background: linear-gradient(90deg, #1d4ed8, #60a5fa);
}

.mvv-card.values::before {
    background: linear-gradient(90deg, #f59e0b, #f97316);
}

.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.mvv-card .mvv-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.mvv-card.mission .mvv-icon {
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    color: #1d4ed8;
}

.mvv-card.vision .mvv-icon {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #1d4ed8;
}

.mvv-card.values .mvv-icon {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    color: #d97706;
}

.mvv-card h4 {
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.mvv-card p {
    color: #333333;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== Story Section ===== */
.story-section {
    padding: 100px 0;
    background: #f5f5f5;
}

.story-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #2563eb, #a8ecc3, #f472b6);
}

.story-item {
    position: relative;
    padding-left: 64px;
    margin-bottom: 40px;
}

.story-item:last-child {
    margin-bottom: 0;
}

.story-item .story-dot {
    position: absolute;
    left: 14px;
    top: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #2563eb;
    z-index: 1;
}

.story-item .story-year {
    font-size: 13px;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.story-item h5 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.story-item p {
    color: #333333;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== Why Choose Us ===== */
.why-section {
    padding: 100px 0;
    background: #fff;
}

.why-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 20px;
    transition: all 0.3s;
    height: 100%;
}

.why-card:hover {
    background: #f5f5f5;
    transform: translateY(-4px);
}

.why-card .why-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.why-card h5 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 16px;
}

.why-card p {
    color: #333333;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== Team Section ===== */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.team-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(102, 126, 234, 0.12);
    border: 1px solid rgba(102, 126, 234, 0.2);
    color: #a5b4fc;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.team-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(102, 126, 234, 0.2);
}

.team-card .team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
}

.team-card h6 {
    color: #d0d0d0;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card .team-role {
    color: #60a5fa;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card p {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== CTA Section ===== */
.about-cta {
    padding: 80px 0;
    background: #fff;
}

.about-cta-box {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 28px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.about-cta-box h2 {
    color: #fff;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 16px;
}

.about-cta-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto 28px;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .about-hero h1 {
        font-size: 2.4rem;
    }

    .about-hero .hero-desc {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding: 90px 0 60px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .mvv-section,
    .story-section,
    .why-section,
    .team-section {
        padding: 60px 0;
    }

    .about-cta-box {
        padding: 40px 20px;
    }
}

