﻿/* ══ RESET & ROOT ══ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --P: #0089B7;
    --PD: #006a91;
    --PL: #00aee6;
    --P10: rgba(0,137,183,.1);
    --P20: rgba(0,137,183,.2);
    --BK: #000000;
    --TX: #5B83A0;
    --TXD: #1c2e3d;
    --TXL: #8ba5b8;
    --WH: #fff;
    --BG: #f4f8fb;
    --BG2: #eaf3f8;
    --BG3: #e0edf5;
    --BD: #d0e4ef;
    --BD2: #b8d4e5;
    --AC: #FF5722;
    --GR: #00C896;
    --SH1: 0 2px 12px rgba(0,137,183,.1);
    --SH2: 0 6px 28px rgba(0,137,183,.15);
    --SH3: 0 12px 48px rgba(0,137,183,.18);
    --R: 12px;
    --RL: 18px;
    --RX: 24px;
    --FH: 'Urbanist',sans-serif;
    --FB: 'Inter',sans-serif;
    --T: all .28s cubic-bezier(.4,0,.2,1);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--FB);
    background: var(--BG);
    color: var(--TX);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

a {
    text-decoration: none;
    color: inherit
}

h1, h2, h3, h4, h5 {
    font-family: var(--FH);
    color: var(--BK)
}

img {
    max-width: 100%;
    display: block
}

/* ══ LAYOUT UTILITIES ══ */
.wrap {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}
.container{
    margin-top: 60px;
}
.sec {
    padding: 84px 0
}

.sec-teal {
    background: linear-gradient(135deg,var(--P) 0%,var(--PD) 100%)
}

.sec-dark {
    background: var(--BK)
}

.sec-light {
    background: var(--BG2)
}

.tc {
    text-align: center
}

/* ══ CHIP / LABEL ══ */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--P10);
    border: 1px solid var(--P20);
    color: var(--P);
    font-family: var(--FH);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 13px;
    border-radius: 100px;
    margin-bottom: 12px
}

    .chip::before {
        content: '';
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--P);
        animation: pulse 2s infinite
    }

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(1.4)
    }
}

.h2 {
    font-size: clamp(24px,3vw,40px);
    font-weight: 800;
    letter-spacing: -.025em;
    margin-bottom: 12px;
    line-height: 1.15
}

    .h2 em {
        font-style: normal;
        color: var(--P)
    }

.sub {
    font-size: 16px;
    color: var(--TX);
    line-height: 1.75;
    max-width: 580px
}

/* ══ BUTTONS ══ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: var(--FH);
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: var(--R);
    padding: 13px 26px;
    min-height: 48px;
    transition: var(--T);
    white-space: nowrap
}

.btn-p {
    background: var(--P);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,137,183,.32)
}

    .btn-p:hover {
        background: var(--PD);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,137,183,.42)
    }

.btn-w {
    background: #fff;
    color: var(--P);
    box-shadow: var(--SH2)
}

    .btn-w:hover {
        background: var(--BG2);
        transform: translateY(-2px)
    }

.btn-o {
    background: transparent;
    border: 2px solid var(--P);
    color: var(--P)
}

    .btn-o:hover {
        background: var(--P);
        color: #fff
    }

.btn-ow {
    background: transparent;
    border: 2px solid rgba(255,255,255,.4);
    color: #fff
}

    .btn-ow:hover {
        background: rgba(255,255,255,.12);
        border-color: #fff
    }

.btn-ac {
    background: var(--AC);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255,87,34,.28)
}

    .btn-ac:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(255,87,34,.4)
    }

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 14px
}

.btn-xl {
    padding: 18px 38px;
    font-size: 17px;
    border-radius: 16px
}

.btn-full {
    width: 100%;
    justify-content: center
}

/* ══ NAVBAR ══ */
.navbar {
    position: fixed;
    top: 40px; /* Match the height of .header-topbar */
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--BD);
    transition: var(--T);
}
    .navbar.scrolled {
        box-shadow: 0 2px 24px rgba(0,0,0,.07)
    }

.nb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px
}

.logo {
    font-family: var(--FH);
    font-size: 21px;
    font-weight: 900;
    color: var(--BK);
    letter-spacing: -.03em
}

    .logo b {
        color: var(--P)
    }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none
}

    .nav-menu a {
        font-family: var(--FH);
        font-size: 14px;
        font-weight: 600;
        color: var(--TX);
        transition: var(--T)
    }

        .nav-menu a:hover {
            color: var(--P)
        }

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px
}

.nav-call {
    font-family: var(--FH);
    font-size: 14px;
    font-weight: 700;
    color: var(--P);
    display: flex;
    align-items: center;
    gap: 5px
}

.hbg {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px
}

    .hbg span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--BK);
        border-radius: 2px;
        transition: var(--T)
    }

.mm {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid var(--BD);
    padding: 18px 22px
}

    .mm.open {
        display: block
    }

    .mm ul {
        list-style: none
    }

        .mm ul li a {
            display: block;
            padding: 12px 0;
            font-family: var(--FH);
            font-size: 15px;
            font-weight: 600;
            color: var(--TX);
            border-bottom: 1px solid var(--BD);
            transition: var(--T)
        }

            .mm ul li a:hover {
                color: var(--P);
                padding-left: 8px
            }

.mm-cta {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 14px
}

/* ══ HERO ══ */
.hero {
    min-height: 100vh;
    padding: 66px 0 0;
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.hero-circle1 {
    position: absolute;
    top: -100px;
    right: -80px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle,rgba(0,137,183,.09) 0%,transparent 65%);
    border-radius: 50%
}

.hero-circle2 {
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,rgba(0,137,183,.06) 0%,transparent 65%);
    border-radius: 50%
}

.hero-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--BD) 1px,transparent 1px);
    background-size: 36px 36px;
    opacity: .5
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 64px 0 72px
}

.hero-lft {
    padding-right: 10px
}

.bcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--TXL);
    margin-bottom: 18px
}

    .bcrumb a {
        color: var(--P);
        font-weight: 600;
        font-family: var(--FH)
    }

.hero h1 {
    font-size: clamp(34px,4.8vw,58px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 18px;
    color: var(--BK)
}

    .hero h1 span {
        color: var(--P);
        display: block
    }

.hero-desc {
    font-size: 17px;
    color: var(--TX);
    line-height: 1.78;
    margin-bottom: 30px;
    max-width: 500px
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 38px
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.badge-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--BG);
    border: 1px solid var(--BD);
    border-radius: 100px;
    padding: 7px 14px;
    font-family: var(--FH);
    font-size: 12px;
    font-weight: 600;
    color: var(--TXD)
}

    .badge-pill svg {
        color: var(--P);
        flex-shrink: 0
    }

/* ══ HERO STATS ══ */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--BD)
}

.hstat {
    text-align: center;
    padding: 14px 10px;
    background: var(--BG);
    border: 1px solid var(--BD);
    border-radius: var(--R)
}

.hstat-n {
    font-family: var(--FH);
    font-size: 24px;
    font-weight: 900;
    color: var(--P);
    line-height: 1
}

.hstat-l {
    font-size: 11px;
    color: var(--TXL);
    margin-top: 4px;
    font-weight: 500;
    font-family: var(--FH)
}

/* ══ FORM CARD ══ */
.fcard {
    background: #fff;
    border: 1.5px solid var(--BD2);
    border-radius: var(--RX);
    padding: 32px;
    box-shadow: var(--SH3);
    position: relative;
    overflow: hidden
}

    .fcard::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg,var(--P),var(--PL))
    }

.fcard-head h3 {
    font-family: var(--FH);
    font-size: 19px;
    font-weight: 800;
    color: var(--BK);
    margin-bottom: 4px
}

.fcard-head p {
    font-size: 13px;
    color: var(--TX);
    margin-bottom: 20px
}

.fg {
    margin-bottom: 12px
}

    .fg label {
        display: block;
        font-family: var(--FH);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .07em;
        color: var(--TX);
        margin-bottom: 4px
    }

.fi {
    width: 100%;
    background: var(--BG);
    border: 1.5px solid var(--BD);
    border-radius: 10px;
    padding: 11px 14px;
    font-family: var(--FB);
    font-size: 14px;
    color: var(--BK);
    outline: none;
    transition: var(--T);
    min-height: 44px
}

    .fi::placeholder {
        color: #b0c5d4
    }

    .fi:focus {
        border-color: var(--P);
        background: #fff;
        box-shadow: 0 0 0 3px rgba(0,137,183,.1)
    }

.fi-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

select.fi {
    cursor: pointer
}

textarea.fi {
    resize: vertical;
    min-height: 72px
}

.fsub {
    width: 100%;
    padding: 14px;
    background: var(--P);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: var(--FH);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--T);
    box-shadow: 0 4px 16px rgba(0,137,183,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 50px;
    margin-top: 4px
}

    .fsub:hover {
        background: var(--PD);
        transform: translateY(-2px);
        box-shadow: 0 8px 26px rgba(0,137,183,.4)
    }

.f-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 11px;
    color: var(--TXL);
    margin-top: 8px
}

.f-ok {
    display: none;
    text-align: center;
    padding: 24px 0
}

    .f-ok.show {
        display: block
    }

.f-ok-ic {
    font-size: 48px;
    margin-bottom: 10px
}

.f-ok-t {
    font-family: var(--FH);
    font-size: 20px;
    font-weight: 800;
    color: var(--P);
    margin-bottom: 6px
}

.f-ok-m {
    font-size: 14px;
    color: var(--TX)
}

/* ══ TRUST BAR ══ */
.tbar {
    background: var(--P);
    padding: 12px 0;
    overflow: hidden
}

.tbar-in {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

.titem {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 18px;
    font-family: var(--FH);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.95);
    border-right: 1px solid rgba(255,255,255,.18)
}

    .titem:last-child {
        border-right: none
    }

    .titem svg {
        flex-shrink: 0;
        opacity: .9
    }

/* ══ CLIENT LOGOS ══ */
.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--BD);
    border-radius: var(--RL)
}

.logo-pill {
    font-family: var(--FH);
    font-size: 14px;
    font-weight: 700;
    color: var(--TXL);
    padding: 8px 18px;
    border-radius: 8px;
    background: var(--BG);
    letter-spacing: .02em
}

/* ══ SERVICES ══ */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 44px
}

.svc {
    background: #fff;
    border: 1px solid var(--BD);
    border-radius: var(--RL);
    padding: 26px;
    transition: var(--T);
    position: relative;
    overflow: hidden;
    cursor: default
}

    .svc::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--P);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: var(--T)
    }

    .svc:hover {
        transform: translateY(-4px);
        box-shadow: var(--SH2);
        border-color: var(--BD2)
    }

        .svc:hover::after {
            transform: scaleY(1)
        }

    .svc.top {
        border-top: 3px solid var(--P)
    }

.svc-ico {
    width: 50px;
    height: 50px;
    background: var(--P10);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    flex-shrink: 0
}

.svc-t {
    font-family: var(--FH);
    font-size: 15px;
    font-weight: 700;
    color: var(--BK);
    margin-bottom: 8px;
    line-height: 1.3
}

.svc-d {
    font-size: 13px;
    color: var(--TX);
    line-height: 1.65
}

.svc-tag {
    margin-top: 12px;
    display: inline-block;
    font-family: var(--FH);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--P);
    background: var(--P10);
    border-radius: 6px;
    padding: 3px 9px
}

/* ══ WHY US ══ */
.why-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    margin-top: 44px
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--BD);
    border-radius: var(--RL);
    transition: var(--T)
}

    .why-item:hover {
        border-color: var(--P);
        box-shadow: var(--SH1);
        transform: translateX(4px)
    }

.why-ico {
    width: 44px;
    height: 44px;
    background: var(--P10);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0
}

.why-t {
    font-family: var(--FH);
    font-size: 15px;
    font-weight: 700;
    color: var(--BK);
    margin-bottom: 5px
}

.why-d {
    font-size: 13px;
    color: var(--TX);
    line-height: 1.6
}

.why-visual {
    background: linear-gradient(135deg,var(--P) 0%,var(--PD) 100%);
    border-radius: var(--RX);
    padding: 36px;
    position: relative;
    overflow: hidden
}

    .why-visual::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 220px;
        height: 220px;
        background: rgba(255,255,255,.07);
        border-radius: 50%
    }

    .why-visual::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: -40px;
        width: 160px;
        height: 160px;
        background: rgba(255,255,255,.05);
        border-radius: 50%
    }

.wv-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    position: relative;
    z-index: 1
}

.wvc {
    background: rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    backdrop-filter: blur(6px)
}

.wvc-n {
    font-family: var(--FH);
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    line-height: 1
}

.wvc-l {
    font-size: 11px;
    color: rgba(255,255,255,.75);
    margin-top: 4px;
    font-weight: 600;
    font-family: var(--FH)
}

.wvc-wide {
    grid-column: 1/-1
}

.wv-quote {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    background: rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 16px
}

    .wv-quote p {
        font-family: var(--FH);
        font-size: 14px;
        color: rgba(255,255,255,.9);
        line-height: 1.6;
        font-style: italic
    }

    .wv-quote cite {
        font-size: 12px;
        color: rgba(255,255,255,.65);
        margin-top: 8px;
        display: block;
        font-style: normal
    }

/* ══ INDUSTRIES ══ */
.ind-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 14px;
    margin-top: 44px
}

.ind-card {
    background: #fff;
    border: 1px solid var(--BD);
    border-radius: var(--R);
    padding: 18px 12px;
    text-align: center;
    transition: var(--T)
}

    .ind-card:hover {
        border-color: var(--P);
        background: var(--P10);
        transform: translateY(-3px)
    }

.ind-ico {
    font-size: 26px;
    margin-bottom: 8px
}

.ind-nm {
    font-family: var(--FH);
    font-size: 12px;
    font-weight: 700;
    color: var(--BK)
}

/* ══ PROCESS ══ */
.proc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    margin-top: 44px
}

.proc-card {
    background: #fff;
    border: 1px solid var(--BD);
    border-radius: var(--RL);
    padding: 26px;
    transition: var(--T);
    position: relative
}

    .proc-card:hover {
        border-color: var(--P);
        box-shadow: var(--SH1);
        transform: translateY(-3px)
    }

.proc-num {
    width: 44px;
    height: 44px;
    background: var(--P);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--FH);
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(0,137,183,.28)
}

.proc-t {
    font-family: var(--FH);
    font-size: 15px;
    font-weight: 700;
    color: var(--BK);
    margin-bottom: 8px
}

.proc-d {
    font-size: 13px;
    color: var(--TX);
    line-height: 1.65
}

/* ══ TESTIMONIALS ══ */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 44px
}

.testi {
    background: #fff;
    border: 1px solid var(--BD);
    border-radius: var(--RL);
    padding: 26px;
    transition: var(--T);
    position: relative
}

    .testi:hover {
        border-color: var(--P);
        box-shadow: var(--SH1);
        transform: translateY(-3px)
    }

.testi-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px
}

.testi-text {
    font-size: 14px;
    color: var(--TX);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 18px
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px
}

.testi-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--P),var(--PL));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--FH);
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.testi-name {
    font-family: var(--FH);
    font-size: 14px;
    font-weight: 700;
    color: var(--BK)
}

.testi-role {
    font-size: 12px;
    color: var(--TXL)
}

/* ══ INFO / LONG-TAIL ══ */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 44px
}

.icard {
    background: #fff;
    border: 1px solid var(--BD);
    border-radius: var(--RL);
    padding: 24px;
    transition: var(--T)
}

    .icard:hover {
        border-color: var(--P);
        box-shadow: var(--SH1)
    }

    .icard h3 {
        font-family: var(--FH);
        font-size: 15px;
        font-weight: 700;
        color: var(--BK);
        margin-bottom: 9px;
        padding-left: 12px;
        border-left: 3px solid var(--P)
    }

    .icard p {
        font-size: 13px;
        color: var(--TX);
        line-height: 1.7
    }

.cost-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-top: 12px
}

    .cost-tbl th {
        background: var(--P10);
        color: var(--BK);
        font-family: var(--FH);
        font-weight: 700;
        padding: 8px 12px;
        text-align: left
    }

    .cost-tbl td {
        padding: 8px 12px;
        border-bottom: 1px solid var(--BD);
        color: var(--TX)
    }

    .cost-tbl tr:last-child td {
        border-bottom: none
    }

/* ══ LOCAL SECTION ══ */
.local-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center
}

.local-txt .h2 {
    color: #fff
}

.local-txt p {
    font-size: 16px;
    color: rgba(255,255,255,.82);
    line-height: 1.75;
    margin-bottom: 16px
}

.area-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px
}

.area-chip {
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 100px;
    padding: 5px 13px;
    font-family: var(--FH);
    font-size: 12px;
    font-weight: 600;
    color: #fff
}

.local-card {
    background: #fff;
    border-radius: var(--RX);
    padding: 32px;
    box-shadow: var(--SH3)
}

    .local-card h3 {
        font-family: var(--FH);
        font-size: 18px;
        font-weight: 800;
        color: var(--BK);
        margin-bottom: 20px
    }

.cinfo {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    margin-bottom: 16px
}

.cinfo-ico {
    width: 38px;
    height: 38px;
    background: var(--P10);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0
}

.cinfo-lbl {
    font-family: var(--FH);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--P);
    margin-bottom: 3px
}

.cinfo-val {
    font-size: 13px;
    color: var(--TXD);
    line-height: 1.5
}

    .cinfo-val a {
        color: var(--P);
        font-weight: 700
    }

/* ══ FAQ ══ */
.faq-wrap {
    max-width: 780px;
    margin: 44px auto 0;
    display: flex;
    flex-direction: column;
    gap: 9px
}

.fq {
    background: #fff;
    border: 1.5px solid var(--BD);
    border-radius: var(--RL);
    overflow: hidden;
    transition: var(--T)
}

    .fq.open {
        border-color: var(--P);
        box-shadow: 0 4px 16px rgba(0,137,183,.1)
    }

.fq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 20px;
    cursor: pointer;
    font-family: var(--FH);
    font-size: 15px;
    font-weight: 700;
    color: var(--BK)
}

.fq-ico {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background: var(--P10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--P);
    transition: var(--T)
}

.fq.open .fq-ico {
    transform: rotate(45deg);
    background: var(--P);
    color: #fff
}

.fq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 14px;
    color: var(--TX);
    line-height: 1.7;
    transition: max-height .4s ease,padding .3s ease
}

.fq.open .fq-a {
    max-height: 400px;
    padding-bottom: 16px
}

/* ══ CTA BANNER ══ */
.cta-box {
    background: var(--BK);
    border-radius: var(--RX);
    padding: 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 22px
}

    .cta-box::before {
        content: '';
        position: absolute;
        top: -80px;
        left: 50%;
        transform: translateX(-50%);
        width: 500px;
        height: 500px;
        background: radial-gradient(circle,rgba(0,137,183,.15) 0%,transparent 65%);
        border-radius: 50%;
        pointer-events: none
    }

    .cta-box h2 {
        font-size: clamp(26px,3.5vw,42px);
        font-weight: 900;
        color: #fff;
        margin-bottom: 14px;
        letter-spacing: -.025em;
        position: relative
    }

    .cta-box p {
        font-size: 16px;
        color: rgba(255,255,255,.58);
        max-width: 480px;
        margin: 0 auto 28px;
        line-height: 1.7;
        position: relative
    }

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative
}

/* ══ BOTTOM FORM ══ */
.btm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    margin-top: 44px;
    align-items: start
}

.btm-info h3 {
    font-family: var(--FH);
    font-size: 22px;
    font-weight: 800;
    color: var(--BK);
    margin-bottom: 20px
}

.btm-form-card {
    background: #fff;
    border: 1px solid var(--BD);
    border-radius: var(--RX);
    padding: 32px;
    box-shadow: var(--SH2)
}

    .btm-form-card h3 {
        font-family: var(--FH);
        font-size: 18px;
        font-weight: 800;
        color: var(--BK);
        margin-bottom: 20px
    }

/* ══ FOOTER ══ */
footer {
    background: var(--BK);
    padding: 56px 0 20px
}

.ft-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 42px;
    margin-bottom: 42px
}

.ft-brand .logo {
    font-size: 20px;
    display: block;
    margin-bottom: 12px;
    color: #fff
}

.ft-brand p {
    font-size: 13px;
    color: rgba(255,255,255,.42);
    line-height: 1.72;
    margin-bottom: 16px
}

.ft-col h4 {
    font-family: var(--FH);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.85);
    margin-bottom: 12px
}

.ft-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

    .ft-links a {
        font-size: 13px;
        color: rgba(255,255,255,.42);
        transition: var(--T)
    }

        .ft-links a:hover {
            color: #fff;
            padding-left: 4px
        }

.ft-addr {
    font-size: 13px;
    color: rgba(255,255,255,.42);
    line-height: 1.8;
    font-style: normal
}

    .ft-addr a {
        color: var(--PL);
        font-weight: 600
    }

.ft-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px
}

    .ft-bottom p {
        font-size: 12px;
        color: rgba(255,255,255,.35)
    }

/* ══ STICKY MOBILE ══ */
.stky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--BD);
    padding: 9px 14px;
    gap: 9px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.08)
}

    .stky a {
        flex: 1;
        text-align: center;
        padding: 12px;
        border-radius: 10px;
        font-family: var(--FH);
        font-size: 14px;
        font-weight: 700;
        display: block
    }

.stky-call {
    background: var(--P);
    color: #fff
}

.stky-wa {
    background: #25D366;
    color: #fff
}

/* ══ SCROLL REVEAL ══ */
.rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease,transform .55s ease
}

    .rv.vis {
        opacity: 1;
        transform: none
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.an {
    animation: fadeUp .65s ease both
}

.d1 {
    animation-delay: .1s
}

.d2 {
    animation-delay: .2s
}

.d3 {
    animation-delay: .3s
}

.d4 {
    animation-delay: .4s
}

/* ══ RESPONSIVE ══ */
@media(max-width:1024px) {
    .hero-inner {
        grid-template-columns: 1fr
    }

        .hero-inner .fcard {
            max-width: 520px
        }

    .svc-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .why-wrap {
        grid-template-columns: 1fr
    }

    .ind-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .testi-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .proc-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .ft-grid {
        grid-template-columns: 1fr 1fr
    }

    .local-wrap {
        grid-template-columns: 1fr
    }

    .btm-grid {
        grid-template-columns: 1fr
    }

    .hero-stats {
        grid-template-columns: repeat(2,1fr)
    }
}

@media(max-width:768px) {
    .nav-menu, .nav-right {
        display: none
    }

    .hbg {
        display: flex
    }

    .svc-grid {
        grid-template-columns: 1fr
    }

    .fi-row {
        grid-template-columns: 1fr
    }

    .hero-btns {
        flex-direction: column
    }

        .hero-btns .btn {
            width: 100%
        }

    .cta-btns {
        flex-direction: column;
        align-items: center
    }

    .stky {
        display: flex
    }

    body {
        padding-bottom: 64px
    }

    .sec {
        padding: 60px 0
    }

    .tbar-in {
        gap: 0
    }

    .titem {
        font-size: 12px;
        padding: 5px 10px
    }

    .info-grid {
        grid-template-columns: 1fr
    }

    .ft-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .cta-box {
        padding: 40px 22px;
        margin: 0 14px
    }

    .ind-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .testi-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    .hero h1 {
        font-size: 30px
    }

    .ind-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .hero-stats {
        grid-template-columns: repeat(2,1fr)
    }

    .proc-grid {
        grid-template-columns: 1fr
    }

    .logos-row {
        gap: 16px
    }
}
/* ============================================
   AI Tool Dropdown — AzusysTech Light Navbar Theme
   White navbar · Teal accent (#0ea5e9 / #0891b2)
   ============================================ */

/* ── Dropdown parent ── */
.has-dropdown {
    position: relative;
    list-style: none;
    display: inline-block; /* sit inline with other nav items */
}

    /* ── Main "AI Tool" trigger link ── */
    .has-dropdown .links-main {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        text-decoration: none;
/*        font-weight: 500;*/
/*        font-size: 15px;*/
        color: inherit; /* matches the dark nav text in screenshot */
        padding: 6px 4px;
        border-radius: 4px;
        transition: color 0.2s;
        white-space: nowrap;
        background: none;
        border: none;
       
    }

        /* Chevron arrow */
        .has-dropdown .links-main::after {
            content: "";
            display: inline-block;
            width: 7px;
            height: 7px;
            border-right: 2px solid #64748b;
            border-bottom: 2px solid #64748b;
            transform: rotate(45deg) translateY(-2px);
            transition: transform 0.22s ease, border-color 0.2s;
            flex-shrink: 0;
            margin-top: 1px;
        }

    /* Hover / open states */
    .has-dropdown:hover .links-main,
    .has-dropdown:focus-within .links-main {
        color: #0891b2; /* teal from the site's primary colour */
    }

        .has-dropdown:hover .links-main::after,
        .has-dropdown:focus-within .links-main::after {
            transform: rotate(-135deg) translateY(-2px);
            border-color: #0891b2;
        }

    /* ── Submenu panel ── */
    .has-dropdown .submenu {
        position: absolute;
        top: calc(100% + 14px);
        left: 50%;
        transform: translateX(-50%) translateY(-4px);
        min-width: 220px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 8px;
        list-style: none;
        margin: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 16px 48px rgba(0, 0, 0, 0.10);
        /* Hidden by default */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
        z-index: 9999;
    }

        /* Top notch triangle */
        .has-dropdown .submenu::before {
            content: "";
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            width: 10px;
            height: 10px;
            background: #ffffff;
            border-left: 1px solid #e2e8f0;
            border-top: 1px solid #e2e8f0;
        }

    /* Show on hover or keyboard focus */
    .has-dropdown:hover .submenu,
    .has-dropdown:focus-within .submenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    /* ── Each submenu <li> ── */
    .has-dropdown .submenu li {
        list-style: none;
    }

        /* ── Each submenu link ── */
        .has-dropdown .submenu li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 14px;
            border-radius: 8px;
            font-size: 13.5px;
            font-weight: 500;
            color: #334155; /* slate-700 — readable on white */
            text-decoration: none;
            transition: background 0.15s, color 0.15s, padding-left 0.15s;
            white-space: nowrap;
        }

            /* Teal dot indicator */
            .has-dropdown .submenu li a::before {
                content: "";
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: #0891b2;
                flex-shrink: 0;
                opacity: 0;
                transform: scale(0.4);
                transition: opacity 0.15s, transform 0.15s;
            }

            .has-dropdown .submenu li a:hover {
                background: #f0f9ff; /* very light teal tint */
                color: #0891b2;
                padding-left: 18px;
            }

                .has-dropdown .submenu li a:hover::before {
                    opacity: 1;
                    transform: scale(1);
                }

            /* Active / current page */
            .has-dropdown .submenu li a.active {
                background: #e0f2fe;
                color: #0369a1;
                font-weight: 600;
            }

                .has-dropdown .submenu li a.active::before {
                    opacity: 1;
                    transform: scale(1);
                }

        /* Optional divider <li class="divider"> */
        .has-dropdown .submenu li.divider {
            height: 1px;
            background: #f1f5f9;
            margin: 6px 8px;
            padding: 0;
        }

    /* ── Thin teal top border accent on the panel ── */
    .has-dropdown .submenu::after {
        content: "";
        position: absolute;
        top: 0;
        left: 16px;
        right: 16px;
        height: 2px;
        background: linear-gradient(90deg, #0891b2, #06b6d4);
        border-radius: 2px 2px 0 0;
    }

/* ============================================
   RESPONSIVE — mobile (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
    .has-dropdown {
        display: block;
        width: 100%;
    }
 
        .has-dropdown .links-main {
            width: 100%;
            justify-content: space-between;
            padding: 12px 16px;
            font-size: 15px;
            color: inherit;
            border-bottom: 1px solid #f1f5f9;
        }

        /* Submenu renders inline below the trigger on mobile */
        .has-dropdown .submenu {
            position: static;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: none;
            box-shadow: none;
            border: none;
            border-top: none;
            border-radius: 0;
            background: #f8fafc;
            padding: 4px 0 4px 12px;
            transition: none;
            display: none; /* toggled via JS .open class */
        }

            .has-dropdown .submenu::before,
            .has-dropdown .submenu::after {
                display: none;
            }

        /* Show when .open is toggled on the parent */
        .has-dropdown.open .submenu {
            display: block;
        }

        /* Flip chevron when open */
        .has-dropdown.open .links-main::after {
            transform: rotate(-135deg) translateY(-2px);
            border-color: #0891b2;
        }

        .has-dropdown .submenu li a {
            padding: 10px 14px;
            font-size: 14px;
            color: #475569;
            border-radius: 6px;
        }

            .has-dropdown .submenu li a:hover {
                background: #e0f2fe;
                padding-left: 18px;
            }
}

/* ══════════════════════════════════════════════
   ADDITIONS — paste at the BOTTOM of style.css
   Covers: header top bar, mobile sub-menus,
   footer social icons
   ══════════════════════════════════════════════ */

/* ── HEADER TOP BAR ── */
.header-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px; /* Define a height */
    background: var(--BK);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 7px 0;
    font-size: 12px;
    z-index: 1001; /* Must be higher than navbar or equal */
}

.htb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.htb-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .htb-social a {
        color: rgba(255,255,255,.45);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        border-radius: 6px;
        border: 1px solid rgba(255,255,255,.1);
        transition: var(--T);
    }

        .htb-social a:hover {
            color: var(--PL);
            border-color: var(--P);
            background: rgba(0,137,183,.12);
        }

.htb-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .htb-links a {
        color: rgba(255,255,255,.45);
        font-family: var(--FH);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .04em;
        transition: var(--T);
    }

        .htb-links a:hover {
            color: var(--PL);
        }

/* Push navbar down to account for top bar height (~37px) */
/*.navbar {
    top: 37px;
}*/

/* ── FOOTER SOCIAL ICONS ── */
.ft-social {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

    .ft-social a {
        color: rgba(255,255,255,.35);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,.1);
        transition: var(--T);
    }

        .ft-social a:hover {
            color: #fff;
            border-color: var(--P);
            background: rgba(0,137,183,.2);
        }

/* ── MOBILE MENU SUB-MENUS ── */
.mm-dropdown .mm-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-family: var(--FH);
    font-size: 15px;
    font-weight: 600;
    color: var(--TX);
    border-bottom: 1px solid var(--BD);
    cursor: pointer;
    user-select: none;
    transition: var(--T);
}

    .mm-dropdown .mm-toggle:hover {
        color: var(--P);
        padding-left: 8px;
    }

.mm-arrow {
    font-size: 18px;
    line-height: 1;
    color: var(--TXL);
    transition: transform .25s ease;
    display: inline-block;
}

.mm-dropdown.mm-open .mm-arrow {
    transform: rotate(90deg);
    color: var(--P);
}

.mm-sub {
    display: none;
    list-style: none;
    padding-left: 12px;
    border-left: 2px solid var(--P20);
    margin: 4px 0 8px;
}

.mm-dropdown.mm-open .mm-sub {
    display: block;
}

.mm-sub li a {
    display: block;
    padding: 9px 8px;
    font-family: var(--FH);
    font-size: 14px;
    font-weight: 500;
    color: var(--TX);
    border-bottom: 1px solid var(--BD);
    transition: var(--T);
}

    .mm-sub li a:hover {
        color: var(--P);
        padding-left: 14px;
    }

/* ── MOBILE SOCIAL ICONS IN MENU ── */
.mm-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--BD);
}

    .mm-social a {
        color: var(--TXL);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        border: 1px solid var(--BD);
        transition: var(--T);
    }

        .mm-social a:hover {
            color: var(--P);
            border-color: var(--P);
            background: var(--P10);
        }

/* ── RESPONSIVE: hide top bar on very small screens ── */
@media (max-width: 480px) {
    .header-topbar {
        display: none;
    }

    .navbar {
        top: 0;
    }
}

/* ══ LIGHT MODE OVERRIDES ══ */
#particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ── HERO ── */
.az-hero {

    position: relative;
    min-height: 100vh;
    background: #f4f8fb;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.slider-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    transition: background-image .8s ease;
}

    .slider-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(105deg,rgba(244,248,251,.97) 0%,rgba(234,243,248,.88) 45%,rgba(224,237,245,.70) 100%);
    }

    .slider-bg[data-bg="0"] {
        background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1600&q=80');
    }

    .slider-bg[data-bg="1"] {
        background-image: url('https://images.unsplash.com/photo-1555774698-0b77e0d5fac6?w=1600&q=80');
    }

    .slider-bg[data-bg="2"] {
        background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1600&q=80');
    }

    .slider-bg[data-bg="3"] {
        background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1600&q=80');
    }

.az-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0px 32px 40px;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 32px;
    align-items: center;
}

    /* prevent left slider column from overflowing the grid */
    .az-hero-inner > div:first-child {
        min-width: 0;
        overflow: hidden;
    }

/* ── SLIDE TRACK (horizontal sliding) ── */
.slides-viewport {
    overflow: hidden;
    position: relative;
    width: 100%;
    min-width: 0;
}

.slides-track {
    display: flex;
    transition: transform 0.65s cubic-bezier(.77,0,.18,1);
    will-change: transform;
}

.slide-content {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0,137,183,.1);
    border: 1px solid rgba(0,137,183,.3);
    color: var(--P);
    font-family: var(--FH);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}

    .slide-tag::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--P);
        animation: pulse 2s infinite;
        flex-shrink: 0;
    }

.slide-h1 {
    font-family: var(--FH);
    font-size: clamp(26px,3vw,42px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -.03em;
    color: var(--BK);
    margin-bottom: 6px;
}

    .slide-h1 span {
        color: var(--P);
        display: block;
    }

.slide-sub {
    font-family: var(--FH);
    font-size: 13px;
    font-weight: 600;
    color: var(--TX);
    margin-bottom: 10px;
}

.slide-desc {
    font-size: 13px;
    color: var(--TX);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 20px;
}

.slide-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* controls */
.slider-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.sl-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--BD);
    background: #fff;
    color: var(--TX);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
    box-shadow: var(--SH1);
}

    .sl-btn:hover {
        border-color: var(--P);
        background: var(--P10);
        color: var(--P);
    }

.sl-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.sl-dot {
    height: 6px;
    border-radius: 3px;
    background: var(--BD2);
    cursor: pointer;
    transition: all .35s ease;
    width: 8px;
}

    .sl-dot.sd-active {
        width: 28px;
        background: var(--P);
    }

.sl-count {
    font-family: var(--FH);
    font-size: 12px;
    color: var(--TXL);
    margin-left: 4px;
}

/* hero stats */
.hero-stats-light {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--BD);
}

.hsl {
    text-align: center;
    padding: 10px 8px;
    background: #fff;
    border: 1px solid var(--BD);
    border-radius: var(--R);
    box-shadow: var(--SH1);
    transition: all .3s ease;
}

    .hsl:hover {
        border-color: var(--P);
        box-shadow: var(--SH2);
        transform: translateY(-2px);
    }

.hsl-n {
    font-family: var(--FH);
    font-size: 20px;
    font-weight: 900;
    color: var(--P);
    line-height: 1;
}

.hsl-l {
    font-size: 11px;
    color: var(--TXL);
    margin-top: 4px;
    font-weight: 500;
    font-family: var(--FH);
}

/* light form card */
.fcard-light {
    background: #fff;
    border: 1.5px solid var(--BD2);
    border-radius: var(--RX);
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--SH3);
}

    .fcard-light::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,var(--P),var(--PL));
    }

    .fcard-light .fcard-head h3 {
        color: var(--BK);
        font-size: 16px;
        font-weight: 800;
        margin-bottom: 3px;
    }

    .fcard-light .fcard-head p {
        color: var(--TX);
        font-size: 12px;
        margin-bottom: 12px;
    }

/* light sections */
.sec-lt {
    background: #fff;
    padding: 84px 0;
}

.sec-lt2 {
    background: var(--BG2);
    padding: 84px 0;
}

.sec-lt3 {
    background: var(--BG);
    padding: 84px 0;
}

/* light headings */
.light-h2 {
    font-family: var(--FH);
    font-size: clamp(28px,3.5vw,46px);
    font-weight: 900;
    letter-spacing: -.03em;
    color: var(--BK);
    line-height: 1.1;
    margin-bottom: 12px;
}

    .light-h2 em {
        font-style: normal;
        color: var(--P);
    }

.chip-light {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--P10);
    border: 1px solid var(--P20);
    color: var(--P);
    font-family: var(--FH);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 13px;
    border-radius: 100px;
    margin-bottom: 14px;
}

    .chip-light::before {
        content: '';
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--P);
        animation: pulse 2s infinite;
    }


/* service cards light */
.svc-light {
    display: flex; 
    flex-direction: column;
    align-items: center; 
    text-align: center;
    background: #fff;
    border: 1px solid var(--BD);
    border-radius: var(--RL);
    padding: 28px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--SH1);
    height: 100%; /* Ensure cards in a row have equal height */
}

    /* Icon Box Centering */
    .svc-light .svc-ico {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px; /* Size of the emoji */
        width: 70px; /* Fixed width */
        height: 70px; /* Fixed height */
        border-radius: 50%;
        margin-bottom: 20px; /* Gap below the icon */

        background: var(--P10);
        border: 1px solid var(--P20);
    }

/* Push the tag to the bottom if content is uneven */
.svc-tag {
    margin-top: auto; /* Pushes tag to bottom of card */
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

    .svc-light::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--P);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: all .3s ease;
    }

    .svc-light:hover {
        border-color: var(--BD2);
        transform: translateY(-6px);
        box-shadow: var(--SH2);
    }

        .svc-light:hover::after {
            transform: scaleY(1);
        }

    .svc-light .svc-ico {
       
        background: var(--P10);
        border: 1px solid var(--P20);
    }

    .svc-light .svc-t {
        color: var(--BK);
    }

    .svc-light .svc-d {
        color: var(--TX);
    }

    .svc-light .svc-tag {
        background: var(--P10);
        color: var(--P);
    }

/* about animation box — light */
.anim-box {
    position: relative;
    border-radius: var(--RX);
    overflow: hidden;
    background: linear-gradient(135deg,var(--BG2) 0%,var(--BG3) 100%);
    border: 1px solid var(--BD2);
    padding: 36px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--SH2);
}

    .anim-box::before {
        content: '';
        position: absolute;
        top: -80px;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: 300px;
        background: radial-gradient(circle,rgba(0,137,183,.12) 0%,transparent 65%);
        border-radius: 50%;
        animation: floatGlow 4s ease-in-out infinite;
    }

@keyframes floatGlow {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: .7
    }

    50% {
        transform: translateX(-50%) translateY(-20px);
        opacity: 1
    }
}

.orbit-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
}

.orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--BD2);
}

.orbit-1 {
    animation: spin 10s linear infinite;
}

.orbit-2 {
    inset: 20px;
    border-color: var(--BD);
    animation: spin 14s linear infinite reverse;
}

.orbit-dot {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--P);
    box-shadow: 0 0 10px rgba(0,137,183,.5);
}

.orbit-dot2 {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--GR);
    box-shadow: 0 0 10px rgba(0,200,150,.5);
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.anim-center {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle,rgba(0,137,183,.15) 0%,rgba(0,137,183,.03) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border: 1.5px solid var(--BD2);
    box-shadow: 0 0 24px rgba(0,137,183,.18);
    animation: pulse3d 3s ease-in-out infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

@keyframes pulse3d {
    0%, 100% {
        box-shadow: 0 0 14px rgba(0,137,183,.18);
        transform: translate(-50%,-50%) scale(1)
    }

    50% {
        box-shadow: 0 0 32px rgba(0,137,183,.32);
        transform: translate(-50%,-50%) scale(1.05)
    }
}

.anim-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.anim-stat {
    background: #fff;
    border: 1px solid var(--BD);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    transition: all .3s;
    box-shadow: var(--SH1);
}

    .anim-stat:hover {
        border-color: var(--P);
        box-shadow: var(--SH2);
        transform: translateY(-2px);
    }

.anim-stat-n {
    font-family: var(--FH);
    font-size: 26px;
    font-weight: 900;
    color: var(--P);
    line-height: 1;
}

.anim-stat-l {
    font-size: 11px;
    color: var(--TXL);
    margin-top: 4px;
    font-family: var(--FH);
    font-weight: 600;
}

/* industry / proc / why light */
.ind-light {
    background: #fff;
    border: 1px solid var(--BD);
    border-radius: var(--R);
    padding: 18px 12px;
    text-align: center;
    transition: all .3s ease;
    cursor: default;
    box-shadow: var(--SH1);
}

    .ind-light:hover {
        border-color: var(--P);
        background: var(--P10);
        transform: translateY(-4px);
        box-shadow: var(--SH2);
    }

    .ind-light .ind-nm {
        color: var(--BK);
    }

.proc-light {
    background: #fff;
    border: 1px solid var(--BD);
    border-radius: var(--RL);
    padding: 28px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--SH1);
}

    .proc-light:hover {
        border-color: var(--P);
        transform: translateY(-4px);
        box-shadow: var(--SH2);
    }

    .proc-light .proc-t {
        color: var(--BK);
    }

    .proc-light .proc-d {
        color: var(--TX);
    }

.why-lt {
    background: #fff;
    border: 1px solid var(--BD);
    border-radius: var(--RL);
    padding: 18px 20px;
    transition: all .3s ease;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: var(--SH1);
}

    .why-lt:hover {
        border-color: var(--P);
        transform: translateX(5px);
        box-shadow: var(--SH2);
    }

    .why-lt .why-t {
        color: var(--BK);
    }

    .why-lt .why-ico {
        background: var(--P10);
        border: 1px solid var(--P20);
    }

/* tech tile light */
.tech-tile {
    background: #fff;
    border: 1px solid var(--BD);
    border-radius: var(--R);
    padding: 18px 10px;
    text-align: center;
    transition: all .3s ease;
    cursor: default;
    box-shadow: var(--SH1);
}

    .tech-tile:hover {
        border-color: var(--P);
        background: var(--P10);
        transform: translateY(-4px);
        box-shadow: var(--SH2);
    }

.tech-tile-lbl {
    font-family: var(--FH);
    font-size: 12px;
    font-weight: 700;
    color: var(--BK);
    margin-top: 8px;
}

/* cta light */
.cta-light {
    background: var(--BK);
    border-radius: var(--RX);
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 22px;
}

    .cta-light::before {
        content: '';
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 500px;
        height: 500px;
        background: radial-gradient(circle,rgba(0,137,183,.15) 0%,transparent 65%);
        border-radius: 50%;
        pointer-events: none;
    }

    .cta-light h2 {
        font-family: var(--FH);
        font-size: clamp(26px,3.5vw,42px);
        font-weight: 900;
        color: #fff;
        margin-bottom: 14px;
        position: relative;
    }

        .cta-light h2 em {
            font-style: normal;
            color: var(--PL);
        }

    .cta-light p {
        color: rgba(255,255,255,.58);
        font-size: 16px;
        max-width: 480px;
        margin: 0 auto 30px;
        line-height: 1.7;
        position: relative;
    }

/* scroll reveal */
.rv {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.rv2 {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity .65s ease, transform .65s ease;
}

.rv3 {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity .65s ease, transform .65s ease;
}

    .rv.vis, .rv2.vis, .rv3.vis {
        opacity: 1;
        transform: none;
    }

/* responsive */
@media(max-width:1024px) {
    .az-hero-inner {
        grid-template-columns: 1fr
    }

    .fcard-light {
        max-width: 520px
    }

    .hero-stats-light {
        grid-template-columns: repeat(2,1fr)
    }
}

@media(max-width:768px) {
    .az-hero {
        padding-top: 66px
    }

    .slide-btns {
        flex-direction: column
    }

        .slide-btns .btn {
            width: 100%;
            justify-content: center
        }

    .cta-light {
        padding: 40px 22px;
        margin: 0 14px
    }
}

/* ── COMPACT FORM FIELDS inside hero ── */
.fcard-light .fg {
    margin-bottom: 8px;
}

    .fcard-light .fg label {
        font-size: 11px;
        margin-bottom: 3px;
        display: block;
    }

.fcard-light .fi {
    padding: 7px 10px;
    font-size: 12px;
    height: 34px;
}

.fcard-light textarea.fi {
    height: auto;
    padding: 7px 10px;
}

.fcard-light .fi-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.fcard-light .fsub {
    padding: 10px 16px;
    font-size: 13px;
    margin-top: 4px;
}

.fcard-light .f-note {
    font-size: 10px;
    margin-top: 6px;
}

.clients-sec {
    padding: 72px 0;
    background: #f8fbfd;
    border-top: 1px solid var(--BD);
    border-bottom: 1px solid var(--BD);
}

.clients-heading {
    text-align: center;
    margin-bottom: 48px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.client-card {
    background: #fff;
/*    border: 1.5px solid var(--BD);*/
    border-radius: 14px;
    padding: 28px 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: border-color .3s, transform .3s, box-shadow .3s;
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
    cursor: default;
}

    .client-card:hover {
        border: 1.5px solid var(--BD);
        border-color: var(--P);
        transform: translateY(-6px);
        box-shadow: 0 10px 32px rgba(0,137,183,.13);
    }

.client-logo-wrap {
    width: 110px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .client-logo-wrap svg {
        width: 100%;
        height: 100%;
        transition: transform .3s;
    }

.client-card:hover .client-logo-wrap svg {
    transform: scale(1.07);
}

.client-cname {
    font-family: var(--FH);
    font-size: 15px;
    font-weight: 700;
    color: var(--P);
    line-height: 1.35;
}

.client-ctype {
    font-size: 11px;
    color: var(--TXL);
    font-weight: 500;
    letter-spacing: .03em;
}

@media(max-width:900px) {
    .clients-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:540px) {
    .clients-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .client-logo-wrap {
        width: 80px;
        height: 48px;
    }
}

