/* =====================================================
   SUTEZ ABOUT PAGE — HOMEPAGE THEME INTEGRATION
===================================================== */

:root {
    --sky: #2f9edb;
    --sky-dark: #1174b5;
    --navy: #0d2238;
    --ink: #24364a;
    --muted: #6b7b8c;
    --soft: #f3f9fd;
    --line: #e5edf3;
    --white: #ffffff;
}

/* Active navigation item */

.nav-links a.active {
    color: var(--sky-dark);
}

.nav-links a.active::after {
    width: 100%;
}

/* Mobile menu */

@media (max-width: 768px) {
    .nav-links.mobile-open {
        display: flex;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        z-index: 999;

        flex-direction: column;
        align-items: stretch;
        gap: 5px;

        padding: 18px 20px 22px;

        background: #ffffff;
        border-top: 1px solid var(--line);
        box-shadow: 0 18px 35px rgba(13, 34, 56, 0.14);
    }

    .nav-links.mobile-open a {
        width: 100%;
        padding: 11px 5px;
    }

    .nav-links.mobile-open .nav-cta {
        margin-top: 7px;
        padding: 13px 18px;
        text-align: center;
    }
}

/* =====================================================
   ABOUT PAGE INNER HERO
===================================================== */

.inner-hero {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--navy);
}

.inner-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(13, 34, 56, 0.96) 0%,
            rgba(13, 34, 56, 0.88) 48%,
            rgba(17, 116, 181, 0.55) 100%
        ),
        url("../../images/about-us.webp") center/cover no-repeat;
    transform: scale(1.02);
}

.inner-hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    top: -170px;
    right: 7%;
    border-radius: 50%;
    background: rgba(47, 158, 219, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.inner-hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: 18%;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 80px;
}

.inner-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(47, 158, 219, 0.16);
    border: 1px solid rgba(95, 191, 239, 0.35);
    color: #dff4ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.inner-hero-tag::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5fbfef;
    box-shadow: 0 0 0 5px rgba(95, 191, 239, 0.14);
}

.inner-hero h1 {
    max-width: 760px;
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.inner-hero h1 span {
    display: block;
    color: #65c3ef;
}

.inner-hero p {
    max-width: 680px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.8;
}

.inner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 600;
}

.inner-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.inner-breadcrumb a:hover {
    color: #65c3ef;
}

.inner-breadcrumb i {
    color: #65c3ef;
    font-size: 10px;
}

@media (max-width: 768px) {
    .inner-hero {
        min-height: 380px;
    }

    .inner-hero-content {
        padding-top: 70px;
        padding-bottom: 60px;
    }

    .inner-hero h1 {
        font-size: 40px;
    }

    .inner-hero p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .inner-hero h1 {
        font-size: 34px;
    }

    .inner-hero-tag {
        font-size: 11px;
    }
}

/* =========================================
   ABOUT CONTENT SECTION
========================================= */

.page-about {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
}

.page-about .container {
    max-width: 1200px;
}

.page-about .right-item {
    width: 100%;
}

.page-about .about-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 70px 45px;
    box-shadow: 0 20px 50px rgba(13,34,56,.08);
}

.page-about .feature-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    transition: .35s ease;
}

.page-about .feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(13,34,56,.12);
    border-color: rgba(47,158,219,.45);
}

.page-about .feature-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,var(--sky-dark),var(--sky));
    color: #fff;
    font-size: 26px;
    margin: 0 auto 20px;
}

@media (max-width:768px) {
    .page-about {
        padding: 65px 0;
    }

    .page-about .about-card {
        padding: 35px 22px;
    }
}