/* =========================================================
   VVC INFOTECH - ABOUT PAGE
   ========================================================= */

.about-page {
    --about-blue: #075bbb;
    --about-blue-light: #1684ed;
    --about-dark: #0b1729;
    --about-text: #536174;
    --about-bg: #f7f9fc;
}


/* HERO */

.about-page .about-hero {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    color: #fff;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(20,130,240,.2),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #07182d,
            #0b3767
        );
}

.about-page .about-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.about-page .about-hero h1 {
    font-size: clamp(42px, 5vw, 63px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.about-page .about-hero h1 span {
    display: block;
    color: #48a3ff;
}

.about-page .about-hero p {
    max-width: 680px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,.75);
}

.about-page .about-hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.about-page .about-primary-btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 23px;
    border-radius: 8px;
    background: #0876e5;
    color: #fff;
    font-weight: 600;
}

.about-page .about-primary-btn:hover {
    background: #1688f5;
    color: #fff;
}

.about-page .about-outline-btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 23px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    font-weight: 600;
}

.about-page .about-outline-btn:hover {
    background: #fff;
    color: #0b315c;
}


/* HERO VISUAL */

.about-page .about-visual {
    position: relative;
    min-height: 390px;
}

.about-page .visual-main {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 300px;
    padding: 45px 30px;
    text-align: center;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 25px;
    backdrop-filter: blur(12px);
}

.about-page .visual-main i {
    font-size: 55px;
    color: #48a3ff;
}

.about-page .visual-main h4 {
    margin-top: 20px;
    font-weight: 700;
}

.about-page .visual-main p {
    font-size: 13px;
    color: rgba(255,255,255,.65);
}

.about-page .floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 17px;
    background: #fff;
    color: #1d2939;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,.18);
    font-size: 13px;
    font-weight: 600;
}

.about-page .floating-card i {
    color: var(--about-blue);
    font-size: 19px;
}

.about-page .floating-one {
    left: 0;
    top: 45px;
}

.about-page .floating-two {
    right: 0;
    top: 115px;
}

.about-page .floating-three {
    right: 10px;
    bottom: 35px;
}


/* INTRO */

.about-page .about-intro {
    padding: 100px 0;
    background: #fff;
}

.about-page .about-section-label {
    color: var(--about-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-page .about-intro h2,
.about-page .why-vvc-section h2 {
    color: #111827;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    margin: 13px 0 20px;
}

.about-page .about-intro h2 span,
.about-page .why-vvc-section h2 span {
    color: var(--about-blue);
}

.about-page .about-intro p,
.about-page .why-vvc-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--about-text);
}

.about-page .about-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--about-blue);
    font-size: 14px;
    font-weight: 700;
}


/* STATS */

.about-page .about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.about-page .about-stat-card {
    position: relative;
    padding: 27px;
    border: 1px solid #e5eaf1;
    border-radius: 16px;
    background: #fff;
    transition: .3s;
}

.about-page .about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(15,40,75,.08);
}

.about-page .stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 12px;
    background: #eaf3ff;
    color: var(--about-blue);
    font-size: 21px;
}

.about-page .about-stat-card strong {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #e3eaf2;
    font-size: 24px;
}

.about-page .about-stat-card h4 {
    color: #111827;
    font-size: 17px;
    font-weight: 700;
}

.about-page .about-stat-card p {
    margin: 0;
    font-size: 13px;
}


/* MISSION */

.about-page .mission-section {
    padding: 95px 0;
    background: #f6f9fc;
}

.about-page .section-heading-about {
    max-width: 700px;
    margin: auto;
}

.about-page .section-heading-about > span {
    color: var(--about-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-page .section-heading-about h2 {
    color: #111827;
    font-size: 40px;
    font-weight: 800;
    margin-top: 12px;
}

.about-page .section-heading-about strong {
    color: var(--about-blue);
}

.about-page .mission-card {
    display: flex;
    gap: 22px;
    height: 100%;
    padding: 35px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #fff;
}

.about-page .mission-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eaf3ff;
    color: var(--about-blue);
    font-size: 25px;
}

.about-page .mission-card span {
    color: var(--about-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.about-page .mission-card h3 {
    color: #111827;
    font-size: 21px;
    font-weight: 700;
    margin: 8px 0 12px;
}

.about-page .mission-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}


/* WHY VVC */

.about-page .why-vvc-section {
    padding: 100px 0;
    background: #fff;
}

.about-page .why-list {
    margin-left: 30px;
}

.about-page .why-item {
    display: flex;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid #e7ebf0;
}

.about-page .why-number {
    color: var(--about-blue);
    font-size: 14px;
    font-weight: 800;
}

.about-page .why-item h4 {
    color: #111827;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-page .why-item p {
    margin: 0;
    font-size: 13px;
}


/* CTA */

.about-page .about-cta {
    padding-bottom: 95px;
}

.about-page .about-cta-box {
    padding: 50px;
    border-radius: 20px;
    background: linear-gradient(135deg,#075bbb,#063b78);
    color: #fff;
}

.about-page .about-cta-box span {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    opacity: .75;
}

.about-page .about-cta-box h2 {
    font-size: 34px;
    font-weight: 800;
    margin: 10px 0;
}

.about-page .about-cta-box p {
    margin: 0;
    opacity: .75;
}

.about-page .about-cta-button {
    display: inline-flex;
    align-items: center;
    padding: 14px 22px;
    border-radius: 8px;
    background: #fff;
    color: #075bbb;
    font-weight: 700;
}


/* MOBILE */

@media (max-width: 767px) {

    .about-page .about-hero {
        padding: 70px 0;
    }

    .about-page .about-hero-buttons {
        flex-direction: column;
    }

    .about-page .about-primary-btn,
    .about-page .about-outline-btn {
        justify-content: center;
    }

    .about-page .about-intro,
    .about-page .why-vvc-section {
        padding: 70px 0;
    }

    .about-page .about-intro h2,
    .about-page .why-vvc-section h2 {
        font-size: 32px;
    }

    .about-page .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-page .why-list {
        margin-left: 0;
        margin-top: 30px;
    }

    .about-page .mission-card {
        flex-direction: column;
    }

    .about-page .about-cta-box {
        padding: 35px 25px;
    }

}