﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0A1929;
    --navy-mid: #102A44;
    --navy-light: #163A58;
    --blue: #1565C0;
    --blue-bright: #1976D2;
    --blue-hover: #1E88E5;
    --gold: #D4A017;
    --gold-light: #F0B429;
    --white: #FFFFFF;
    --off-white: #F7F9FC;
    --light-gray: #EEF2F7;
    --mid-gray: #CBD5E1;
    --text-dark: #0D1E30;
    --text-body: #3D5166;
    --text-muted: #647A90;
    --border: #DDE5EE;
    --shadow-sm: 0 2px 8px rgba(10,25,41,0.08);
    --shadow-md: 0 8px 30px rgba(10,25,41,0.12);
    --shadow-lg: 0 20px 60px rgba(10,25,41,0.18);
    --radius: 6px;
    --radius-lg: 12px;
    --font-h: 'Raleway', sans-serif;
    --font-b: 'Nunito Sans', sans-serif;
    --top-bar-h: 40px;
    --nav-h: 76px;
    --total-top: 116px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-b);
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* ─── TOP UTILITY BAR ─── */
.top-bar {
    height: var(--top-bar-h);
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    position: relative;
    z-index: 1001;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

    .top-bar-left a {
        color: rgba(255,255,255,0.65);
        display: flex;
        align-items: center;
        gap: 6px;
        transition: color 0.2s;
    }

        .top-bar-left a:hover {
            color: var(--gold-light);
        }

.top-bar-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

    .top-bar-right a {
        color: rgba(255,255,255,0.65);
        display: flex;
        align-items: center;
        gap: 5px;
        transition: color 0.2s;
        font-size: 0.78rem;
    }

        .top-bar-right a:hover {
            color: var(--gold-light);
        }

/* ─── NAVBAR ─── */
nav {
    height: var(--nav-h);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s;
}

    nav.elevated {
        box-shadow: var(--shadow-md);
    }

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .logo-mark svg {
        width: 22px;
        height: 22px;
    }

.logo-text {
    font-family: var(--font-h);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1;
}

    .logo-text span {
        color: var(--blue-bright);
    }

.logo-sub {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

    .nav-menu > li > a {
        display: block;
        padding: 0.55rem 0.9rem;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--text-body);
        border-radius: var(--radius);
        transition: color 0.2s, background 0.2s;
        letter-spacing: 0.01em;
    }

        .nav-menu > li > a:hover {
            color: var(--blue-bright);
            background: rgba(21,101,192,0.06);
        }

        .nav-menu > li > a.active {
            color: var(--blue-bright);
        }

.nav-btn {
    background: var(--blue);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: var(--radius) !important;
    font-weight: 700 !important;
    transition: background 0.2s, box-shadow 0.2s !important;
}

    .nav-btn:hover {
        background: var(--blue-hover) !important;
        box-shadow: 0 4px 16px rgba(21,101,192,0.35) !important;
        color: var(--white) !important;
    }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--navy);
        margin: 5px 0;
        border-radius: 2px;
        transition: all 0.3s;
    }

/* ─── MOBILE NAV ─── */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 1rem 5vw 1.5rem;
    flex-direction: column;
    gap: 0.25rem;
    z-index: 999;
}

    .mobile-nav.open {
        display: flex;
    }

    .mobile-nav a {
        padding: 0.7rem 0.5rem;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text-body);
        border-bottom: 1px solid var(--light-gray);
    }

        .mobile-nav a:last-child {
            border: none;
            color: var(--blue);
        }

/* ─── VIDEO HERO ─── */
#home {
    position: relative;
    height: 100vh;
    min-height: 620px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Fallback gradient when video fails */
.hero-video-fallback {
    display: none;
}

video:not([src]) + .hero-video-fallback {
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(8,20,42,0.88) 0%, rgba(8,20,42,0.75) 50%, rgba(8,20,42,0.45) 100% );
}

.hero-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, var(--white), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5vw;
    max-width: 780px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-h);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

    .hero-eyebrow::before {
        content: '';
        width: 30px;
        height: 2px;
        background: var(--gold-light);
    }

.hero-h1 {
    font-family: var(--font-h);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 1.4rem;
}

    .hero-h1 .line2 {
        color: transparent;
        -webkit-text-stroke: 1.5px rgba(255,255,255,0.5);
    }

.hero-desc {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--blue-bright);
    color: var(--white);
    font-family: var(--font-b);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius);
    letter-spacing: 0.02em;
    transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
    border: 2px solid transparent;
}

    .btn-hero-primary:hover {
        background: var(--blue-hover);
        box-shadow: 0 6px 24px rgba(21,101,192,0.45);
        transform: translateY(-2px);
    }

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-b);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,0.4);
    letter-spacing: 0.02em;
    transition: border-color 0.25s, background 0.25s;
}

    .btn-hero-outline:hover {
        border-color: rgba(255,255,255,0.8);
        background: rgba(255,255,255,0.1);
    }

/* scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
}

    .scroll-mouse::before {
        content: '';
        position: absolute;
        width: 4px;
        height: 8px;
        background: rgba(255,255,255,0.5);
        border-radius: 2px;
        left: 50%;
        top: 6px;
        transform: translateX(-50%);
        animation: scrollDot 2s ease-in-out infinite;
    }

@keyframes scrollDot {
    0%,100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.2;
        transform: translateX(-50%) translateY(10px);
    }
}

/* ─── TRUST BAR ─── */
.trust-bar {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-logo {
    font-family: var(--font-h);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--mid-gray);
    letter-spacing: -0.01em;
    transition: color 0.2s;
}

    .trust-logo:hover {
        color: var(--text-muted);
    }

/* ─── SECTION COMMONS ─── */
section {
    padding: 90px 5vw;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-h);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 1rem;
}

    .eyebrow::before {
        content: '';
        width: 24px;
        height: 2px;
        background: var(--blue-bright);
    }

    .eyebrow.gold {
        color: var(--gold);
    }

        .eyebrow.gold::before {
            background: var(--gold);
        }

.sec-title {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.sec-desc {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    max-width: 580px;
}

    .sec-desc.wide {
        max-width: 720px;
    }

.centered {
    text-align: center;
}

    .centered .sec-desc {
        margin: 0 auto;
    }

    .centered .eyebrow {
        justify-content: center;
    }

        .centered .eyebrow::before {
            display: none;
        }

/* ─── STATS STRIP ─── */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    margin-top: 4rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.stat-cell {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background 0.25s;
}

    .stat-cell:last-child {
        border-right: none;
    }

    .stat-cell:hover {
        background: rgba(21,101,192,0.03);
    }

.stat-num {
    font-family: var(--font-h);
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--blue-bright);
    line-height: 1;
    letter-spacing: -0.03em;
}

    .stat-num sup {
        font-size: 1.2rem;
        vertical-align: super;
        font-weight: 700;
    }

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
}

/* ─── ABOUT ─── */
#about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

    .about-img img {
        width: 100%;
        height: 480px;
        object-fit: cover;
    }

.about-img-badge {
    position: absolute;
    bottom: 24px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.4rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--blue-bright);
}

.badge-num {
    font-family: var(--font-h);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.badge-txt {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: 1.4;
}

.about-text {
}

.about-list {
    list-style: none;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .about-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.9rem;
        font-size: 0.95rem;
        color: var(--text-body);
        line-height: 1.6;
    }

.chk {
    width: 22px;
    height: 22px;
    background: rgba(21,101,192,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-bright);
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ─── SERVICES ─── */
#services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

    .service-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--blue), var(--blue-hover));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s cubic-bezier(.22,1,.36,1);
    }

    .service-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
        border-color: rgba(21,101,192,0.2);
    }

        .service-card:hover::after {
            transform: scaleX(1);
        }

.srv-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: var(--off-white);
}

.service-card h3 {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.7;
}

.srv-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 1.1rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue-bright);
    letter-spacing: 0.03em;
    transition: gap 0.2s;
}

    .srv-link:hover {
        gap: 10px;
    }

/* ─── SOLUTIONS / PRODUCTS ─── */
#solutions {
    background: var(--navy);
    padding: 90px 5vw;
}

    #solutions .eyebrow {
        color: var(--gold-light);
    }

        #solutions .eyebrow::before {
            background: var(--gold-light);
        }

    #solutions .sec-title {
        color: var(--white);
    }

    #solutions .sec-desc {
        color: rgba(255,255,255,0.6);
    }

.tabs-nav {
    display: flex;
    gap: 0.5rem;
    margin: 2.5rem 0 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.7rem 1.25rem;
    font-family: var(--font-b);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
    letter-spacing: 0.02em;
}

    .tab-btn:hover {
        color: rgba(255,255,255,0.8);
    }

    .tab-btn.active {
        color: var(--gold-light);
        border-bottom-color: var(--gold-light);
    }

.tab-panel {
    display: none;
}

    .tab-panel.active {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

.tab-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 360px;
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

    .tab-img::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at center, var(--panel-glow, rgba(21,101,192,0.15)), transparent 70%);
    }

.tab-content {
}

.tab-num {
    font-family: var(--font-h);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: -0.5rem;
}

.tab-content h3 {
    font-family: var(--font-h);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.tab-content p {
    font-size: 0.925rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tab-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

    .tab-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.875rem;
        color: rgba(255,255,255,0.7);
    }

        .tab-features li::before {
            content: '✓';
            width: 18px;
            height: 18px;
            background: rgba(21,101,192,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-light);
            font-size: 0.65rem;
            font-weight: 700;
            flex-shrink: 0;
        }

.btn-tab-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-b);
    font-size: 0.875rem;
    font-weight: 800;
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

    .btn-tab-cta:hover {
        background: var(--gold-light);
        box-shadow: 0 4px 20px rgba(212,160,23,0.4);
        transform: translateY(-1px);
    }

/* ─── WHY CHOOSE US ─── */
#why {
    background: var(--off-white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: box-shadow 0.25s, border-color 0.25s;
}

    .why-item:hover {
        box-shadow: var(--shadow-sm);
        border-color: rgba(21,101,192,0.2);
    }

.why-icon {
    width: 48px;
    height: 48px;
    background: rgba(21,101,192,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.why-item h4 {
    font-family: var(--font-h);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.why-item p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.65;
}

.why-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

    .why-img img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

/* ─── CTA BANNER ─── */
#cta-band {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--blue) 50%, var(--navy) 100%);
    padding: 80px 5vw;
    text-align: center;
}

    #cta-band h2 {
        font-family: var(--font-h);
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        font-weight: 900;
        color: var(--white);
        letter-spacing: -0.025em;
        margin-bottom: 1rem;
    }

    #cta-band p {
        color: rgba(255,255,255,0.65);
        font-size: 1rem;
        max-width: 500px;
        margin: 0 auto 2rem;
        line-height: 1.8;
    }

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--navy);
    font-family: var(--font-b);
    font-size: 0.9rem;
    font-weight: 800;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius);
    transition: box-shadow 0.2s, transform 0.2s;
    letter-spacing: 0.02em;
}

    .btn-cta-white:hover {
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
        transform: translateY(-2px);
    }

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-b);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,0.35);
    transition: border-color 0.2s, background 0.2s;
}

    .btn-cta-outline:hover {
        border-color: rgba(255,255,255,0.8);
        background: rgba(255,255,255,0.08);
    }

/* ─── CLIENTS ─── */
#clients {
    background: var(--white);
    padding: 70px 5vw;
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.client-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.6rem 1.4rem;
    font-family: var(--font-h);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: border-color 0.25s, color 0.25s, box-shadow 0.25s;
}

    .client-chip:hover {
        border-color: var(--blue-bright);
        color: var(--navy);
        box-shadow: var(--shadow-sm);
    }

/* ─── CONTACT ─── */
#contact {
    background: var(--off-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3rem;
}

.contact-left {
}

    .contact-left .sec-desc {
        margin-bottom: 2.5rem;
    }

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ci {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ci-icon {
    width: 42px;
    height: 42px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.ci-body strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.ci-body a, .ci-body span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    transition: color 0.2s;
}

    .ci-body a:hover {
        color: var(--blue-bright);
    }

.contact-form-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

    .contact-form-box h3 {
        font-family: var(--font-h);
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 0.5rem;
    }

    .contact-form-box > p {
        font-size: 0.875rem;
        color: var(--text-muted);
        margin-bottom: 1.75rem;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.1rem;
}

    .form-group label {
        display: block;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 0.45rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        background: var(--off-white);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 0.72rem 1rem;
        font-family: var(--font-b);
        font-size: 0.9rem;
        color: var(--text-dark);
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-muted);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--blue-bright);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(21,101,192,0.1);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 110px;
    }

    .form-group select {
        cursor: pointer;
    }

        .form-group select option {
            background: var(--white);
        }

.btn-form-submit {
    width: 100%;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-b);
    font-size: 0.9rem;
    font-weight: 800;
    padding: 0.85rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

    .btn-form-submit:hover {
        background: var(--blue-hover);
        box-shadow: 0 4px 16px rgba(21,101,192,0.4);
        transform: translateY(-1px);
    }

/* ─── FOOTER ─── */
footer {
    background: var(--navy);
    padding: 60px 5vw 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 3rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.fs-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

    .fs-btn:hover {
        background: rgba(21,101,192,0.3);
        color: var(--white);
        border-color: var(--blue-bright);
    }

.footer-col h5 {
    font-family: var(--font-h);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

    .footer-col ul li a {
        font-size: 0.875rem;
        color: rgba(255,255,255,0.4);
        transition: color 0.2s;
    }

        .footer-col ul li a:hover {
            color: rgba(255,255,255,0.85);
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    flex-wrap: wrap;
    gap: 0.5rem;
}

    .footer-bottom a {
        color: rgba(255,255,255,0.4);
        transition: color 0.2s;
    }

        .footer-bottom a:hover {
            color: rgba(255,255,255,0.7);
        }

/* ─── LOGO in footer ─── */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-mark {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--blue-bright), var(--navy-light));
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .footer-logo-mark svg {
        width: 20px;
        height: 20px;
    }

.footer-logo-text {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
}

    .footer-logo-text span {
        color: var(--blue-hover);
    }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    opacity: 0;
    animation: fadeInUp 0.75s cubic-bezier(.22,1,.36,1) both;
}

.hero-eyebrow {
    animation-delay: 0.1s;
}

.hero-h1 {
    animation-delay: 0.25s;
}

.hero-desc {
    animation-delay: 0.4s;
}

.hero-btns {
    animation-delay: 0.55s;
}

.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s cubic-bezier(.22,1,.36,1), transform 0.65s cubic-bezier(.22,1,.36,1);
}

    .reveal-up.in {
        opacity: 1;
        transform: none;
    }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

        .stats-strip .stat-cell:nth-child(2) {
            border-right: none;
        }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 820px) {
    .about-grid, .why-grid, .contact-wrapper, .tab-panel.active {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-img-badge {
        right: 12px;
    }

    .top-bar-left {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
    }
}

@media (max-width: 600px) {
    section {
        padding: 60px 5vw;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trust-bar {
        justify-content: center;
    }
}



/* CLIENT LOGO CAROUSEL */

.logo-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 40px;
    padding: 10px 0;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

.logo-item {
    min-width: 180px;
    height: 90px;
    background: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .logo-item:hover {
        transform: translateY(-6px);
    }

    .logo-item img {
        max-width: 100%;
        max-height: 55px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.85;
        transition: 0.3s ease;
    }

    .logo-item:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */

@media (max-width: 768px) {
    .logo-item {
        min-width: 140px;
        height: 75px;
        padding: 14px;
    }

    .logo-track {
        gap: 20px;
    }
}
