/* ══════════════════════════════════════════
   TOKENS & RESET
══════════════════════════════════════════ */
:root {
    --bg: #07111d;
    --bg1: #0c1929;
    --bg2: #111e2f;
    --bg3: #162438;
    --bg4: #1b2d44;
    --c1: #00c8ff;
    --c2: #0057e8;
    --c3: #00ff99;
    --c4: #ff6b35;
    --text: #ddeeff;
    --muted: #6a8fad;
    --muted2: #3a5570;
    --border: rgba(0, 200, 255, 0.12);
    --border2: rgba(0, 200, 255, 0.25);
    --glow1: rgba(0, 200, 255, 0.18);
    --glow2: rgba(0, 87, 232, 0.22);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300c8ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.65;
}

/* ══════════════════════════════════════════
   CANVAS & SCAN LINE OVERLAY
══════════════════════════════════════════ */
#particle-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
}

.scanlines {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(0deg,
            transparent, transparent 2px,
            rgba(0, 0, 0, .03) 2px, rgba(0, 0, 0, .03) 4px);
}

/* subtle vignette */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(4, 8, 15, .6) 100%);
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    height: 68px;
    background: rgba(4, 8, 15, .75);
    backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid var(--border2);
    transition: background .3s;
}

nav.scrolled {
    background: rgba(4, 8, 15, .95)
}

.logo {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -.5px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.logo-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c1);
    box-shadow: 0 0 10px var(--c1);
    animation: blink 2.4s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: .25rem .9rem;
    transition: color .2s;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: .9rem;
    bottom: -4px;
    height: 1.5px;
    width: 0;
    background: var(--c1);
    box-shadow: 0 0 8px var(--c1);
    transition: width .28s;
}

.nav-links a:hover {
    color: #fff
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: calc(100% - 1.8rem)
}

.nav-links a.active {
    color: #fff
}

.nav-cta {
    background: transparent !important;
    border: 1px solid var(--c1) !important;
    color: var(--c1) !important;
    padding: .42rem 1rem !important;
    border-radius: 6px;
    font-weight: 600 !important;
    margin-left: .4rem;
    transition: background .2s, box-shadow .2s !important;
}

.nav-cta:hover {
    background: rgba(0, 200, 255, .1) !important;
    box-shadow: 0 0 20px rgba(0, 200, 255, .2) !important;
}

.nav-cta::after {
    display: none !important
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--muted);
    border-radius: 2px;
    transition: background .2s;
}

.nav-hamburger:hover span {
    background: var(--c1)
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(4, 8, 15, .97);
    border-bottom: 1px solid var(--border2);
    backdrop-filter: blur(24px);
    z-index: 199;
    padding: 1.5rem 6%;
    flex-direction: column;
    gap: .2rem;
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    text-decoration: none;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: .85rem 0;
    border-bottom: 1px solid var(--border);
    transition: color .2s;
}

.mobile-menu a:last-child {
    border-bottom: none
}

.mobile-menu a:hover {
    color: var(--c1)
}

/* ══════════════════════════════════════════
   SHARED LAYOUT
══════════════════════════════════════════ */
section {
    position: relative;
    z-index: 10;
    padding: 110px 6%
}

.label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--c1);
    margin-bottom: 1rem;
}

.label::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--c1);
    box-shadow: 0 0 8px var(--c1);
}

h2.sec-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    letter-spacing: -1.2px;
    color: #fff;
    line-height: 1.1;
}

.sec-sub {
    color: var(--muted);
    max-width: 480px;
    margin-top: .8rem;
    font-size: .93rem;
    line-height: 1.7;
}

/* ══════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.up {
    opacity: 1;
    transform: translateY(0)
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-left.up {
    opacity: 1;
    transform: translateX(0)
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-right.up {
    opacity: 1;
    transform: translateX(0)
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--c1);
    color: #000;
    padding: .85rem 2rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s, box-shadow .25s;
    box-shadow: 0 0 28px rgba(0, 200, 255, .3), 0 4px 24px rgba(0, 0, 0, .4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 30%, rgba(255, 255, 255, .2), transparent 70%);
    transform: translateX(-100%);
    transition: transform .5s;
}

.btn-primary:hover::before {
    transform: translateX(100%)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 200, 255, .45), 0 8px 32px rgba(0, 0, 0, .5)
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--text);
    padding: .85rem 2rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: .9rem;
    border: 1px solid var(--border2);
    cursor: pointer;
    text-decoration: none;
    transition: border-color .2s, color .2s, box-shadow .2s;
}

.btn-ghost:hover {
    border-color: var(--c1);
    color: var(--c1);
    box-shadow: 0 0 16px rgba(0, 200, 255, .1)
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--c1);
    padding: .85rem 2rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: .9rem;
    border: 1px solid var(--c1);
    cursor: pointer;
    text-decoration: none;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: var(--c1);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 200, 255, .3), 0 4px 16px rgba(0, 0, 0, .3);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 6% 80px;
    position: relative;
    overflow: hidden;
}

/* Glowing orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    z-index: 3;
}

.orb1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 87, 232, .3), transparent 70%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatOrb 8s ease-in-out infinite;
}

.orb2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 200, 255, .2), transparent 70%);
    bottom: 5%;
    left: 15%;
    animation: floatOrb 10s ease-in-out infinite reverse;
}

.orb3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 255, 153, .15), transparent 70%);
    top: 30%;
    right: 10%;
    animation: floatOrb 12s ease-in-out infinite 2s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translateY(0) translateX(-50%)
    }

    50% {
        transform: translateY(-30px) translateX(-50%)
    }
}

.orb2,
.orb3 {
    animation: floatOrb2 10s ease-in-out infinite
}

@keyframes floatOrb2 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid rgba(0, 200, 255, .25);
    background: rgba(0, 200, 255, .05);
    padding: .38rem 1.1rem;
    border-radius: 100px;
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c1);
    margin-bottom: 2.2rem;
    animation: fadeUp .8s ease both;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c3);
    box-shadow: 0 0 8px var(--c3);
    animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 153, .6)
    }

    50% {
        box-shadow: 0 0 0 6px rgba(0, 255, 153, 0)
    }
}

h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 7.5vw, 6.5rem);
    line-height: 1.02;
    letter-spacing: -3px;
    color: #fff;
    max-width: 920px;
    animation: fadeUp .9s .1s ease both;
}

h1 .grad {
    background: linear-gradient(90deg, var(--c1) 0%, var(--c2) 50%, var(--c3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradShift 4s linear infinite;
}

@keyframes gradShift {
    0% {
        background-position: 0% 50%
    }

    100% {
        background-position: 200% 50%
    }
}

.hero-sub {
    max-width: 560px;
    color: var(--muted);
    font-size: 1.05rem;
    font-size: 1rem;
    margin-top: 1.6rem;
    line-height: 1.75;
    animation: fadeUp 1s .2s ease both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeUp 1s .3s ease both;
}


/* Animated tech lines */
.hero-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--c1), transparent);
    height: 1px;
    opacity: .25;
    animation: scanLine 5s ease-in-out infinite;
    z-index: 4;
}

.hero-line:nth-child(1) {
    width: 60%;
    top: 25%;
    left: 20%;
    animation-delay: 0s
}

.hero-line:nth-child(2) {
    width: 40%;
    top: 55%;
    left: 35%;
    animation-delay: 1.5s
}

.hero-line:nth-child(3) {
    width: 50%;
    top: 75%;
    left: 25%;
    animation-delay: 3s
}

@keyframes scanLine {

    0%,
    100% {
        opacity: 0;
        transform: scaleX(0)
    }

    20%,
    80% {
        opacity: .25
    }

    50% {
        opacity: .4;
        transform: scaleX(1)
    }
}

/* ══════════════════════════════════════════
   STAT BAR
══════════════════════════════════════════ */
.stat-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border2);
    border-radius: 14px;
    background: rgba(10, 18, 32, .7);
    backdrop-filter: blur(20px);
    overflow: hidden;
    margin-top: 5rem;
    width: 100%;
    max-width: 900px;
    animation: fadeUp 1s .4s ease both;
}

.stat-item {
    padding: 1.8rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.stat-item:last-child {
    border-right: none
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 200, 255, .04), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.stat-item:hover::before {
    opacity: 1
}

.stat-num {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-lbl {
    font-size: .7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: .4rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services-bg {
    background: transparent;
    padding-bottom: 40px;
}

.services-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border2);
}

.card {
    background: var(--bg2);
    padding: 2.5rem 2.2rem;
    position: relative;
    overflow: hidden;
    transition: background .3s, transform .25s;
    cursor: pointer;
}

.card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--glow1), transparent 70%);
    opacity: 0;
    transition: opacity .4s, transform .4s;
}

.card:hover {
    background: var(--bg3)
}

.card:hover::before {
    opacity: 1;
    transform: scale(1.3)
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 1px solid var(--border2);
    background: rgba(0, 200, 255, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    transition: border-color .3s, box-shadow .3s;
}

.card:hover .card-icon {
    border-color: var(--c1);
    box-shadow: 0 0 20px rgba(0, 200, 255, .2);
}

.card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: .6rem;
}

.card p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.65
}

.card-arrow {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--c1);
    font-size: .78rem;
    margin-top: 1.2rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .25s, transform .25s;
}

.card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0)
}

/* ══════════════════════════════════════════
   PLATFORM (2-col)
══════════════════════════════════════════ */
#platform {
    padding-top: 40px;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: .9rem
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .88rem;
    color: var(--muted);
    transition: color .2s;
}

.feature-list li:hover {
    color: var(--text)
}

.check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(0, 255, 153, .08);
    border: 1px solid rgba(0, 255, 153, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c3);
    font-size: .65rem;
    transition: box-shadow .2s;
}

.feature-list li:hover .check {
    box-shadow: 0 0 12px rgba(0, 255, 153, .3)
}

/* Dashboard mock */
.dash-wrap {
    position: relative;
    border-radius: 18px;
    border: 1px solid var(--border2);
    background: var(--bg2);
    padding: 1.5rem;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 87, 232, .15), 0 0 120px rgba(0, 200, 255, .07);
}

.dash-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 200, 255, .03), transparent 60%);
}

/* animated top border */
/* .dash-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c1), transparent);
    animation: borderScan 3s ease-in-out infinite;
}

@keyframes borderScan {
    0% {
        left: -100%
    }

    100% {
        left: 100%
    }
} */

.dots {
    display: flex;
    gap: 6px;
    margin-bottom: 1.1rem
}

.d {
    width: 9px;
    height: 9px;
    border-radius: 50%
}

.d1 {
    background: #ff5f57
}

.d2 {
    background: #febc2e
}

.d3 {
    background: #28c840
}

.dash-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .7rem;
    margin-bottom: 1rem;
}

.metric-box {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: .9rem;
    text-align: center;
}

.metric-val {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
}

.metric-val.cyan {
    color: var(--c1);
    text-shadow: 0 0 20px rgba(0, 200, 255, .5)
}

.metric-val.green {
    color: var(--c3);
    text-shadow: 0 0 20px rgba(0, 255, 153, .4)
}

.metric-val.orange {
    color: #ff9c3b;
    text-shadow: 0 0 20px rgba(255, 156, 59, .4)
}

.metric-lbl {
    font-size: .62rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-top: .2rem
}

.spark-wrap {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 9px;
    overflow: hidden;
    margin-bottom: .85rem;
    height: 72px;
}

.spark-wrap svg {
    width: 100%;
    height: 100%
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: .45rem
}

.status-row {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: .5rem .85rem;
    font-size: .73rem;
}

.dot-led {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-led.ok {
    background: var(--c3);
    box-shadow: 0 0 8px var(--c3)
}

.dot-led.warn {
    background: #ff9c3b;
    box-shadow: 0 0 8px #ff9c3b
}

.dot-led.ok {
    animation: ledPulse 2.5s infinite
}

@keyframes ledPulse {

    0%,
    100% {
        box-shadow: 0 0 4px var(--c3)
    }

    50% {
        box-shadow: 0 0 12px var(--c3)
    }
}

.st-name {
    color: #b8d4ea;
    flex: 1
}

.st-badge {
    font-size: .65rem;
    padding: .15rem .5rem;
    border-radius: 4px;
    font-weight: 500;
}

.st-badge.ok {
    background: rgba(0, 255, 153, .1);
    color: var(--c3)
}

.st-badge.warn {
    background: rgba(255, 156, 59, .1);
    color: #ff9c3b
}

/* ══════════════════════════════════════════
   WHY
══════════════════════════════════════════ */
.why-bg {
    background: var(--bg1)
}

.why-center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem
}

.why-center .sec-sub {
    margin-left: auto;
    margin-right: auto
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 2rem 1.8rem;
    background: var(--bg2);
    position: relative;
    overflow: hidden;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}

.why-card:hover {
    border-color: rgba(0, 200, 255, .3);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4), 0 0 40px rgba(0, 200, 255, .06);
}

/* .why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c1), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.why-card:hover::after {
    opacity: 1
} */

.why-num {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: rgba(0, 200, 255, .07);
    line-height: 1;
    margin-bottom: .9rem;
    letter-spacing: -2px;
}

.why-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    margin-bottom: .5rem
}

.why-card p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.65
}

/* ══════════════════════════════════════════
   TERMINAL TICKER
══════════════════════════════════════════ */
.ticker-wrap {
    background: var(--bg1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.1rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.ticker-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: ticker 22s linear infinite;
}

.ticker-item {
    font-size: .72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}

.ticker-item span {
    color: var(--c1)
}

@keyframes ticker {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ══════════════════════════════════════════
   CTA
══════════════════════════════════════════ */
.cta-section {
    text-align: center;
    padding: 120px 6%;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(0, 87, 232, .2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    letter-spacing: -1.8px;
    color: #fff;
    max-width: 720px;
    margin: 0 auto 1.2rem;
    line-height: 1.05;
}

.cta-section p {
    color: var(--muted);
    max-width: 460px;
    margin: 0 auto 2.5rem;
    font-size: .95rem
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
    background: var(--bg1);
    border-top: 1px solid var(--border2);
    padding: 5rem 6% 2.5rem;
    position: relative;
    z-index: 10;
}

.ft-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.ft-brand p {
    color: var(--muted);
    font-size: .84rem;
    margin-top: .9rem;
    max-width: 240px;
    line-height: 1.7
}

.ft-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 1.1rem;
}

.ft-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .55rem
}

.ft-col ul a {
    text-decoration: none;
    color: var(--muted);
    font-size: .83rem;
    transition: color .2s
}

.ft-col ul a:hover {
    color: var(--c1)
}

.ft-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted2);
    font-size: .76rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.ft-bottom a {
    color: var(--muted2);
    text-decoration: none;
    transition: color .2s
}

.ft-bottom a:hover {
    color: var(--c1)
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:960px) {
    .nav-links {
        display: none
    }

    .nav-hamburger {
        display: flex
    }

    #vision>div,
    [id='features']>div:first-of-type {
        grid-template-columns: 1fr !important;
        gap: 3rem !important
    }

    #features>[style*='grid-template-columns:1fr 1fr'] {
        grid-template-columns: 1fr !important
    }

    #features>[style*='repeat(4'] {
        grid-template-columns: 1fr 1fr !important
    }

    .nav-hamburger {
        display: flex
    }

    .platform-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .cards-grid {
        grid-template-columns: 1fr 1fr
    }

    .why-grid {
        grid-template-columns: 1fr 1fr
    }

    .ft-grid {
        grid-template-columns: 1fr 1fr
    }

    .stat-bar {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {
    h1 {
        letter-spacing: -1.5px
    }

    .hero-actions,
    .cta-btns {
        flex-direction: column;
        align-items: center
    }

    .cards-grid {
        grid-template-columns: 1fr
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .ft-grid {
        grid-template-columns: 1fr
    }

    .stat-bar {
        grid-template-columns: 1fr 1fr
    }

    .dash-row {
        grid-template-columns: 1fr 1fr
    }
}

/* ══════════════════════════════════════════════════════
   SOLUTIONS PAGE — CARD REDESIGN (clean, definitive)
   ═════════════════════════════════════════════════════ */

/* Grid container */
.cards-grid {
    background: transparent !important;
    border: none !important;
    gap: 2rem !important;
    overflow: visible !important;
}

/* Individual card */
.card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 18px !important;
    background: var(--bg2) !important;
    overflow: hidden !important;
    position: relative !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease !important;
}

.card::before {
    display: none !important;
    /* Kill old pseudo-element artifacts */
}

/* Card image wrapper */
.card-img-wrap {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    line-height: 0;
    /* Removes phantom gap below img */
}

/* Gradient fade at the bottom of image into card body */
.card-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -1px;
    /* -1px prevents a hairline gap */
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to bottom, transparent 0%, var(--bg2) 100%);
    pointer-events: none;
    z-index: 2;
}

/* The image itself */
.card-img-wrap .card-img,
.card-img {
    display: block !important;
    width: 100% !important;
    height: 190px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    transition: transform 0.5s ease !important;
}

.card:hover .card-img {
    transform: scale(1.05) !important;
}

/* Card text body */
.card>h3 {
    position: relative;
    z-index: 10;
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
    padding: 0 1.8rem !important;
    font-size: 1.2rem !important;
    text-shadow: none !important;
}

.card>p {
    position: relative;
    z-index: 10;
    margin: 0.7rem 0 1.2rem !important;
    padding: 0 1.8rem !important;
    font-size: 0.88rem !important;
    text-shadow: none !important;
}

.card>.card-arrow {
    position: relative;
    z-index: 10;
    margin-bottom: 2rem !important;
    padding: 0 1.8rem !important;
    text-shadow: none !important;
    transform: translateY(4px);
    transition: transform 0.3s ease, color 0.3s ease !important;
}

/* Hover animation */
.card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 50px rgba(0, 255, 153, 0.22), 0 0 0 1.5px rgba(0, 255, 153, 0.65) !important;
}

.card:hover .card-arrow {
    transform: translateY(0) !important;
    color: var(--c1) !important;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Adjust the arrow animation to fade in upwards rather than sideways, since text is centered */
.card-arrow {
    transform: translateY(8px);
}

.card:hover .card-arrow {
    transform: translateY(0);
}


/* --- STYLING FOR NEW CARD IMAGES --- */
.card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border2);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.card:hover .card-img {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 200, 255, 0.25);
    border-color: var(--c1);
}


/* --- OVERLAPPING SCREENSHOT LAYOUT --- */
.cards-grid {
    gap: 2rem !important;
    background: transparent !important;
    border: none !important;
}

.card {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card::before {
    display: none !important;
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    margin: 0;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    z-index: 1;
    transform: none !important;
    transition: transform 0.4s ease !important;
}

.card:hover .card-img {
    transform: translateY(-6px) !important;
}

.card-body {
    background: #ffffff;
    border-radius: 12px;
    width: 90%;
    margin-top: -50px;
    z-index: 2;
    padding: 40px 1.5rem 2rem 1.5rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-float-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #ffbc00;
    border-radius: 50%;
    border: 4px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-title-dark {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1a2332;
    margin-bottom: 0.8rem;
}

.card-desc-dark {
    font-size: 0.85rem;
    color: #555555;
    line-height: 1.6;
}


/* --- FULL-BLEED BACKGROUND CARD IMAGES --- */
.card-img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    margin: 0 !important;
    border-radius: 0 !important;
    opacity: 0.18 !important;
    /* Extremely subtle so text is readable */
    z-index: 0 !important;
    box-shadow: none !important;
    border: none !important;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease !important;
}

.card:hover .card-img {
    transform: scale(1.08) !important;
    opacity: 0.4 !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

/* Ensure text and links float above the background image */
.card>h3,
.card>p,
.card>.card-arrow {
    position: relative;
    z-index: 10;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
    /* Improve readability over any bright image spots */
}


/* --- BEAUTIFUL THUMBNAIL LAYOUT OVERRIDES --- */
.card {
    padding: 0 !important;
    /* Remove card padding for a true full-bleed top image */
    justify-content: flex-start !important;
    border-radius: 18px !important;
}

.card-img {
    position: relative !important;
    width: 100% !important;
    height: 200px !important;
    /* Very tall, clear, prominent image */
    object-fit: cover !important;
    opacity: 1 !important;
    /* Fully opaque so details are crisp */
    margin: 0 !important;
    border-radius: 0 !important;
    z-index: 1 !important;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.card:hover .card-img {
    transform: scale(1.05) !important;
    /* Slight zoom on hover for premium feel */
    opacity: 1 !important;
}

/* Restore the spacing for the text underneath the image */
.card>h3 {
    margin-top: 2rem !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    font-size: 1.3rem !important;
    text-shadow: none !important;
    /* Remove muddy text shadow from previous attempt */
}

.card>p {
    margin-top: 0.8rem !important;
    margin-bottom: 1.5rem !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    text-shadow: none !important;
}

.card>.card-arrow {
    margin-bottom: 2.2rem !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    text-shadow: none !important;
}


/* --- ADDITIONAL CARD HOVER ANIMATIONS --- */
.card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, background 0.3s ease !important;
}

.card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 24px 48px rgba(0, 255, 153, 0.25), 0 0 0 1.5px rgba(0, 255, 153, 0.7) !important;
    z-index: 20 !important;
}


/* --- FIX IMAGE OVERFLOW OUTSIDE CARD --- */
.card {
    overflow: hidden !important;
    border-radius: 18px !important;
}

.card-img {
    border-radius: 18px 18px 0 0 !important;
    z-index: 0 !important;
    /* Ensure it stays behind the card boundary layer */
}


/* --- FIX GRID CLIPPING CARDS ON HOVER --- */
.cards-grid {
    overflow: visible !important;
}


/* --- SEPARATE CARDS INTO FREESTANDING BLOCKS --- */
/* The previous layout glued the cards together in a container which forced square interior corners. 
   This safely breaks them apart so every single card has 4 visible rounded corners! */
.cards-grid {
    background: transparent !important;
    border: none !important;
    gap: 2.5rem !important;
    /* Large beautiful spacing between cards */
}

.card {
    border: 1px solid var(--border) !important;
    /* Individual standalone borders */
    border-radius: 18px !important;
    /* Assures every corner is rounded */
    background: var(--bg2) !important;
    overflow: hidden !important;
    position: relative !important;
}

/* --- MASTER GRADIENT OVERLAY FOR IMAGES --- */
.card::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 200.5px !important;
    /* Matches image height precisely and covers bottom sub-pixel gap */
    /* Creates a beautiful cyan tint at top, fading elegantly into the card body color at the bottom edge! */
    background: linear-gradient(180deg, rgba(0, 200, 255, 0.15) 0%, rgba(10, 18, 32, 0) 40%, var(--bg2) 100%) !important;
    pointer-events: none !important;
    z-index: 5 !important;
    border-radius: 18px 18px 0 0 !important;
    display: block !important;
    transition: opacity 0.5s ease !important;
}

.card:hover::after {
    opacity: 0.6 !important;
    /* Enhances the gradient sweep slightly when hovering */
}

.card-img {
    z-index: 1 !important;
    border-radius: 18px 18px 0 0 !important;
    /* Keep image perfectly locked into the card's top curves */
}


/* --- ULTRA ATTRACTIVE GLASSMORPHISM & NEON GLOW --- */
/* The background particles will now softly blur through the cards! */
.card {
    background: rgba(10, 16, 28, 0.55) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6) !important;
}

/* The gradient fading down the image now securely melts into the translucent glass color */
.card::after {
    background: linear-gradient(180deg, rgba(0, 200, 255, 0.1) 0%, rgba(10, 16, 28, 0) 40%, rgba(10, 16, 28, 1) 100%) !important;
}

/* Multi-Layered Next-Gen Neon Hover Effect */
.card:hover {
    background: rgba(10, 16, 28, 0.75) !important;
    border-color: rgba(0, 255, 153, 0.8) !important;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.7),
        /* Deep core 3D drop */
        0 0 0 1.5px rgba(0, 255, 153, 0.75),
        /* Crisp physical neon edge */
        0 15px 50px rgba(0, 255, 153, 0.42),
        /* Wide atmospheric green bleed down */
        0 -15px 50px rgba(0, 255, 153, 0.2) !important;
    /* Soft green glowing bleed up over image */
}

/* Restore top edge inner-highlight to simulate 3D glass thickness */
.card-img {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

/* Animate the arrow colour beautifully on hover */
.card:hover .card-arrow {
    color: #00ff99 !important;
    text-shadow: 0 0 8px rgba(0, 255, 153, 0.4) !important;
}


/* --- ULTIMATE PREMIUM PLATFORM AESTHETIC --- */
/* Converts the previous centered layout into a hyper-modern, left-aligned dark mode "glass block" */

.card {
    align-items: flex-start !important;
    /* Sophisticated left alignment */
    text-align: left !important;
    background: #080c13 !important;
    /* Extremely dark, premium obsidian blue/black */
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    /* Barely visible glass frosted border */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    /* Crisp inner reflection, deep physical outer drop */
    border-radius: 20px !important;
    /* Softer, highly premium corner radius */
}

/* Let the photo shine clearly, fading exactly into the extremely dark background without muddying it */
.card::after {
    background: linear-gradient(180deg, rgba(8, 12, 19, 0) 50%, #080c13 100%) !important;
    opacity: 1 !important;
    /* Keep the fade permanent and sharp */
}

.card-img {
    height: 220px !important;
    /* Slightly taller for more visual impact */
}

/* Typography Overhaul - High contrast, strict hierarchies */
.card>h3 {
    padding-left: 2.2rem !important;
    padding-right: 2.2rem !important;
    margin-top: 1.5rem !important;
    font-size: 1.45rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.4px !important;
    color: #ffffff !important;
    /* Pure white header */
}

.card>p {
    padding-left: 2.2rem !important;
    padding-right: 2.2rem !important;
    margin-top: 0.8rem !important;
    margin-bottom: 2.5rem !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: #8b9bb4 !important;
    /* Gorgeous muted steel blue/grey */
    font-weight: 400 !important;
}

/* Micro-typography "Learn More" Link */
.card>.card-arrow {
    padding-left: 2.2rem !important;
    margin-bottom: 2.5rem !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    /* Heavy tracking for standard technical/devtool feel */
    font-weight: 700 !important;
    color: #00c8ff !important;
    /* Brand cyan */
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    transform: none !important;
    /* Disable previous vertical animation */
    transition: color 0.3s ease !important;
}

.card>.card-arrow span {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.card:hover>.card-arrow span {
    transform: translateX(6px) !important;
    /* Arrow shoots forward instead of up */
}

/* Elegant Physics & Mesh Glow Hover */
.card:hover {
    transform: translateY(-8px) scale(1.01) !important;
    border-color: rgba(0, 255, 153, 0.75) !important;
    /* Border smoothly lights up green */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 24px 48px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 255, 153, 0.32) !important;
    /* Heavy drop shadow, soft green ambient mesh glow emitting from the card */
}

.card:hover .card-img {
    transform: scale(1.06) !important;
}


/* --- ADD SHADOW TO BOTTOM OF IMAGE --- */
.card-img {
    /* Cast a deep dark shadow straight downward from the custom image edge */
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.95) !important;
    position: relative !important;
    z-index: 3 !important;
    /* Ensure it floats above the card background to cast shadow properly */
}


/* --- BOTTOM GRADIENT FADE ON CARD IMAGE (using a sibling overlay div) --- */
.card-img-wrap {
    position: relative;
    width: 100%;
    flex-shrink: 0;
}

.card-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    /* How far the shadow fades upward */
    background: linear-gradient(to bottom, rgba(10, 18, 32, 0) 0%, var(--bg2) 100%);
    pointer-events: none;
    z-index: 4;
}

.card-img-wrap .card-img {
    display: block;
    border-radius: 18px 18px 0 0 !important;
    width: 100%;
}


/* --- LIGHTEN CARD BACKGROUNDS --- */
.card {
    background: #111d2e !important;
    /* Noticeably lighter than --bg2 (#0a1220) */
    border: 1px solid rgba(0, 200, 255, 0.15) !important;
    /* Slightly more visible border */
}

.card-img-wrap::after {
    background: linear-gradient(to bottom, transparent 0%, #111d2e 100%) !important;
    /* Match new card bg */
}


/* ══ SOLUTIONS PAGE BACKGROUND ANIMATIONS ══ */

/* Ensure the section is a positioning context */
.services-bg {
    position: relative;
    overflow: hidden;
}

/* Animated orb base styles */
.sol-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
    animation: solOrbFloat 12s ease-in-out infinite;
}

/* Orb 1 — Cyan, top-left */
.sol-orb1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, #00c8ff, transparent 70%);
    top: -160px;
    left: -140px;
    animation-duration: 14s;
    animation-delay: 0s;
}

/* Orb 2 — Blue, bottom-right */
/*.sol-orb2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #0057e8, transparent 70%);
    bottom: -200px;
    right: -150px;
    animation-duration: 18s;
    animation-delay: -5s;
}

/* Orb 3 — Green, top-right */
.sol-orb3 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #00ff99, transparent 70%);
    top: 40%;
    right: 10%;
    animation-duration: 10s;
    animation-delay: -3s;
    opacity: 0.10;
}

/* Make all section content z-index > 0 so it floats above the orbs */
.services-bg>*:not(.sol-orb) {
    position: relative;
    z-index: 2;
}

/* Floating shimmer keyframe */
@keyframes solOrbFloat {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -25px) scale(1.06);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.96);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

/* Subtle animated gradient line at the top of the section */
/* .services-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00c8ff, #00ff99, #0057e8, transparent);
    background-size: 200% 100%;
    animation: borderFlow 4s linear infinite;
    z-index: 5;
} */

/* @keyframes borderFlow {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
} */


/* ══ BOOST SOL BACKGROUND ANIMATIONS ══ */

/* Make orbs significantly more visible */
.sol-orb1 {
    opacity: 0.28 !important;
}

.sol-orb2 {
    opacity: 0.22 !important;
}

.sol-orb3 {
    opacity: 0.18 !important;
}



@keyframes gridShift {
    0% {
        background-position: 0px 0px;
    }

    100% {
        background-position: 48px 48px;
    }
}

/* Animated glow pulse under the section heading */
.services-head {
    position: relative;
    z-index: 3;
}

.services-head::before {
    content: '';
    position: absolute;
    inset: -40px -60px;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 200, 255, 0.07) 0%, transparent 60%);
    animation: headGlow 6s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes headGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.08);
    }
}

/* ══ VISION PAGE ORB FLOAT ══ */
@keyframes vOrbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -25px) scale(1.07);
    }

    66% {
        transform: translate(-20px, 18px) scale(0.95);
    }
}



/* Ensure ticker doesn't overlap and sections have breathing room */
.ticker-wrap {
    margin-top: 4rem;
}



/* ══════════════════════════════════════════════════════════
   CTA SECTION — Animated Orbs & Premium Design
   ══════════════════════════════════════════════════════════ */

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.cta-orb1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.2), transparent 70%);
    top: -150px;
    right: -100px;
    animation: solOrbFloat 14s ease-in-out infinite;
}

.cta-orb2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 87, 232, 0.18), transparent 70%);
    bottom: -100px;
    left: -80px;
    animation: solOrbFloat 10s ease-in-out infinite reverse;
    animation-delay: -4s;
}

.cta-section h2,
.cta-section p,
.cta-section .cta-btns {
    position: relative;
    z-index: 2;
}



/* ══════════════════════════════════════════
   HERO OVERLAY CONTENT
   ══════════════════════════════════════════ */
.hero-content-wrapper {
    position: relative;
    z-index: 15;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 6% 40px;
    pointer-events: none;
    /* Pass events to the hero background if needed */
    text-align: center;
}

.hero-content-wrapper>* {
    pointer-events: auto;
    /* Re-enable events for buttons and text selection */
}

.hero-text-block {
    max-width: 1000px;
    margin-bottom: 2rem;
}

.hero-text-block h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    /* Larger text size */
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
}

.hero-text-block .hero-sub {
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    /* Larger subtitle text */
    max-width: 480px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

.stat-bar-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background: transparent;
    /* Removed blue background */
    padding: 4rem 6% 4rem;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

/* Added mesh animation to stat bar container */
.stat-bar-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 200, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridShift 30s linear infinite;
    pointer-events: none;
    z-index: -1;
}

.stat-bar-container .stat-bar {
    width: 100%;
    max-width: 1200px;
    margin: 0;
    background: rgba(10, 18, 32, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 200, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        padding-top: 100px;
    }
}

/* ══════════════════════════════════════════
   DASHBOARD SIDEBAR
══════════════════════════════════════════ */
.dashboard-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-overlay.active {
    display: block;
    opacity: 1;
}

.dashboard-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    height: 85vh;
    background: #1a1f2e;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.dashboard-container.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.dashboard-content-wrapper {
    display: flex;
    height: calc(100% - 60px);
    flex: 1;
}

.dashboard-sidebar {
    width: 280px;
    height: 100%;
    background: #1a1f2e;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.dashboard-sidebar.active {
    left: 0;
}

.dashboard-header {
    padding: 20px;
    background: #0f1419;
    border-bottom: 1px solid #2a3441;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.dashboard-close {
    background: none;
    border: none;
    color: #8892a0;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.2s;
}

.dashboard-close:hover {
    background: #2a3441;
    color: #fff;
}

.dashboard-nav {
    padding: 10px 0;
}

.nav-item {
    display: block;
    padding: 12px 20px;
    color: #8892a0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    position: relative;
    cursor: pointer;
}

.nav-item:hover {
    background: #2a3441;
    color: #fff;
    border-left-color: #00d4ff;
}

.nav-item.active {
    background: #1e2530;
    color: #00d4ff;
    border-left-color: #00d4ff;
}

.nav-item.has-dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-dropdown {
    font-size: 12px;
    transition: transform 0.2s;
}

.nav-item.has-dropdown.expanded .nav-dropdown {
    transform: rotate(180deg);
}

.nav-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #151a23;
}

.nav-submenu.expanded {
    max-height: 300px;
}

.nav-submenu .nav-item {
    padding-left: 40px;
    font-size: 13px;
}

.nav-icon {
    margin-right: 12px;
    width: 16px;
    text-align: center;
}

/* Dashboard Content Area */
.dashboard-content {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #1a1f2e;
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
}

.dashboard-content.active {
    right: 0;
}

.content-header {
    padding: 20px;
    background: #0f1419;
    border-bottom: 1px solid #2a3441;
    color: #fff;
}

.content-body {
    padding: 20px;
    color: #8892a0;
    line-height: 1.6;
}

.content-body h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.content-body p {
    margin-bottom: 15px;
}

.content-body h4 {
    color: #00d4ff;
    margin-bottom: 10px;
    font-size: 16px;
}

.content-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.content-body li {
    padding: 8px 0;
    border-bottom: 1px solid #2a3441;
}

.content-body li:before {
    content: "▸";
    color: #00d4ff;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .dashboard-content {
        width: 100%;
        right: -100%;
    }
    
    .dashboard-sidebar {
        width: 250px;
        left: -250px;
    }
}

/* ══════════════════════════════════════════════════════
   HOMEPAGE VISION SECTION CORE VALUES UPGRADE
   ═════════════════════════════════════════════════════ */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.homepage-value-card {
    background: rgba(10, 16, 28, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.4rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    height: 100%;
}

.homepage-value-card:hover {
    transform: translateY(-5px);
    background: rgba(10, 16, 28, 0.65);
}

/* Individual neon glows and border highlight */
.homepage-value-card.proactive:hover {
    border-color: rgba(0, 200, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 200, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.homepage-value-card.partnership:hover {
    border-color: rgba(0, 255, 153, 0.4);
    box-shadow: 0 15px 35px rgba(0, 255, 153, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.homepage-value-card.excellence:hover {
    border-color: rgba(0, 87, 232, 0.4);
    box-shadow: 0 15px 35px rgba(0, 87, 232, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.homepage-value-card.data:hover {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.homepage-value-card .icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.homepage-value-card:hover .icon-box {
    transform: scale(1.08) rotate(3deg);
}

.homepage-value-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    margin: 0;
    letter-spacing: -0.2px;
    transition: color 0.2s ease;
}

.homepage-value-card.proactive:hover h3 { color: var(--c1); }
.homepage-value-card.partnership:hover h3 { color: var(--c3); }
.homepage-value-card.excellence:hover h3 { color: #4d9fff; }
.homepage-value-card.data:hover h3 { color: var(--c4); }

.homepage-value-card p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustment for values-grid on mobile */
@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════
   HERO BACKDROP IMAGE WITH SMOOTH ZOOM ANIMATION
   ═════════════════════════════════════════════════════ */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 1;
    overflow: hidden;
    background: #040812;
}

/* Translucent dark overlay with radial center focus to preserve hero text contrast */
.hero-bg-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(4, 8, 18, 0.35) 0%, rgba(4, 8, 18, 0.85) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    animation: heroZoomInOut 24s ease-in-out infinite;
    will-change: transform;
    z-index: 1;
}

@keyframes heroZoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}