.about-hero-image {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-image: url("../image/hero-about.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 26, 51, .92) 0%,
            rgba(7, 26, 51, .75) 35%,
            rgba(7, 26, 51, .25) 75%,
            rgba(7, 26, 51, .1) 100%
        );
}
.about-hero-image .container {
    position: relative;
    z-index: 2;
}
.about-hero-content {
    max-width: 650px;
    color: #fff;
}
.about-hero-content .about-page-badge {
    margin-bottom: 20px;
}
.about-hero-content h1 {
    margin: 20px 0;
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.4;
    font-weight: 800;
}
.about-hero-content p {
    max-width: 600px;
    margin-bottom: 30px;
    color: rgba(255,255,255,.82);
    font-size: 1.15rem;
    line-height: 2;
}
@media (max-width: 768px) {
    .about-hero-image {
        min-height: 500px;
        background-position: 65% center;
    }
    .about-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7, 26, 51, .92),
                rgba(7, 26, 51, .65)
            );
    }
    .about-hero-content {
        text-align: center;
        margin: auto;
    }
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    .about-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
}
.about-page-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(34, 211, 238, 0.18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #071a33 0%,
            #0b2948 55%,
            #0d3b56 100%
        );
    color: #fff;
}
.about-page-hero::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
    top: -180px;
    left: -100px;
}

.about-page-hero::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid rgba(34,211,238,.08);
    bottom: -120px;
    right: 10%;
}

.about-page-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(34,211,238,.12);
    border: 1px solid rgba(34,211,238,.25);
    color: #67e8f9;
    font-weight: 700;
}

.about-page-title {
    position: relative;
    z-index: 1;
    margin: 22px 0;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.4;
    font-weight: 800;
}

.about-page-description {
    max-width: 650px;
    color: rgba(255,255,255,.72);
    font-size: 1.1rem;
    line-height: 2;
}

.about-page-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.about-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 25px;
    border: 0;
    border-radius: 12px;
    background: #22d3ee;
    color: #062033;
    font-weight: 800;
    transition: .3s;
}

.about-primary-btn:hover {
    background: #67e8f9;
    color: #062033;
    transform: translateY(-3px);
}

.about-secondary-btn {
    padding: 13px 25px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;
    color: #fff;
    background: rgba(255,255,255,.06);
    transition: .3s;
}

.about-secondary-btn:hover {
    color: #fff;
    background: rgba(255,255,255,.12);
}


.about-hero-info {
    position: relative;
    z-index: 1;
    padding: 45px 35px;
    border-radius: 30px;
    text-align: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 70px rgba(0,0,0,.15);
}

.about-hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    border-radius: 25px;
    background: rgba(34,211,238,.12);
    color: #22d3ee;
    font-size: 42px;
}

.about-hero-info h3 {
    color: #fff;
    font-weight: 800;
}

.about-hero-info p {
    color: rgba(255,255,255,.65);
    line-height: 1.9;
}

.about-hero-line {
    height: 1px;
    margin: 30px 0;
    background: rgba(255,255,255,.12);
}

.about-hero-mini-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.about-hero-mini-stats div {
    display: flex;
    flex-direction: column;
}

.about-hero-mini-stats strong {
    color: #67e8f9;
    font-size: 1.7rem;
    font-weight: 800;
}

.about-hero-mini-stats span {
    color: rgba(255,255,255,.6);
    font-size: .85rem;
}


/* =========================================
   ABOUT MAIN
========================================= */

.about-story-section {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

.about-main-card {
    transition: .3s;
}

.about-main-card:hover {
    transform: translateY(-4px);
}

.about-main-card p {
    line-height: 2;
}

.about-stat-card {
    transition: .3s;
}

.about-stat-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(7,26,51,.1) !important;
}

.about-stat-card h2 {
    margin-bottom: 5px;
}

.about-info-card {
    transition: .3s;
}

.about-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(7,26,51,.08) !important;
}

.about-info-icon {
    min-height: 55px;
}


/* =========================================
   WHY US
========================================= */

.about-why-section {
    padding: 90px 0;
    background: #f8fafc;
}

.about-feature-card {
    height: 100%;
    padding: 35px 28px;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    background: #fff;
    transition: .3s;
}

.about-feature-card:hover {
    transform: translateY(-8px);
    border-color: #a5f3fc;
    box-shadow: 0 20px 45px rgba(7,26,51,.09);
}

.about-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    border-radius: 17px;
    background: #ecfeff;
    color: #0891b2;
    font-size: 28px;
}

.about-feature-card h4 {
    color: #071a33;
    font-weight: 800;
    margin-bottom: 12px;
}

.about-feature-card p {
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 0;
}


/* =========================================
   CTA
========================================= */

.about-cta-section {
    padding: 80px 0;
    background: #071a33;
}

.about-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 50px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(34,211,238,.18),
            transparent 35%
        ),
        rgba(255,255,255,.05);
}

.about-cta-box > div span {
    color: #67e8f9;
    font-weight: 700;
}

.about-cta-box h2 {
    margin: 10px 0;
    color: #fff;
    font-weight: 800;
}

.about-cta-box p {
    margin: 0;
    color: rgba(255,255,255,.65);
}


/* =========================================
   FOOTER
========================================= */

.about-cta-section + footer {
    background: #071a33;
    color: rgba(255,255,255,.6);
    border-top: 1px solid rgba(255,255,255,.08);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .about-page-hero {
        padding: 75px 0;
    }

    .about-hero-info {
        margin-top: 25px;
    }

    .about-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 576px) {

    .about-page-hero {
        padding: 60px 0;
    }

    .about-page-title {
        font-size: 2.5rem;
    }

    .about-page-description {
        font-size: 1rem;
    }

    .about-page-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-page-actions .btn {
        justify-content: center;
    }

    .about-hero-info {
        padding: 35px 22px;
    }

    .about-story-section {
        padding-top: 65px !important;
        padding-bottom: 65px !important;
    }

    .about-why-section {
        padding: 65px 0;
    }

    .about-cta-section {
        padding: 60px 0;
    }

    .about-cta-box {
        padding: 30px 25px;
    }

}