:root {
    --navy: #0C1F3D;
    --navy2: #132848;
    --navy3: #1A3562;
    --teal: #00D4AA;
    --teal2: #00B593;
    --teal3: #E0FAF5;
    --gold: #F5A623;
    --gold2: #FEF3E2;
    --purple: rgb(123, 97, 255);
    --purple2: rgba(123, 97, 255, 0.08);
    --azure: #0A84FF;
    --azure2: rgba(10, 132, 255, 0.08);
    --crimson: #E8293A;
    --slate: #F1F5FA;
    --border: #E2EAF3;
    --txt: #0C1F3D;
    --txt2: #3D587A;
    --txt3: #7A95B0;
    --white: #FFFFFF;
    --green: #1FC46A;
    --border-color: rgba(0, 212, 170, 0.25);
    --text-dim: rgba(255, 255, 255, 0.4);
    --text-muted: rgba(255, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* bootstrap Override */
@media (min-width: 1200px){
    .container{
        max-width: 90%;
    }
}
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--slate);
}

::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 3px;
}
body {
    font-family: "Source Sans 3", sans-serif;
    background: var(--navy-bg);
    color: var(--txt);
    line-height: 1.5;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Outfit", sans-serif;
}
/* Background Color */
.bg-color-1{
    background-color: var(--slate);
}
.bg-section-navy{
    background-color: var(--navy);
}
.bg-teal{
    background-color: var(--teal);
}
/* Spacing */
.sec-padding{
    padding-top: 70px;
    padding-bottom: 70px;
}
.txt-teal{
    color: var(--teal);
}
.txt-blue{
    color: rgb(123, 97, 255);
}
.txt-gold{
    color: var(--gold);
}
.txt3-color{
    color: var(--txt3);
}
/* Icon List */
ul.icon-list{
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.icon-list li{
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
ul.icon-list li span.licon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10px;
}
ul.icon-list.theme-green.style-2 li span.licon{
    background-color: var(--green);
    color: #FFFFFF;
    border-radius: 0;
}
ul.icon-list.theme-teal li span.licon{
    background: rgba(0, 212, 170, 0.094);
    color: var(--teal);
}
ul.icon-list.theme-blue li span.licon{
    background: rgba(123, 97, 255, 0.094);
    color: rgb(10, 132, 255);
}
ul.icon-list.theme-gold li span.licon{
    background: rgb(254, 243, 226);
    color: var(--gold);
}
ul.icon-list li span.ltxt{
    font-size: 13px;
}
/* Pill */
.pill{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.pill.bg-blue{
    background: var(--azure2);
    color: var(--azure);
}
.icon-pill{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 170, 0.063);
    border-radius: 8px;
    padding: 8px 16px;
}
.icon-pill .pill-text{
    font-size: 13px;
    font-weight: 600;
}
.pill.theme-green, .pill.theme-teal, .icon-pill.theme-green, .pill.theme-green, .icon-pill.theme-teal{
    background: rgb(224, 250, 245);
    color: rgb(0, 212, 170);
}
.pill.theme-blue, .icon-pill.theme-blue{
    background: rgb(240, 237, 255);
    color: rgb(123, 97, 255);
}
.pill.theme-gold, .icon-pill.theme-gold{
    background: rgb(254, 243, 226);
    color: rgb(245, 166, 35);
}
.bg-gold-2{
    background-color: var(--gold2);
} 
.color-gold{
    color: var(--gold);
}
.bg-teal-3{
    background: var(--teal3);
}
.color-teal-2{
    color: var(--teal2);
}
.txt-navy{
    color: var(--navy);
}
/* Navigation */
.navbar.fixed-top{
    z-index: 1070;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 20px rgba(12, 31, 61, 0.08);
}
.navbar{
    padding: 15px;
}
.navbar .navbar-toggler{
    box-shadow: none;
    border: 0;
    padding: 0;
    line-height: unset;
    font-size: 30px;
}
.navbar .navbar-toggler .navbar-toggler-icon{
    color: #ea1d23;
    background-image: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo img{
    max-width: 200px;
}
.logo img.dark-logo{
    display: none;
}
.navbar.scrolled .logo img.light-logo{
    display: none;
}
.navbar.scrolled .logo img.dark-logo{
    display: block;
}
.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgb(0, 212, 170), rgb(10, 132, 255));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 212, 170, 0.4) 0px 4px 16px;
}

.brand {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    letter-spacing: -0.025em;
    transition: color 0.3s;
}

nav.scrolled .brand {
    color: #0C1F3D;
}

.brand .teal {
    color: var(--teal);
}

.tagline {
    display: block;
    font-size: 9px;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -2px;
    transition: color 0.3s;
}

nav.scrolled .tagline {
    color: #64748b;
}
.nav-container{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
}
.navbar-nav {
    display: flex;
    gap: 10px;
    flex: 1;
}

.navbar-nav .nav-item a.nav-link, .nav-container .action-block > a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s;
}

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.link-contact {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
}

nav.scrolled .link-contact {
    color: #475569;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(155deg, #0C1F3D 0%, #132848 45%, #0d2550 70%, #091a35 100%);
    display: flex;
    align-items: center;
    padding-top: 68px;
}

.bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
}

.orb-top {
    top: 15%;
    right: 5%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 212, 170, .1) 0%, transparent 65%);
    animation: floatY 8s ease-in-out infinite;
}

.orb-bottom {
    bottom: 10%;
    left: -5%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(10, 132, 255, .08) 0%, transparent 65%);
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 212, 170, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 170, .03) 1px, transparent 1px);
    background-size: 64px 64px;
}

.spinning-ring {
    position: absolute;
    top: 10%;
    right: 9%;
    width: 300px;
    height: 300px;
    animation: spinSlow 20s linear infinite;
    opacity: 0.25;
}

/* Layout */
.hero-container {
    padding: 80px 5%;
    position: relative;
}
@media(min-width:1200px){
    .hero-container{
        max-width: 1300px;
    }
}
.hero-container .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Text Content */
.hero-text-content h1 {
    font-size: clamp(40px, 4.8vw, 66px);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #00D4AA 0%, #0A84FF 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.72;
    margin-bottom: 36px;
    max-width: 540px;
}
.hero-desc strong{
    color: #FFFFFF;
}
.hero-actions{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-pill {
    background: rgba(0, 212, 170, 0.15);
    border: 1px solid rgba(0, 212, 170, 0.35);
    color: var(--teal);
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    margin-bottom: 22px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Buttons */
.btn-teal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--teal);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all .22s;
    white-space: nowrap;
}
.btn-teal:hover {
    background: var(--teal2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, .35);
}
.btn-navy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    padding: 12px 26px;
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all .22s;
    white-space: nowrap;
}
.btn-navy:hover{
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
}
.btn-nav {
    padding: 9px 20px;
    font-size: 14px;
    animation: glowPulse 3s infinite;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all .22s;
    white-space: nowrap;
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-2px);
}

/* Trust Signals */
.trust-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-val {
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--teal);
}

.trust-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.04em;
    margin-top: 2px;
}

/* Threat Feed Card */
/* Dashboard Card */
.threat-card {
    background: rgb(12 31 61 / 85%);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 360px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 212, 170, 0.1);
}

/* Header Section */
.threat-card .card-header {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.threat-card .card-header .status-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-teal);
    animation: pulse 1.5s infinite;
}

.threat-card .card-header .header-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #FFFFFF;
}

.threat-card .card-header .ai-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(0, 212, 170, 0.7);
}
.threat-info .threat-main .threat-title{
    color: #FFFFFF;
}
/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.04);
}

.stat-item {
    padding: 10px 14px;
    text-align: center;
    background: rgba(12, 31, 61, 0.6);
}

.stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 500;
}

.stat-label {
    font-size: 9px;
    color: var(--text-dim);
    letter-spacing: 0.07em;
    margin-top: 2px;
}

/* Feed List */
.feed-section {
    padding: 10px 0;
}

.feed-header {
    padding: 6px 18px;
    font-size: 9px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.threat-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    transition: all 0.3s;
    border-left: 2px solid transparent;
}

.threat-row.is-new {
    background: rgba(0, 212, 170, 0.05);
    border-left-color: var(--accent-teal);
    animation: fadeUp 0.3s ease;
}

.severity-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.threat-info {
    flex: 1;
    min-width: 0;
}

.threat-main {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
}

.threat-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
}

.threat-source {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1px;
}

.sev-pill {
    border-radius: 4px;
    padding: 1px 7px;
    font-size: 9px;
    font-weight: 700;
}

/* Footer */
.card-footer {
    padding: 10px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    font-size: 10px;
    color: var(--text-muted);
}

.status-pill {
    background: rgba(0, 212, 170, 0.15);
    color: var(--accent-teal);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Animations */
@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 16px;
}

.floating-badges .f-badge {
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 11px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
}

.b-blue {
    background: rgba(10, 132, 255, 0.12);
    color: #0A84FF;
    border: 1px solid rgba(10, 132, 255, 0.25);
}

.b-purple {
    background: rgba(123, 97, 255, 0.12);
    color: #7B61FF;
    border: 1px solid rgba(123, 97, 255, 0.25);
}

.b-orange {
    background: rgba(245, 166, 35, 0.12);
    color: #F5A623;
    border: 1px solid rgba(245, 166, 35, 0.25);
}

/* Stats Bar */
.stats-bar {
    margin-top: 64px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.stats-bar .stat-col {
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(0, 212, 170, 0.1);
    text-align: center;
}

.s-val {
    font-family: "Outfit", sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: var(--teal);
}

.s-lbl {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    margin-top: 2px;
}

.s-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 1px;
}

.no-border {
    border-right: none;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.6s ease both;
}

.d-1 {
    animation-delay: 0.1s;
}

.d-2 {
    animation-delay: 0.2s;
}

.d-2-5 {
    animation-delay: 0.25s;
}

.d-3 {
    animation-delay: 0.3s;
}

.d-4 {
    animation-delay: 0.4s;
}

.d-5 {
    animation-delay: 0.5s;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 2s infinite;
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 212, 170, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 170, 0);
    }
}

/* Section Title Style */
.section-title-block{
    margin-bottom: 50px;
}
.section-title-block .section-title{
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    margin-top: 12px;
}
.bg-section-navy .section-title-block .section-title{
    color:#FFFFFF;
}
.section-title-block .section-description{
    font-size: 17px;
    color: var(--txt2);
    max-width: 520px;
    margin: 0px auto;
}
.bg-section-navy .section-title-block .section-description{
    color: rgba(255, 255, 255, 0.55);
}
.bg-section-navy .section-title-block .pill{
    background:rgba(0, 212, 170, 0.12);
}
/* Icon Text Card */
.ss-icon-text-card{
    border-radius: 18px;
    padding: 36px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.ss-icon-text-card.style-2::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
}
.ss-icon-text-card.style-2.theme-teal::before{
    background-color: var(--teal);
}
.ss-icon-text-card.style-2.theme-gold::before{
    background-color: var(--gold);
}
.ss-icon-text-card.style-2.theme-purple::before{
    background-color: var(--purple);
}
.ss-icon-text-card.style-2.theme-blue::before{
    background-color: var(--azure);
}
.ss-icon-text-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(12,31,61,.12);
} 
.ss-icon-text-card.bg-color-light{
    background: var(--slate);
    border: 1px solid var(--border);
}
.ss-icon-text-card.bg-color-dark{
    background: var(--navy);
    border: 1px solid rgba(0, 212, 170, 0.15);
}
.ss-icon-text-card .icon-with-content{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.ss-icon-text-card .icon-box{
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.ss-icon-text-card.style-2 .icon-box{
    width: 50px;
    height: 50px;
    font-size: 24px;
}
.ss-icon-text-card.bg-color-light .icon-box{
    background: rgba(245, 166, 35, 0.12);
}
.ss-icon-text-card.bg-color-dark .icon-box{
    background: rgba(0, 212, 170, 0.12);
}
.ss-icon-text-card.style-2.theme-teal .icon-box{
    background: rgba(0, 212, 170, 0.08);
}
.ss-icon-text-card.style-2.theme-gold .icon-box{
    background: rgba(245, 166, 35, 0.08);
}
.ss-icon-text-card.style-2.theme-purple .icon-box{
    background: var(--purple2);
}
.ss-icon-text-card.style-2.theme-blue .icon-box{
    background: var(--azure2);
}
.ss-icon-text-card .icon-with-content span{
    font-family: "JetBrains Mono";
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
}
.ss-icon-text-card.bg-color-light .icon-with-content span{
    color: rgba(245, 166, 35, 0.8);
}
.ss-icon-text-card.bg-color-dark .icon-with-content span{
    color: rgba(0, 212, 170, 0.6);
}
.ss-icon-text-card .content h3{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}
.ss-icon-text-card.bg-color-light .content h3{
    color: var(--navy);
}
.ss-icon-text-card.bg-color-dark .content h3{
    color: rgb(255, 255, 255);
}
.ss-icon-text-card .content p{
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}
.ss-icon-text-card.bg-color-light .content p{
    color: var(--txt);
}
.ss-icon-text-card.bg-color-dark .content p{
    color: rgba(255, 255, 255, 0.6);
}
/* Security Audit Banner */
.security-audit-banner{
    background: linear-gradient(135deg, var(--navy), #1A3562);
    border-radius: 18px;
    padding: 28px 36px;
}
.security-audit-banner .metrick-block-group{
    display: flex;
    gap: 32px;
    flex: 1 1 0%;
    flex-wrap: wrap;
}
.security-audit-banner .metric-block{
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.security-audit-banner .metric-value{
    font-family: "Outfit", sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--teal);
}
.security-audit-banner .metric-caption{
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 140px;
    margin: 0;
}
/* Counter Stats */
.number-stats-item{
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
}
.number-stats-item.theme-teal{
    background: rgb(224, 250, 245);
    border: 1px solid rgba(0, 212, 170, 0.133);
}
.number-stats-item.theme-blue{
    background: rgb(240, 237, 255);
    border: 1px solid rgba(123, 97, 255, 0.133);
}
.number-stats-item.theme-gold{
    background: rgb(254, 243, 226);
    border: 1px solid rgba(245, 166, 35, 0.133);
}
.number-stats-item .number{
    font-size: 28px;
    font-weight: 900;
}
.number-stats-item.theme-teal h3.number{
    color: var(--teal);
}
.number-stats-item.theme-blue h3.number{
    color: rgb(123, 97, 255);
}
.number-stats-item.theme-gold h3.number{
    color: var(--gold);
}
.number-stats-item p{
    margin: 0;
    color: var(--txt3);
    font-size: 13px;
}
/* Platform Tabs */
.ss-platform-tabs .nav .nav-item button{
    padding: 11px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: 0.22s;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgb(255, 255, 255);
    color: var(--txt2);
    border: 2px solid var(--border);
    box-shadow: none;
}
.ss-platform-tabs .nav .nav-item button.bg-blue.active{
    background: rgb(123, 97, 255);
    color: rgb(255, 255, 255);
    border: 2px solid rgb(123, 97, 255);
    box-shadow: rgba(123, 97, 255, 0.208) 0px 8px 24px;
}
.ss-platform-tabs .nav .nav-item button.bg-green.active{
    background: rgb(0, 212, 170);
    color: rgb(255, 255, 255);
    border: 2px solid rgb(0, 212, 170);
    box-shadow: rgba(0, 212, 170, 0.208) 0px 8px 24px;
}
.ss-platform-tabs .nav .nav-item button.bg-gold.active{
    background: rgb(245, 166, 35);
    color: rgb(255, 255, 255);
    border: 2px solid rgb(245, 166, 35);
    box-shadow: rgba(245, 166, 35, 0.208) 0px 8px 24px;
}
.ss-platform-tabs .tab-content .tab-pane{
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
}
.ss-platform-tabs .tab-content .tab-pane.theme-green{
    border: 2px solid rgba(0, 212, 170, 0.133);
    box-shadow: rgba(0, 212, 170, 0.08) 0px 24px 80px;
}
.ss-platform-tabs .tab-content .tab-pane .line-layer{
    height: 4px;
}
.ss-platform-tabs .tab-content .tab-pane.theme-green .line-layer{
    background: linear-gradient(90deg, rgb(0, 212, 170), rgba(0, 212, 170, 0.376));
}
.ss-platform-tabs .tab-content .tab-pane.theme-blue .line-layer{
    background: linear-gradient(90deg, rgb(123, 97, 255), rgba(123, 97, 255, 0.376));
}
.ss-platform-tabs .tab-content .tab-pane.theme-gold .line-layer{
    background: linear-gradient(90deg, rgb(245, 166, 35), rgba(245, 166, 35, 0.376));
}
.ss-platform-tabs .tab-content .tab-pane .tab-body{
    padding: 30px 35px;
}
.ss-platform-tabs .tab-content .tab-pane .tab-body .pill{
    margin-bottom: 18px;
}
.ss-platform-tabs .tab-content .tab-pane .tab-body h3.main-title{
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
    margin-top: 12px;
}
.ss-platform-tabs .tab-content .tab-pane .tab-body h5{
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
}
.ss-platform-tabs .tab-content .tab-pane .tab-body p.content{
    font-size: 15px;
    color: var(--txt2);
    line-height: 1.78;
    margin-bottom: 28px;
}
.ss-platform-tabs .tab-content .tab-pane .tab-body ul.icon-list{
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.ss-platform-tabs .tab-content .tab-pane .tab-footer{
    padding: 18px 48px;
    background: rgba(123, 97, 255, 0.03);
    border-top: 1px solid rgba(123, 97, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.ss-platform-tabs .tab-content .tab-pane.theme-green .tab-footer{
    background: rgba(0, 212, 170, 0.03);
    border-top: 1px solid rgba(0, 212, 170, 0.08);
}
.ss-platform-tabs .tab-content .tab-pane.theme-gold .tab-footer{
    background: rgba(245, 166, 35, 0.03);
    border-top: 1px solid rgba(245, 166, 35, 0.08);
}
.ss-platform-tabs .tab-content .tab-pane .tab-footer p{
    font-size: 14px;
    color: var(--txt2);
    margin: 0;
}
.ss-platform-tabs .tab-content .tab-pane .tab-footer p strong{
    color: var(--navy);
}
.ss-platform-tabs .tab-content .tab-pane .tab-footer a{
    padding: 9px 20px;
    font-size: 14px;
}
.ss-platform-tabs .tab-content .tab-pane.theme-blue .tab-footer a.btn-teal{
    background: rgb(123, 97, 255);
    border-color: rgb(123, 97, 255);
}
.ss-platform-tabs .tab-content .tab-pane.theme-gold .tab-footer a.btn-teal{
    background: rgb(245, 166, 35);
    border-color: rgb(245, 166, 35);
}
/* Trust Box */
.trust-box{
    border-radius: 14px;
    padding: 20px 22px;
}
.trust-box.bg-navy{
    background: var(--navy);
}
.trust-box h3{
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}
.trust-box.bg-navy h3{
    color:#FFFFFF;
}
.trust-box p{
    font-size: 11px;
}
.trust-box.bg-navy p{
    color:rgba(255, 255, 255, 0.5);
}
.trust-box .pills-list{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.trust-box .pills-list .pill{
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 600;
    margin: 0 !important;
}
.trust-box.bg-navy .pills-list .pill{
    color: var(--teal);
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
}
/* Solution Card */
.solution-card{
    border-radius: 20px;
    padding: 36px 32px;
    transition: transform .25s, box-shadow .25s;
}
.solution-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(12, 31, 61, .12) !important;
}
.solution-card.theme-blue{
    background: rgba(10, 132, 255, 0.06);
    border: 1px solid rgba(10, 132, 255, 0.2);
}
.solution-card.theme-teal{
    background: rgba(0, 212, 170, 0.06);
    border: 1px solid rgba(0, 212, 170, 0.2);
}
.solution-card .solution-header{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.solution-card .solution-header .icon-box{
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.solution-card.theme-blue .solution-header .icon-box{
    background: rgba(10, 132, 255, 0.15);
}
.solution-card.theme-teal .solution-header .icon-box{
    background: rgba(0, 212, 170, 0.15);
}
.solution-card .solution-header .title-block h3{
    font-size: 20px;
    font-weight: 800;
    color: rgb(255, 255, 255);
}
.solution-card .solution-header .title-block h6{
    font-size: 12px;
    font-family: 'Inter', sans-serif;
}
.solution-card.theme-blue .solution-header .title-block h6{
    color: rgb(10, 132, 255);
}
.solution-card.theme-teal .solution-header .title-block h6{
    color: var(--teal);
}
.solution-card .solution-content .icon-list li span.ltxt{
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}
.solution-card .solution-content .icon-list li:not(:last-child){
    margin-bottom: 10px;
}
.solution-card .solution-footer{
    margin-top: 24px;
    padding: 12px 16px;
    border-radius: 10px;
}
.solution-card.theme-blue .solution-footer{
    background: rgba(10, 132, 255, 0.08);
}
.solution-card.theme-teal .solution-footer{
    background: rgba(0, 212, 170, 0.08);
}
.solution-card .solution-footer p{
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    margin-bottom: 6px;
}
.solution-card.theme-blue .solution-footer p{
    color:rgb(10, 132, 255);
}
.solution-card.theme-teal .solution-footer p{
    color:var(--teal);
}
.solution-card .solution-footer .text-list{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.solution-card .solution-footer .text-list span{
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}
.solution-feature-list{
    margin-top: 20px;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
    row-gap: 15px;
    flex-wrap: wrap;
}
.solution-feature-list span.title{
    font-size: 13px;
    color:rgba(255, 255, 255, 0.5)
}
.solution-feature-list .feature-item{
    display: flex;
    align-items: center;
    gap: 6px;
}
.solution-feature-list .feature-item .dot{
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal);
}
.solution-feature-list .feature-item .text{
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}
/* counter Section */
.counter-section .counter-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}
.counter-item .counter-number span{
    font-family: "Outfit", sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}
.counter-item h3.counter-title{
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 6px;
    margin-bottom: 3px;
}
.counter-item p{
    margin: 0;
    font-size: 13px;
    color: rgba(12, 31, 61, 0.55);
}

/* Compare Section */
.compare-section {
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  color: var(--text);
}

/* Header */
.compare-section .compare-header {
  padding: 24px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.compare-section .compare-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
}

.compare-section .compare-header span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Table */
.compare-table-wrapper {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

/* Header */
.compare-table thead {
  background: rgba(0, 212, 170, 0.05);
}

.compare-table th {
  padding: 14px 20px;
  font-size: 12px;
  text-align: left;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

}
.compare-table th:not(:first-child){
    text-align: center;
}
.compare-table th.highlight {
  text-align: center;
  color: var(--teal);
}

/* Body */
.compare-table td {
  padding: 14px 20px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color:rgba(255, 255, 255, 0.65);
}

.compare-table td:nth-child(n+2) {
  text-align: center;
}

/* Highlight */
.compare-table td.highlight {
  color: var(--teal);
  font-weight: 600;
}

/* Muted */
.compare-table td .muted {
  color: rgba(255, 255, 255, 0.25);
}

/* Hover */
.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* ========================= */
/* ✅ MOBILE CARD LAYOUT */
/* ========================= */

@media (max-width: 768px) {
  .compare-table{
    min-width:auto;
  }
  .compare-table thead {
    display: none;
  }

  .compare-header {
    padding: 18px;
    text-align: left;
  }

  .compare-header h3 {
    font-size: 16px;
  }

  .compare-header span {
    font-size: 11px;
  }
  .compare-table-wrapper{
    padding: 10px;
  }
  /* Hide table header */
  .compare-table thead {
    display: none;
  }

  /* Convert table to cards */
  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table td {
    display: block;
    width: 100%;
  }

  /* Card container */
  .compare-table tr {
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.15);
    margin: 0 0 14px;
    border-radius: 14px;
    padding: 14px;
  }

  /* Each row item */
  .compare-table td {
    padding: 8px 4px;
    text-align: left;
  }

  /* Label */
  .compare-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
  }

  /* Capability (title) */
  .compare-table td:first-child {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
  }

  /* Vendor blocks spacing */
  .compare-table td:not(:first-child) {
    margin-bottom: 6px;
  }
}

/* Client Section */
.client-section p.title{
    text-align: center;
    text-transform: uppercase;
    color: var(--txt3);
    font-weight: 700;
    margin-bottom:40px;
}
.client-card{
    background: rgb(255, 255, 255);
    border-radius: 14px;
    padding: 20px 10px;
    text-align: center;
    border: 1px solid var(--border);
    height: 100%;
    transition: transform .25s, box-shadow .25s;
}
.client-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(12, 31, 61, .12);
}
.client-card .client-img{
    margin-bottom: 10px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.client-card .client-img img{
    width: auto;
    max-width: 100%;
    max-height: 80px;
    margin: 0 auto;
}
.client-card h3.name{
    font-size: 16px;
}
.client-card div.pill{
    font-size: 10px;
    padding: 5px 10px;
}
/* CTA Block */
.ss-cta-block{
    background: linear-gradient(135deg, var(--navy), #1A3562);
    border-radius: 18px;
    padding: 36px 44px;
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}
.ss-cta-block .content-wrapper h2{
    font-size: 22px;
    font-weight: 800;
    color: rgb(255, 255, 255);
    margin-bottom: 8px;
}
.ss-cta-block .content-wrapper p{
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}
.ss-cta-block .content-wrapper p strong{
    color: var(--teal);
}
/* Contact Section */
.contact-section .icon-list li .ltxt{
    color: rgba(255, 255, 255, 0.65);
}
.contact-form-box{
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
}
.contact-form-box .input-block label, .contact-form-box .input-block input, .contact-form-box .input-block textarea{
    display: block;
    width: 100%;
}
.contact-form-box .input-block label{
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.contact-form-box .input-block input, .contact-form-box .input-block textarea{
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: rgb(255, 255, 255);
    outline: none;
    transition: border 0.2s;
}
.contact-form-box button{
    display: block;
    width: 100%;
    text-align: center;
}
.contact-form-box div#message{
    text-align: center;
}
.contact-form-box div#message span{
    color: var(--teal2);
}
.contact-form-box div#message span.res-success{
    color: var(--teal);
}
.contact-form-box p.note{
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
}
.contact-form-box .iti{
    width: 100%;
}
.contact-form-box .iti__selected-country{
    display: flex;
    align-items: center;
}
.contact-form-box .iti__selected-dial-code{
    color: #FFFFFF;
}
.contact-form-box input#userPhone{
    padding-left: 70px;
}
@media(min-width:1080px){
    .contact-form-box{
        display: block;
        max-width: 960px;
        margin: 0 auto;
    }
}
footer{
    background: rgb(6, 15, 34);
}
footer .footer-top{
    padding-top: 50px;
    padding-bottom: 30px;
}
footer .footer-top .top-wrapper{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}
.footer-widget.about-widget .footer-logo{
    max-width: 200px;
    margin-bottom: 15px;
}
.footer-widget.about-widget p{
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.75;
    margin-bottom: 18px;
}
.footer-widget.about-widget .contact-widget a{
    font-size: 13px;
    color: var(--teal);
    text-decoration: none;
}
.footer-widget .widget-header{
    margin-bottom: 20px;
}
.footer-widget .widget-header h3{
    font-size: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.footer-widget .link-widget{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-widget .link-widget li:not(:last-child){
    margin-bottom: 10px;
}
.footer-widget .link-widget li a{
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.75;
    text-decoration: none;
    transition: color 0.18s;
}
.footer-widget .link-widget li a:hover{
    color: var(--teal);
}
footer .footer-bottom{
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
footer .footer-bottom p.copyright-text{
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}
footer .footer-bottom .text-list{
    display: flex;
    width: 100%;
    justify-content: flex-end;
    gap: 10px;
}
footer .footer-bottom .text-list span{
    font-size: 12px;
    color: var(--teal2);
}
/* ===========================
   Navbar Dropdowns
   =========================== */
.nav-item.has-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
}
.nav-chevron {
    font-size: 9px;
    margin-left: 2px;
    transition: transform 0.22s ease;
    opacity: 0.65;
}
.nav-item.has-dropdown:hover .nav-chevron,
.nav-item.has-dropdown.open .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}
.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 255px;
    background: var(--navy2);
    border: 1px solid rgba(0, 212, 170, 0.18);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 212, 170, 0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 9999;
}
.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown.dropdown-right {
    left: auto;
    right: 0;
}
.navbar.scrolled .nav-dropdown {
    background: #ffffff;
    border-color: #e2eaf3;
    box-shadow: 0 12px 40px rgba(12, 31, 61, 0.13);
}
.nav-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 9px 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.18s;
    cursor: pointer;
}
.nav-dropdown-inner .nav-dropdown-item:not(:last-child) {
    margin-bottom: 1px;
}
.nav-dropdown-item:hover {
    background: rgba(0, 212, 170, 0.09);
}
.navbar.scrolled .nav-dropdown-item:hover {
    background: rgba(0, 212, 170, 0.07);
}
.ndi-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 8px;
    background: rgba(0, 212, 170, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}
.ndi-icon.ndi-teal { background: rgba(0, 212, 170, 0.13); }
.ndi-icon.ndi-blue { background: rgba(10, 132, 255, 0.13); }
.ndi-icon.ndi-gold { background: rgba(245, 166, 35, 0.13); }
.ndi-content { flex: 1; min-width: 0; }
.ndi-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 3px;
}
@media(min-width:1200px){
    .navbar.scrolled .ndi-title { color: var(--navy); }
    nav.scrolled .navbar-nav .nav-item a.nav-link, nav.scrolled .action-block > a {
    color: #1e293b;
}
}
.ndi-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
}
.navbar.scrolled .ndi-desc { color: var(--txt3); }
/* Megamenu */
.nav-megamenu {
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 490px;
    padding: 12px;
}
.nav-item.has-dropdown:hover .nav-megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.megamenu-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    padding: 4px 10px 8px;
}
.navbar.scrolled .megamenu-label { color: var(--teal2); }
.megamenu-grid { display: grid; gap: 0; }
.megamenu-divider {
    height: 1px;
    background: rgba(0, 212, 170, 0.1);
    margin: 4px 10px;
}
.navbar.scrolled .megamenu-divider { background: #e2eaf3; }
/* Contact Us ghost button on scrolled white navbar */
nav.scrolled .btn-ghost.btn-nav {
    background: transparent;
    color: var(--navy);
    border: 1px solid rgba(12, 31, 61, 0.3);
}
nav.scrolled .btn-ghost.btn-nav:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

/* Tablet */
@media (max-width: 992px) {
  footer .footer-top .top-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  /* First item full width */
  footer .footer-top .top-wrapper > :first-child {
    grid-column: 1 / -1;
  }
}
@media(max-width:1200px){
    .navbar .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 240px;
        height: 100%;
        min-height: 100vh;
        padding: 20px;
        transition: transform 0.3s ease-in-out;
        transform: translateX(-100%);
        background: var(--navy);
        overflow-y: auto;
    }
    .navbar .navbar-collapse.show{
        visibility: visible;
        transform: translateX(0);
    }
    /* Mobile dropdowns — inline accordion inside sidebar */
    .nav-item.has-dropdown {
        position: static;
    }
    .nav-dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: rgba(0, 212, 170, 0.05) !important;
        border: none !important;
        border-left: 2px solid rgba(0, 212, 170, 0.25) !important;
        border-radius: 0 !important;
        margin-left: 10px;
        margin-top: 2px;
        margin-bottom: 4px;
        padding: 4px !important;
        box-shadow: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease !important;
        min-width: unset;
    }
    .nav-item.has-dropdown.open .nav-dropdown {
        max-height: 600px;
    }
    .nav-megamenu {
        min-width: unset !important;
        left: 0 !important;
        transform: none !important;
    }
    .nav-item.has-dropdown.open .nav-megamenu {
        max-height: 600px;
    }
    .ndi-desc { display: none; }
    .megamenu-label { padding: 4px 10px 6px; }
    .megamenu-divider { display: none; }
    .nav-container{
        width: auto;
    }
}
@media(max-width: 767px){
    .ss-platform-tabs .tab-content .tab-pane .tab-body ul.icon-list{
        grid-template-columns: 1fr;
    }
}
/* Mobile */
@media (max-width: 576px) {
  footer .footer-top .top-wrapper {
    grid-template-columns: 1fr;
  }

  footer .footer-top .top-wrapper > :first-child {
    grid-column: auto;
  }
}

/* =============================================
   ANNOUNCEMENT BANNER
   ============================================= */
.top-announcement {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    background: linear-gradient(90deg, #1a0850 0%, #3b19a8 40%, #5a28e0 65%, #2d1280 100%);
    padding: 9px 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
    max-height: 60px;
    opacity: 1;
}
.top-announcement.banner-hidden {
    max-height: 0;
    opacity: 0;
    padding: 0;
}
.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.ann-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.ann-badge {
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}
.ann-text {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    white-space: nowrap;
}
.ann-sep {
    color: rgba(255,255,255,0.35);
    font-size: 13px;
}
.ann-left strong {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #ffffff;
}
.ann-cta {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 3px 14px;
    border-radius: 20px;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.ann-cta:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}
/* Navbar offset when banner visible */
#navbar {
    top: 42px;
    transition: top 0.35s ease;
}
#navbar.navbar-no-banner {
    top: 0;
}
/* Hero section extra top padding to clear banner + navbar */
.hero-section {
    padding-top: 120px !important;
}

/* =============================================
   SiberShield Box™ THEME (crimson)
   ============================================= */
/* Tab button */
.ss-platform-tabs .nav .nav-item button.bg-crimson.active {
    background: var(--crimson);
    color: #ffffff;
    border: 2px solid var(--crimson);
    box-shadow: rgba(232, 41, 58, 0.22) 0px 8px 24px;
}
/* External link tab (Data Recovery) */
.ss-platform-tabs .nav .nav-item a.bg-purple-tab {
    padding: 11px 24px;
    border-radius: 10px;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--txt2);
    border: 2px solid var(--border);
    text-decoration: none;
    transition: 0.22s;
    white-space: nowrap;
}
.ss-platform-tabs .nav .nav-item a.bg-purple-tab:hover {
    background: var(--purple2);
    border-color: var(--purple);
    color: var(--purple);
}
/* Tab pane border & shadow */
.ss-platform-tabs .tab-content .tab-pane.theme-crimson {
    border: 2px solid rgba(232, 41, 58, 0.13);
    box-shadow: rgba(232, 41, 58, 0.07) 0px 24px 80px;
}
/* Line layer */
.ss-platform-tabs .tab-content .tab-pane.theme-crimson .line-layer {
    background: linear-gradient(90deg, var(--crimson), rgba(232, 41, 58, 0.3));
}
/* Tab footer */
.ss-platform-tabs .tab-content .tab-pane.theme-crimson .tab-footer {
    background: rgba(232, 41, 58, 0.03);
    border-top: 1px solid rgba(232, 41, 58, 0.08);
}
/* CTA button overrides crimson tab */
.btn-crimson-cta {
    background: var(--crimson) !important;
    border-color: var(--crimson) !important;
}
.btn-crimson-cta:hover {
    background: #c8212f !important;
    box-shadow: 0 10px 30px rgba(232, 41, 58, 0.35) !important;
}
/* Pill & icon-pill */
.pill.theme-crimson {
    background: rgba(232, 41, 58, 0.09);
    color: var(--crimson);
}
.icon-pill.theme-crimson {
    background: rgba(232, 41, 58, 0.06);
}
/* icon-list */
ul.icon-list.theme-crimson li span.licon {
    background: rgba(232, 41, 58, 0.1);
    color: var(--crimson);
}
/* number-stats-item */
.number-stats-item.theme-crimson {
    background: rgba(232, 41, 58, 0.05);
    border: 1px solid rgba(232, 41, 58, 0.13);
}
.number-stats-item.theme-crimson h3.number {
    color: var(--crimson);
}
/* heading colour */
.txt-crimson {
    color: var(--crimson);
}
/* nav icon accent */
.ndi-icon.ndi-crimson { background: rgba(232, 41, 58, 0.13); }
.ndi-icon.ndi-purple  { background: rgba(123, 97, 255, 0.13); }

/* Wider platform megamenu */
/* .nav-platform-mega {
    min-width: 320px !important;
} */
.sibershield-box-section .ss-box-card .tab-body{
    padding: 30px 35px;
}
.sibershield-box-section .ss-box-card .tab-footer{
    padding: 18px 48px;
}
/* =============================================
   SiberShield Box™ Flagship Nav Item
   ============================================= */
.nav-box-flagship {
    color: var(--crimson) !important;
    font-weight: 700 !important;
}
nav.scrolled .nav-box-flagship {
    color: var(--crimson) !important;
}
.flagship-badge {
    display: inline-block;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: var(--crimson);
    color: #fff;
    padding: 1px 5px;
    border-radius: 3px;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 3px;
    font-family: 'Outfit', sans-serif;
}

/* =============================================
   SiberShield Box™ Standalone Section
   ============================================= */
.sibershield-box-section .section-title { color: #fff; }
.sibershield-box-section .section-description { color: rgba(255,255,255,0.65); }
.ss-box-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(232, 41, 58, 0.15);
    box-shadow: rgba(232, 41, 58, 0.1) 0px 24px 80px, rgba(0,0,0,0.3) 0px 8px 30px;
}

/* =============================================
   Coming Soon Section
   ============================================= */
.coming-soon-section .coming-soon-inner {
    max-width: 620px;
    margin: 0 auto;
}
.coming-soon-section .cs-icon {
    font-size: 52px;
    margin-bottom: 16px;
    line-height: 1;
}
.coming-soon-section .section-title {
    margin-bottom: 14px;
}
.cs-items {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.cs-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 22px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}
.cs-item-icon {
    font-size: 18px;
}

/* Banner responsive */
@media (max-width: 768px) {
    .ann-text { display: none; }
    .ann-sep  { display: none; }
    #navbar   { top: 60px; }
    .top-announcement { padding: 7px 0; max-height: fit-content; }
    .hero-section { padding-top: 110px !important; }
}
@media (max-width: 480px) {
    .ann-left strong { font-size: 11px; }
    .ann-cta { font-size: 11px; padding: 3px 10px; }
}

/* =============================================
   Deployment Flexibility Link (AI-SOC Tab)
   ============================================= */
.deploy-flex-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    padding: 7px 16px;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.30);
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.deploy-flex-link:hover {
    background: rgba(0, 212, 170, 0.16);
    border-color: var(--teal);
    color: var(--teal);
    text-decoration: none;
}
.deploy-flex-icon { font-size: 14px; }
.deploy-flex-arrow { font-size: 11px; opacity: 0.7; }

/* =============================================
   Service Detail Sections
   ============================================= */
.services-detail-section {}

.svc-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 28px 24px;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.svc-card .svc-icon {
    font-size: 30px;
    margin-bottom: 14px;
}
.svc-card .svc-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.svc-card .svc-desc {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    color: var(--txt2);
    line-height: 1.6;
    margin: 0;
}
.svc-card.theme-teal { border-top: 3px solid var(--teal); }
.svc-card.theme-blue { border-top: 3px solid var(--azure); }
.svc-card.theme-gold { border-top: 3px solid var(--gold); }

/* Agentic Workflows block */
.agentic-workflows-block {
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.agentic-label {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 14px;
}
.agentic-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.agentic-pill {
    display: inline-block;
    padding: 8px 20px;
    background: var(--purple);
    border: 1px solid var(--purple);
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 4px 14px rgba(123, 97, 255, 0.35);
}

/* Gold pill variant for service label */
.bg-gold-3 { background: rgba(245, 166, 35, 0.12); }

/* =============================================
   COOKIE CONSENT BANNER & MODAL
   ============================================= */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--navy);
    border-top: 1px solid rgba(0, 212, 170, 0.2);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.35);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.is-visible {
    transform: translateY(0);
}
.cookie-banner.is-hiding {
    transform: translateY(100%);
}
.cookie-banner-inner {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 0;
}
.cookie-banner-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}
.cookie-banner-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}
.cookie-banner-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.6;
}
.cookie-manage-link {
    display: inline-block;
    margin-top: 7px;
    font-size: 12px;
    font-weight: 700;
    color: var(--teal);
    text-decoration: underline;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.cookie-manage-link:hover { color: var(--teal2); }
.cookie-banner-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: wrap;
}
/* Shared button base for cookie UI */
.btn-cookie {
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-teal.btn-cookie {
    background: var(--teal);
    color: var(--navy);
}
.btn-teal.btn-cookie:hover {
    background: var(--teal2);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 212, 170, 0.35);
}
.btn-ghost.btn-cookie {
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.22);
}
.btn-ghost.btn-cookie:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

/* Cookie Preferences Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cookie-modal.is-visible {
    opacity: 1;
    visibility: visible;
}
.cookie-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 31, 61, 0.88);
    backdrop-filter: blur(4px);
}
.cookie-modal-box {
    position: relative;
    z-index: 1;
    background: var(--navy2);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 16px;
    width: 90%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}
.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(0, 212, 170, 0.12);
}
.cookie-modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cookie-modal-icon { font-size: 22px; }
.cookie-modal-title h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.cookie-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    transition: color 0.2s;
}
.cookie-modal-close:hover { color: #fff; }
.cookie-modal-body {
    padding: 20px 24px;
}
.cookie-modal-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.6;
}
.cookie-pref-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cookie-pref-item:last-child { border-bottom: none; }
.cookie-pref-info { flex: 1; min-width: 0; }
.cookie-pref-info h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}
.cookie-pref-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
}
.cookie-toggle.always-on {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.25);
    border-radius: 20px;
    padding: 5px 12px;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
}
/* Toggle Switch */
.cookie-toggle-switch {
    position: relative;
    display: inline-flex;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
    margin: 0;
}
.cookie-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.cookie-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    transition: background 0.25s ease;
}
.cookie-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s ease;
}
.cookie-toggle-switch input:checked + .cookie-slider {
    background: var(--teal);
}
.cookie-toggle-switch input:checked + .cookie-slider::before {
    transform: translateX(20px);
}
.cookie-modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
    padding: 16px 24px 20px;
    border-top: 1px solid rgba(0, 212, 170, 0.12);
    flex-wrap: wrap;
}
/* Responsive */
@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .cookie-banner-actions {
        width: 100%;
        justify-content: flex-end;
    }
    .cookie-modal-footer {
        flex-direction: column-reverse;
    }
    .cookie-modal-footer .btn-cookie,
    .cookie-banner-actions .btn-cookie {
        width: 100%;
        text-align: center;
    }
}
.color-gold { color: var(--gold); }
