﻿:root {
    --navy: #0b2f4b;
    --navy2: #0a2740;
    --text: #0d1b2a;
    --muted: #cfe0f3;
    --white: #fff;
    --shadow: 0 18px 40px rgba(0,0,0,.18);
    --radius: 18px;
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
}

.container {
    width: min(1180px, 92%);
    margin-inline: auto;
}

/* ============== HEADER / NAV ============== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
}

.brand img {
    width: 78px;
    height: 78px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    padding: 10px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: #cfe6ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .2px;
    opacity: .9;
}

    .nav-link:hover {
        opacity: 1
    }

    .nav-link.active {
        opacity: 1;
        color: #fff
    }

.nav-dropdown {
    position: relative;
}

.nav-drop-btn {
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chev {
    font-size: 12px;
    opacity: .85
}

.drop-menu {
    position: absolute;
    top: 38px;
    left: -10px;
    min-width: 220px;
    background: rgba(8,27,44,.98);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    padding: 10px;
    box-shadow: var(--shadow);
    display: none;
}

    .drop-menu a {
        display: block;
        padding: 10px 12px;
        border-radius: 10px;
        color: #d7ebff;
        text-decoration: none;
        font-weight: 600;
        font-size: 13px;
    }

        .drop-menu a:hover {
            background: rgba(255,255,255,.08);
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    cursor: pointer;
    display: grid;
    place-items: center;
}

    .icon-btn svg {
        width: 20px;
        height: 20px;
        fill: #e7f3ff;
        opacity: .95;
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    padding: 12px 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-quote {
    background: #fff;
    color: #123;
    padding: 12px 20px;
    border-radius: 14px;
}

/* ============== MOBILE MENU ============== */
/* MOBILE PANEL */
/*.mobile-panel {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: none;*/ /* hidden by default */
    /*z-index: 99999;*/ /* above navbar/hero */
/*}

    .mobile-panel.is-open {
        display: block;
    }

.mobile-inner {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(340px, 88vw);
    background: #fff;
    transform: translateX(100%);*/ /* off screen */
    /*transition: transform .25s ease;
}

.mobile-panel.is-open .mobile-inner {
    transform: translateX(0);*/ /* slide in */
/*}

.mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #eee;
    font-weight: 900;
}

.mobile-links {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mobile-links a,
    .mobile-drop {
        text-align: left;
        background: transparent;
        border: 0;
        padding: 10px 8px;
        font-weight: 800;
        color: #072338;
        cursor: pointer;
    }

.mobile-sub {
    display: none;
    padding-left: 10px;
    border-left: 2px solid #e6eef6;
}

    .mobile-sub.is-open {
        display: block;
    }*/
/* hide mobile menu button on desktop */
/*.mobile-menu-btn {
    display: none;
    font-size: 26px;
    background: none;
    border: 0;
    cursor: pointer;
}*/

/* show on mobile */
/*@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}*/

/* ============== HERO ============== */
.hero {
    position: relative;
    min-height: calc(100vh - 114px);
    padding-bottom: 40px;
    background: linear-gradient( 90deg, rgba(6,22,36,.92) 0%, rgba(6,22,36,.70) 48%, rgba(6,22,36,.20) 78% ), var(--hero-img);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 500px at 22% 30%, rgba(60,130,220,.18) 0%, transparent 55%), radial-gradient(800px 500px at 70% 80%, rgba(255,255,255,.10) 0%, transparent 55%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 26px;
    padding: 64px 0;
    align-items: end;
}

.hero-content {
    color: #fff;
    padding-right: 10px;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .18em;
    opacity: .95;
}

    .hero-kicker .dot {
        width: 48px;
        height: 1px;
        background: rgba(255,255,255,.55);
        position: relative;
    }

.hero-title {
    margin: 18px 0 10px;
    font-size: clamp(38px, 4.2vw, 72px);
    line-height: 1.02;
    letter-spacing: -.02em;
}

.hero-text {
    max-width: 560px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,.82);
    margin: 14px 0 22px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    align-items: center;
}

.btn-primary {
    background: #0d4f7d;
    color: #fff;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.btn-outline {
    background: rgba(255,255,255,.10);
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
}

    .btn-outline:hover,
    .btn-primary:hover {
        filter: brightness(1.05)
    }

.hero-watermark {
    margin-top: 40px;
    font-weight: 900;
    font-size: clamp(64px, 8vw, 130px);
    letter-spacing: .06em;
    color: rgba(255,255,255,.06);
    user-select: none;
}

/* RIGHT CARD */
.hero-card {
    justify-self: end;
    width: min(360px, 100%);
    background: rgba(255,255,255,.86);
    border-radius: 22px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.40);
    backdrop-filter: blur(6px);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px 10px;
    background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.75) 100%);
}

    .card-top span {
        font-weight: 900;
        font-size: 13px;
        letter-spacing: .06em;
        color: #2a3b4a;
    }

.card-arrow {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #eaf2fb;
    border: 1px solid rgba(20,60,90,.12);
    text-decoration: none;
}

    .card-arrow svg {
        width: 20px;
        height: 20px;
        fill: #1b3c5a
    }

.card-body {
    padding: 22px 18px 26px;
    background: radial-gradient(500px 240px at 20% 10%, rgba(70,140,220,.18) 0%, transparent 55%), radial-gradient(540px 240px at 90% 40%, rgba(40,180,220,.14) 0%, transparent 55%), linear-gradient(180deg, rgba(255,255,255,.92), rgba(245,249,255,.92));
}

.card-big {
    font-weight: 900;
    font-size: 64px;
    color: #0b67a9;
    letter-spacing: -.03em;
}

.card-body p {
    margin: 10px 0 0;
    font-weight: 700;
    color: #22384a;
    line-height: 1.45;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
    .nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .hero-card {
        justify-self: start;
        margin-top: 18px;
    }

    .hero {
        min-height: auto;
    }
}

@media (min-width: 981px) {
    #menuBtn {
        display: none;
    }
}


/* ===== ABOUT SECTION ===== */
.about-home {
    background: #fff;
    padding: 90px 0 70px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 46px;
    align-items: start;
}

.about-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0b67a9;
    font-weight: 900;
    letter-spacing: .18em;
    font-size: 12px;
}

    .about-kicker .line {
        width: 44px;
        height: 2px;
        background: #0b67a9;
        border-radius: 2px;
    }

.about-title {
    margin: 18px 0 14px;
    font-size: clamp(30px, 3.3vw, 40px);
    line-height: 1.03;
    letter-spacing: -.02em;
    color: #072338;
    font-weight: 900;
}

.about-text {
    max-width: 520px;
    color: #3c5162;
    font-weight: 600;
    line-height: 1.7;
    font-size: 14px;
    margin: 0 0 22px;
}

.about-btn {
    width: fit-content;
}

.about-right {
    position: relative;
    display: flex;
    gap: 24px;
    justify-content: flex-start;
}

.about-photo {
    width: 380px;
    max-width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0,0,0,.10);
}

    .about-photo img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 360px;
    max-width: 100%;
    margin-left: 12px;
    padding-top: 10px;
}

.about-card {
    background: #f3f8ff;
    border: 1px solid #d8e7fb;
    border-radius: 14px;
    padding: 22px 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

    .about-card h3 {
        margin: 0 0 10px;
        font-size: 22px;
        font-weight: 900;
        color: #072338;
    }

    .about-card p {
        margin: 0;
        font-size: 14px;
        line-height: 1.6;
        color: #4a5f72;
        font-weight: 600;
    }

/* Stats row */
.about-stats {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.stat {
    display: grid;
    grid-template-columns: 54px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 6px;
    align-items: start;
}

.stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #f0f6ff;
    border: 1px solid #dbe9fb;
    display: grid;
    place-items: center;
}

    .stat-icon svg {
        width: 24px;
        height: 24px;
        fill: #0b67a9;
    }

.stat-num {
    font-size: 44px;
    font-weight: 900;
    color: #072338;
    line-height: 1;
    margin-top: 4px;
}

.stat-text {
    grid-column: 2;
    color: #4a5f72;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-right {
        flex-direction: column;
    }

    .about-cards {
        margin-left: 0;
        width: 100%;
    }

    .about-photo {
        width: 100%;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .about-home {
        padding: 70px 0 55px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-num {
        font-size: 40px;
    }
}

/* services-section */
.services-section {
    padding: 90px 0;
    background: #f4fbff;
    position: relative;
    overflow: hidden;
}

    .services-section::before {
        content: "";
        position: absolute;
        left: -220px;
        top: -220px;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        border: 1px solid rgba(11,103,169,.18);
    }

    .services-section::after {
        content: "";
        position: absolute;
        right: -260px;
        bottom: -260px;
        width: 680px;
        height: 680px;
        border-radius: 50%;
        border: 1px solid rgba(11,103,169,.18);
    }

.services-top {
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #0b67a9;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .16em;
    margin-bottom: 12px;
}

    .services-kicker .line {
        width: 44px;
        height: 1px;
        background: rgba(11,103,169,.55);
    }

    .services-kicker .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #0b67a9;
    }

.services-title {
    margin: 0;
    font-size: clamp(28px, 3.3vw, 46px);
    font-weight: 900;
    color: #0c2236;
    letter-spacing: -.02em;
}

.services-subtitle {
    margin: 12px auto 0;
    max-width: 650px;
    color: #52677b;
    font-weight: 600;
    line-height: 1.6;
    font-size: 14px;
}

.services-grid {
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(11,103,169,.22);
    border-radius: 10px;
    padding: 26px 26px 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,.06);
    transition: transform .18s ease, box-shadow .18s ease;
}

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 26px 70px rgba(0,0,0,.10);
    }

.service-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #0b67a9;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

    .service-icon svg {
        width: 26px;
        height: 26px;
        fill: #fff;
    }

.service-rule {
    height: 1px;
    background: rgba(11,103,169,.25);
    flex: 1 1 auto;
}

.service-num {
    border: 1px solid rgba(11,103,169,.25);
    border-radius: 999px;
    padding: 6px 14px;
    font-weight: 900;
    color: #0c2236;
    background: #f7fbff;
    min-width: 64px;
    text-align: center;
}

.service-name {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    color: #0c2236;
}

.service-desc {
    margin: 10px 0 16px;
    color: #52677b;
    font-weight: 600;
    line-height: 1.6;
    font-size: 14px;
}

.service-link {
    text-decoration: none;
    font-weight: 900;
    color: #0b67a9;
}

    .service-link:hover {
        text-decoration: underline;
    }

.services-cta {
    margin-top: 34px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 12px;
    background: #0b2f4b;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

    .services-btn:hover {
        filter: brightness(1.05);
    }

@media (max-width: 980px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 22px;
    }
}


/*FAQS */
.faq-section {
    position: relative;
    padding: 90px 0;
    color: #fff;
    background: linear-gradient(90deg, rgba(6,22,36,.92) 0%, rgba(6,22,36,.72) 50%, rgba(6,22,36,.50) 100%), url('../Content/Images/banner-image.jpg'); /* ✅ replace path */
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 46px;
    align-items: center;
}

.faq-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #69b6ff;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .16em;
    margin-bottom: 20px;
}

    .faq-kicker .line {
        width: 44px;
        height: 1px;
        background: rgba(105,182,255,.55);
    }

    .faq-kicker .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #69b6ff;
    }

    .faq-kicker .text {
        text-transform: uppercase;
    }

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(6px);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-weight: 900;
    font-size: 15px;
    text-align: left;
}

.faq-ico {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    font-weight: 900;
    flex: 0 0 auto;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}

    .faq-a p {
        margin: 0;
        padding: 0 16px 14px 56px;
        color: rgba(255,255,255,.85);
        line-height: 1.6;
        font-weight: 600;
        font-size: 14px;
    }

/* open state */
.faq-item.is-open .faq-a {
    max-height: 260px;
}

.faq-item.is-open .faq-ico {
    background: rgba(105,182,255,.18);
    border-color: rgba(105,182,255,.25);
}

/* Right side */
.faq-title {
    margin: 0 0 12px;
    font-size: clamp(30px, 3.2vw, 52px);
    font-weight: 900;
    line-height: 1.05;
}

.faq-desc {
    margin: 0 0 26px;
    color: rgba(255,255,255,.80);
    line-height: 1.65;
    font-weight: 600;
    max-width: 520px;
}

.faq-stats {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom: 22px;
}

.faq-oval {
    width: 170px;
    height: 210px;
    border-radius: 999px;
    overflow: hidden;
    border: 6px solid rgba(255,255,255,.12);
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
    flex: 0 0 auto;
}

    .faq-oval img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.faq-years {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .faq-years .num {
        font-size: 56px;
        font-weight: 900;
        letter-spacing: -0.02em;
    }

    .faq-years .text {
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
        opacity: .92;
        line-height: 1.2;
    }

.faq-feature h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 900;
}

.faq-feature p {
    margin: 0;
    color: rgba(255,255,255,.82);
    line-height: 1.65;
    font-weight: 600;
    max-width: 540px;
}

@media (max-width: 980px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-kicker {
        justify-content: flex-start;
    }

    .faq-a p {
        padding-left: 16px;
    }
}

/* testimonials */
.testimonials-intro {
    padding: 90px 0 120px;
    background: #fff;
    text-align: center;
}

.ti-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #0b67a9;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .16em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

    .ti-kicker .line {
        width: 44px;
        height: 1px;
        background: rgba(11,103,169,.55);
    }

    .ti-kicker .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #0b67a9;
    }

.ti-title {
    margin: 0;
    font-size: clamp(30px, 4vw, 56px);
    font-weight: 900;
    color: #0c2236;
    letter-spacing: -0.02em;
}

.ti-desc {
    margin: 18px auto 0;
    max-width: 820px;
    color: #51677b;
    font-weight: 600;
    line-height: 1.85;
    font-size: 14px;
}

.ti-cta {
    margin-top: 38px;
}

.ti-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 12px;
    background: #0b2f4b;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

    .ti-btn:hover {
        filter: brightness(1.05);
    }


