/* ===============================
   ABOUT HERO
================================ */

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

.about-hero h1 {
    font-size: 44px;
    font-weight: 700;
}

.about-hero .highlight {
    color: #38bdf8;
}

.about-hero p {
    max-width: 650px;
    margin: 15px auto 0;
    color: #cbd5f5;
}

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

.our-story {
    padding: 90px 0;
    background: #020617;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text h2 {
    color: #fff;
    margin-bottom: 15px;
}

.story-text p {
    color: #94a3b8;
    margin-bottom: 15px;
    line-height: 1.7;
}

.story-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

.mission-vision {
    padding: 90px 0;
    background: #020617;
}

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

.mission-card {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    border-color: #38bdf8;
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.15);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: rgba(56, 189, 248, 0.15);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    color: #38bdf8;
    font-size: 28px;
}

.mission-card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.mission-card p {
    color: #94a3b8;
    font-size: 14px;
}

/* ===============================
   OUR TEAM
================================ */

.our-team {
    padding: 90px 0;
    background: #020617;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

.team-member {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
}

.team-member:hover {
    transform: translateY(-6px);
    border-color: #38bdf8;
}

.member-image img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 15px;
}

.team-member h3 {
    color: #fff;
    margin-bottom: 4px;
}

.member-role {
    color: #38bdf8;
    font-size: 14px;
    margin-bottom: 8px;
}

.member-bio {
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 12px;
}

.member-social a {
    color: #94a3b8;
    margin: 0 6px;
    font-size: 16px;
}

.member-social a:hover {
    color: #38bdf8;
}

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

.company-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #020617, #0f172a);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    color: #38bdf8;
}

.stat-item p {
    color: #cbd5f5;
    font-size: 14px;
}

/* ===============================
   CERTIFICATIONS
================================ */

.certifications {
    padding: 90px 0;
    background: #020617;
}

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

.cert-card {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
}

.cert-icon {
    width: 65px;
    height: 65px;
    background: rgba(56, 189, 248, 0.15);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    color: #38bdf8;
    font-size: 26px;
}

.cert-card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.cert-card p {
    color: #94a3b8;
    font-size: 14px;
}

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

.about-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, #0f172a, #020617);
    text-align: center;
}

.about-cta h2 {
    color: #fff;
    font-size: 36px;
}

.about-cta p {
    color: #cbd5f5;
    margin: 15px 0 30px;
}

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