/* ==========================================================================
   ViralSky - AI-Driven Cloud Communication & Scalable Tech
   Premium Enterprise Agency Stylesheet
   ========================================================================== */

:root {
    /* Brand Colors (Aligned with Logo: Navy, Blue, Cyan, Purple) */
    --vs-primary-dark: #070c1e;
    --vs-primary-navy: #0b1430;
    --vs-primary-blue: #0062ff;
    --vs-cyan: #00d2ff;
    --vs-purple: #7b2cbf;
    --vs-purple-light: #9d4edd;
    
    /* Gradients */
    --vs-gradient-primary: linear-gradient(135deg, #0062ff 0%, #00d2ff 100%);
    --vs-gradient-purple: linear-gradient(135deg, #7b2cbf 0%, #0062ff 100%);
    --vs-gradient-accent: linear-gradient(135deg, #00d2ff 0%, #7b2cbf 100%);
    --vs-gradient-dark: linear-gradient(180deg, #070c1e 0%, #0d1738 100%);
    --vs-gradient-card: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);
    
    /* Surface & Background Neutrals */
    --vs-bg-light: #f8fafc;
    --vs-bg-surface: #ffffff;
    --vs-bg-surface-elevated: #ffffff;
    --vs-dark-surface: #0a1128;
    --vs-dark-card: #0e1738;
    
    /* Text Colors */
    --vs-text-title: #0a1128;
    --vs-text-main: #243048;
    --vs-text-muted: #5e6d8a;
    --vs-text-subtle: #8a96ab;
    --vs-text-light: #f1f5f9;
    
    /* Borders & Shadows */
    --vs-border-light: rgba(226, 232, 240, 0.9);
    --vs-border-focus: rgba(0, 98, 255, 0.4);
    --vs-border-glass-dark: rgba(255, 255, 255, 0.08);
    --vs-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --vs-shadow-md: 0 10px 30px rgba(7, 12, 30, 0.06);
    --vs-shadow-lg: 0 20px 45px rgba(7, 12, 30, 0.1);
    --vs-shadow-glow: 0 0 35px rgba(0, 210, 255, 0.25);
    
    /* App Dimensions */
    --navbar-height: 94px;
    --app-bottom-nav-height: 72px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* Base & Typography */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--vs-text-main);
    background-color: var(--vs-bg-light);
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--vs-text-title);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-weight: 300 !important;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

p {
    color: var(--vs-text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Gradient Utility Classes */
.text-gradient {
    background: var(--vs-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-purple {
    background: var(--vs-gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #00d2ff 0%, #00f5a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-cyan { color: var(--vs-cyan) !important; }
.text-primary-blue { color: var(--vs-primary-blue) !important; }
.text-purple { color: var(--vs-purple) !important; }

.section-padding {
    padding: 110px 0;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.glass-panel-dark {
    background: rgba(14, 23, 56, 0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--vs-border-glass-dark);
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.navbar {
    min-height: var(--navbar-height);
    background-color: #030718;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.navbar.scrolled {
    min-height: 70px;
    background-color: #030718;
    border-bottom-color: rgba(0, 210, 255, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
    height: 72px;
    max-height: 72px;
    width: auto;
    object-fit: contain;
    transition: all 0.25s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 56px;
    max-height: 56px;
}

.navbar-brand:hover img {
    transform: scale(1.02);
}

@media (max-width: 991.98px) {
    .navbar {
        min-height: 58px !important;
        height: 58px !important;
        padding-top: 4px !important;
        padding-bottom: 4px !important;
        background-color: rgba(3, 7, 24, 0.97) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        transition: none !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
    }
    .navbar.scrolled {
        min-height: 58px !important;
        height: 58px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
    }
    .navbar .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: relative !important;
        height: 100% !important;
    }
    .navbar-brand {
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 0 !important;
    }
    .navbar-brand img,
    .navbar.scrolled .navbar-brand img {
        height: 38px !important;
        max-height: 38px !important;
        width: auto !important;
    }
    .navbar-collapse {
        display: none !important;
    }
}

.nav-link {
    color: #e2e8f0 !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 14px;
    padding: 8px 4px !important;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #00d2ff;
    box-shadow: 0 0 12px #00d2ff;
    border-radius: 6px;
    transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 26px;
}

.nav-link:hover,
.nav-link.active {
    color: #00d2ff !important;
}

/* Remove hover/active indicator pill from dropdown toggle so it doesn't look like a floating dot */
.nav-link.dropdown-toggle::after {
    display: none !important;
}

/* ==========================================================================
   Hamburger Button (Mobile Header)
   ========================================================================== */
.hamburger-btn {
    background: rgba(10, 19, 39, 0.75) !important;
    border: 1px solid rgba(0, 242, 254, 0.35) !important;
    border-radius: 12px;
    padding: 10px 12px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 16px rgba(0, 242, 254, 0.15);
    z-index: 1020;
}

.hamburger-btn:hover,
.hamburger-btn:focus {
    background: rgba(0, 242, 254, 0.16) !important;
    border-color: #00f2fe !important;
    box-shadow: 0 0 24px rgba(0, 242, 254, 0.4);
    outline: none !important;
}

.hamburger-box {
    width: 22px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-bar {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: #00f2fe;
    border-radius: 4px;
    transition: all 0.25s ease;
}

.hamburger-btn:hover .hamburger-bar {
    background-color: #ffffff;
    box-shadow: 0 0 8px #00f2fe;
}

/* Hide hamburger button strictly on desktop mode (>= 992px) */
@media (min-width: 992px) {
    .hamburger-btn {
        display: none !important;
    }
}

/* ==========================================================================
   Desktop Services Dropdown Menu (Light Theme & Cyber Accent)
   ========================================================================== */
.dropdown-menu.cyber-dropdown {
    background: #ffffff !important;
    border: 1px solid rgba(2, 132, 199, 0.18) !important;
    border-radius: 18px;
    padding: 16px 18px;
    width: 620px;
    min-width: 600px;
    max-width: calc(100vw - 32px);
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.22), 0 4px 16px rgba(2, 6, 23, 0.08);
    margin-top: 14px;
}

@media (min-width: 992px) {
    .dropdown-hover > .dropdown-menu {
        display: block !important;
        opacity: 0 !important;
        visibility: hidden !important;
        left: 50% !important;
        transform: translate(-50%, 10px) !important;
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }
    .dropdown-hover:hover > .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translate(-50%, 0) !important;
        pointer-events: auto !important;
    }
}

.cyber-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
}

.dropdown-header-cyber {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 10px;
    padding-bottom: 8px;
}

.cyber-dropdown .text-cyan {
    color: #0284c7 !important;
}

.cyber-dropdown-item {
    color: #334155 !important;
    border-radius: 12px;
    padding: 10px 12px;
    transition: all 0.2s ease;
    white-space: normal;
    text-decoration: none;
    background: transparent;
}

.cyber-dropdown-item:hover {
    background: #f0f9ff !important;
    transform: translateY(-2px);
}

.cyber-dropdown-item .dropdown-item-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #0f172a;
    line-height: 1.25;
    transition: color 0.2s ease;
}

.cyber-dropdown-item:hover .dropdown-item-title {
    color: #0284c7 !important;
}

.dropdown-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #e0f2fe;
    border: 1px solid rgba(2, 132, 199, 0.2);
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.cyber-dropdown-item:hover .dropdown-icon-box {
    background: linear-gradient(135deg, #0284c7, #06b6d4);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
    color: #ffffff;
}

.dropdown-item-desc {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.35;
    margin-top: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dropdown-divider-cyber {
    height: 1px;
    background: #e2e8f0;
}

.cyber-dropdown-all {
    border-radius: 8px;
    font-size: 0.88rem;
    color: #0284c7 !important;
    transition: all 0.2s ease;
}

.cyber-dropdown-all:hover {
    background: #e0f2fe !important;
    color: #0369a1 !important;
    padding-left: 16px !important;
}

.nav-dropdown-arrow {
    font-size: 0.72rem;
    transition: transform 0.25s ease;
}

.dropdown-hover:hover .nav-dropdown-arrow,
.dropdown.show .nav-dropdown-arrow {
    transform: rotate(180deg);
    color: #00f2fe;
}

/* Mobile subservice link in drawer */
.mobile-subservice-link {
    transition: all 0.2s ease;
    background: transparent;
}

.mobile-subservice-link:hover,
.mobile-subservice-link:active {
    background: rgba(0, 242, 254, 0.12) !important;
    color: #00f2fe !important;
    transform: translateX(4px);
}

/* Consultation & Gradient Primary Button */
.btn-gradient-primary {
    background: linear-gradient(135deg, #0062ff 0%, #7c3aed 100%) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 14px 28px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 22px rgba(0, 98, 255, 0.4) !important;
    transition: all 0.25s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}

.btn-gradient-primary:hover,
.btn-gradient-primary:focus,
.btn-gradient-primary:active {
    background: linear-gradient(135deg, #0050d8 0%, #6d28d9 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0, 98, 255, 0.55), 0 0 15px rgba(124, 58, 237, 0.4) !important;
    transform: translateY(-2px) !important;
}

/* Buttons */
.btn-vs-primary {
    background: var(--vs-gradient-primary);
    color: #ffffff !important;
    border: none;
    padding: 13px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    box-shadow: 0 6px 18px rgba(0, 98, 255, 0.3);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-vs-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 98, 255, 0.42);
    color: #ffffff !important;
}

.btn-vs-primary:active {
    transform: translateY(0);
}

.btn-vs-outline {
    background: #ffffff;
    color: var(--vs-primary-dark) !important;
    border: 1.5px solid #dbe2ea;
    padding: 12px 26px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-vs-outline:hover {
    border-color: var(--vs-primary-blue);
    color: var(--vs-primary-blue) !important;
    background-color: rgba(0, 98, 255, 0.03);
    transform: translateY(-2px);
}

.btn-vs-dark {
    background: var(--vs-primary-dark);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 26px;
    border-radius: var(--radius-md);
    font-weight: 700;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-vs-dark:hover {
    background: #0f1938;
    border-color: var(--vs-cyan);
    color: var(--vs-cyan) !important;
}

/* ==========================================================================
   Hero Section: Connected Cloud & AI Ecosystem (Dark Cyber Theme)
   ========================================================================== */
.hero-dark-ecosystem {
    position: relative;
    background-color: #030718;
    overflow: hidden;
    color: #ffffff;
    padding-top: 105px;
    padding-bottom: 25px;
}

.hero-cosmic-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-radial-glow {
    position: absolute;
    top: 35%;
    right: 15%;
    transform: translate(10%, -30%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 130, 255, 0.22) 0%, rgba(0, 70, 200, 0.08) 35%, rgba(3, 7, 24, 0) 70%);
    filter: blur(50px);
    animation: cosmicPulse 8s ease-in-out infinite alternate;
}

@keyframes cosmicPulse {
    0% { transform: translate(10%, -30%) scale(0.92); opacity: 0.8; }
    100% { transform: translate(10%, -30%) scale(1.08); opacity: 1; }
}

.hero-stars-mesh {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(1px 1px at 15% 25%, rgba(255, 255, 255, 0.7) 1px, transparent 0),
        radial-gradient(1.5px 1.5px at 35% 65%, rgba(0, 210, 255, 0.6) 1.5px, transparent 0),
        radial-gradient(1px 1px at 65% 15%, rgba(255, 255, 255, 0.5) 1px, transparent 0),
        radial-gradient(2px 2px at 85% 45%, rgba(0, 210, 255, 0.7) 2px, transparent 0),
        radial-gradient(1px 1px at 75% 85%, rgba(255, 255, 255, 0.6) 1px, transparent 0);
    background-size: 550px 550px;
    opacity: 0.4;
}

.min-vh-hero {
    min-height: calc(100vh - 170px);
    padding: 10px 0 5px;
}

/* Left Column Content */
.hero-left-content {
    z-index: 10;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #b87cf8;
    text-shadow: 0 0 16px rgba(184, 124, 248, 0.35);
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 1.15rem;
}

.hero-headline {
    font-size: clamp(2.15rem, 3.65vw, 3.4rem);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin-bottom: 1.15rem;
}

.hero-headline-gradient {
    background: linear-gradient(90deg, #00d2ff 0%, #0099ff 35%, #a855f7 75%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.text-cyan-glow {
    color: #00d2ff;
    text-shadow: 0 0 25px rgba(0, 210, 255, 0.6), 0 0 50px rgba(0, 110, 255, 0.35);
}

.hero-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #94a3b8;
    max-width: 470px;
    margin-bottom: 1.4rem;
}

.hero-lead strong {
    color: #f1f5f9;
}

/* Ecosystem Hero Action Buttons (Exact Match to Reference Design) */
.btn-ecosystem-primary {
    background: linear-gradient(90deg, #0062ff 0%, #7c3aed 100%);
    color: #ffffff !important;
    border: none;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(0, 98, 255, 0.4), 0 0 20px rgba(124, 58, 237, 0.3);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
}

.btn-ecosystem-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 140, 255, 0.6), 0 0 25px rgba(124, 58, 237, 0.5);
    color: #ffffff !important;
}

.btn-ecosystem-outline {
    background: rgba(13, 20, 48, 0.5);
    color: #ffffff !important;
    border: 1.5px solid rgba(168, 85, 247, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 11px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
}

.btn-ecosystem-outline:hover {
    border-color: #00d2ff;
    color: #00d2ff !important;
    background: rgba(0, 210, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.35);
}


/* Hero Stats Row (4 Items Direct from Reference Design) */
.hero-stats-row {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats-grid {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: nowrap;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 9px;
    user-select: none;
}

.stat-icon-cyan {
    font-size: 1.45rem;
    color: #00d2ff;
    filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.6));
    line-height: 1;
    display: flex;
    align-items: center;
}

.stat-meta {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.22rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.68rem;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.2;
    margin-top: 2px;
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.14);
    margin: 0 2px;
}

/* ==========================================================================
   Hero Right Column: Connected Cloud Ecosystem
   ========================================================================== */
.hero-ecosystem-container {
    position: relative;
    width: 100%;
    height: 470px;
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

@media (min-width: 992px) {
    .hero-right-content {
        display: flex;
        justify-content: flex-end;
    }
    .hero-ecosystem-container {
        margin-left: auto;
        margin-right: -15px;
        left: 50px;
    }
}

/* SVG Filaments and Travelling Energy Pulses */
.ecosystem-filaments-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.filament-tube {
    stroke: rgba(0, 180, 255, 0.32);
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    filter: drop-shadow(0 0 6px rgba(0, 210, 255, 0.4));
}

.filament-pulse {
    stroke: #00f0ff;
    stroke-width: 3.2;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 18 160;
    animation: dashTravel 2.4s linear infinite;
    filter: drop-shadow(0 0 8px #00f0ff);
}

@keyframes dashTravel {
    0% { stroke-dashoffset: 178; }
    100% { stroke-dashoffset: 0; }
}

/* Transparent Round Orbital Lines Behind Central Cloud */
.transparent-round-ring {
    fill: none;
    pointer-events: none;
}

.ring-inner {
    stroke: rgba(0, 210, 255, 0.28);
    stroke-width: 1.2;
    stroke-dasharray: 4 6;
    animation: ringRotateClockwise 35s linear infinite;
    transform-origin: 360px 270px;
}

.ring-mid {
    stroke: rgba(0, 180, 255, 0.18);
    stroke-width: 1.4;
    filter: drop-shadow(0 0 6px rgba(0, 210, 255, 0.3));
}

.ring-outer {
    stroke: rgba(0, 210, 255, 0.14);
    stroke-width: 1;
    stroke-dasharray: 10 10;
    animation: ringRotateCounter 50s linear infinite;
    transform-origin: 360px 270px;
}

@keyframes ringRotateClockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ringRotateCounter {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Orbital Rings with Sparkle Glints */
.ecosystem-orbital-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 420px;
    height: 380px;
    border: 1px solid rgba(0, 180, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 160, 255, 0.08), inset 0 0 30px rgba(0, 160, 255, 0.08);
}

.orbit-glint {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 12px 3px rgba(0, 210, 255, 0.95);
}

.glint-1 {
    top: 25%;
    right: 11%;
    animation: glintPulse 3s ease-in-out infinite alternate;
}

.glint-2 {
    bottom: 27%;
    left: 13%;
    animation: glintPulse 3s ease-in-out infinite alternate 1.5s;
}

@keyframes glintPulse {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 1; }
}

/* Central Glowing ViralSky Cloud Core (Stacked Exact Match) */
.cloud-core-anchor {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 7;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cloud-core-anchor:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.cloud-core-glow-halo {
    position: absolute;
    inset: -45px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.45) 0%, rgba(139, 92, 246, 0.25) 45%, transparent 70%);
    filter: blur(35px);
    border-radius: 50%;
    animation: pulseHalo 4s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes pulseHalo {
    0% { transform: scale(0.92); opacity: 0.75; }
    100% { transform: scale(1.1); opacity: 1; }
}

.cloud-core-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    animation: cloudHover 5s ease-in-out infinite alternate;
}

@keyframes cloudHover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

.cloud-core-emblem {
    width: 125px;
    height: auto;
    filter: drop-shadow(0 0 24px rgba(0, 210, 255, 0.8)) drop-shadow(0 0 45px rgba(124, 58, 237, 0.4));
    transition: transform 0.3s ease;
}



/* Service Nodes Wrapper & Vertically-Stacked Pill Cards */
.ecosystem-nodes-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 8;
}

.ecosystem-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translate(-50%, -50%);
    text-decoration: none;
    pointer-events: auto;
}

.ecosystem-node:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.node-icon-circle {
    width: 40px;
    height: 40px;
    min-height: 40px;
    flex-shrink: 0;
    min-width: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #0c2b64 0%, #030a1c 100%);
    border: 2px solid #00d2ff;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.55), inset 0 0 8px rgba(0, 210, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.05rem;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.ecosystem-node:hover .node-icon-circle {
    border-color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.95), inset 0 0 15px rgba(0, 210, 255, 0.5);
    transform: scale(1.08);
}

.node-capsule-card {
    background: rgba(6, 18, 48, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 210, 255, 0.24);
    border-radius: 12px;
    padding: 14px 14px 8px;
    margin-top: -14px;
    margin-left: 0;
    text-align: center;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    min-width: 130px;
    max-width: 175px;
    width: max-content;
}

.node-marketing .node-capsule-card {
    min-width: 165px;
    max-width: 175px;
    padding: 14px 12px 8px;
}

.ecosystem-node:hover .node-capsule-card {
    border-color: rgba(0, 210, 255, 0.6);
    background: rgba(8, 24, 62, 0.95);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.25);
}

.node-title {
    font-size: 0.77rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.025em;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    display: block;
}

.node-desc {
    font-size: 0.65rem;
    color: #94a3b8;
    line-height: 1.25;
    margin-top: 3px;
    margin-bottom: 0;
    font-weight: 500;
    white-space: normal;
}


/* Impact Metrics Ribbon */
.hero-metrics-ribbon {
    background: linear-gradient(180deg, #030718 0%, #060e26 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-ribbon-item .metric-value {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
}

.metric-ribbon-item .metric-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #94a3b8;
}

/* Play pulse circle in modal */
.play-pulse-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--vs-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.7);
    animation: pulse 2s infinite;
}

@media (max-width: 991px) {
    .hero-dark-ecosystem {
        padding-top: 90px;
    }

    .hero-headline {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-trust-logos {
        gap: 16px;
    }
}

/* Trust Ticker & Metrics */
.trust-metrics-wrapper {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.metric-box {
    text-align: left;
}

.metric-box .metric-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--vs-primary-dark);
    letter-spacing: -0.02em;
    line-height: 1;
}

.metric-box .metric-label {
    font-size: 0.85rem;
    color: var(--vs-text-muted);
    font-weight: 600;
    margin-top: 4px;
}

/* ==========================================================================
   Social Proof / Client Ticker Section (Directly Below Hero)
   ========================================================================== */
.client-ticker-section {
    position: relative;
    z-index: 5;
    background: #ffffff;
}

.client-ticker-container {
    margin-top: 40px;
}

@media (max-width: 991.98px) {
    .client-ticker-container {
        margin-top: 20px !important;
        margin-bottom: 12px !important;
    }
}

.client-ticker-box {
    background: #060e1d;
    border-radius: 12px;
    display: flex;
    align-items: center;
    
    min-height: 110px;
    height: auto;
    padding: 1.5rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.client-ticker-text-wrapper {
    flex-shrink: 0;
    padding-right: 1.5rem;
}

.client-ticker-text-wrapper h5 {
    font-size: 0.95rem;
    line-height: 1.25;
    letter-spacing: 0.5px;
    margin: 0;
}

.client-ticker-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    margin-right: 2rem;
}

.client-marquee-container {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.client-marquee-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.client-marquee-container:hover .client-marquee-track {
    animation-play-state: paused;
}

.client-logo-card {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.client-brand-img-white {
    height: 42px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-brand-img-white:hover {
    opacity: 1;
}

.client-ticker-star {
    flex-shrink: 0;
    padding-left: 2rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.4rem;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}






.client-brand-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.95);
    transition: filter 0.25s ease;
}



@media (max-width: 991.98px) {
    .client-ticker-box {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 22px 20px !important;
        gap: 16px !important;
        min-height: auto !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18) !important;
    }

    .client-ticker-text-wrapper {
        padding-right: 0 !important;
        width: 100% !important;
        text-align: center !important;
    }

    .client-ticker-text-wrapper h5 {
        font-size: 0.94rem !important;
        line-height: 1.45 !important;
        letter-spacing: 0.01em !important;
        text-transform: none !important;
        color: #f1f5f9 !important;
        font-weight: 600 !important;
    }

    .client-ticker-text-wrapper h5 br {
        display: none !important;
    }

    .client-ticker-divider {
        display: none !important;
    }

    .client-ticker-star {
        display: none !important;
    }

    .client-marquee-container {
        width: 100% !important;
        flex-grow: 0 !important;
        overflow: hidden !important;
        padding: 6px 0 !important;
        mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%) !important;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%) !important;
    }

    .client-marquee-track {
        gap: 36px !important;
        animation: marqueeScroll 20s linear infinite !important;
    }

    .client-logo-card {
        padding: 0 !important;
        min-height: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }

    .client-brand-img-white {
        height: 36px !important;
        max-height: 36px !important;
        width: auto !important;
        opacity: 0.85 !important;
        filter: brightness(0) invert(1) !important;
        display: block !important;
    }
}

.client-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 10px 22px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    transition: all 0.25s ease;
}

.client-pill:hover {
    border-color: var(--vs-primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 98, 255, 0.1);
}

.client-pill .client-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 98, 255, 0.08);
    color: var(--vs-primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.client-pill .client-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--vs-text-title);
}

.client-pill .client-city {
    font-size: 0.78rem;
    color: var(--vs-text-muted);
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 20px;
}

/* ==========================================================================
   Services Interactive Carousel Section
   ========================================================================== */
.carousel-section {
    background: #ffffff;
    position: relative;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--vs-primary-blue);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 300;
    letter-spacing: -0.015em;
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.65;
}

/* Category Filter Tabs */
.carousel-filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-tab {
    background: var(--vs-bg-light);
    border: 1px solid #e2e8f0;
    color: var(--vs-text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 9px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-tab:hover {
    color: var(--vs-primary-dark);
    border-color: #cbd5e1;
    background: #ffffff;
}

.filter-tab.active {
    background: var(--vs-primary-dark);
    color: #ffffff;
    border-color: var(--vs-primary-dark);
    box-shadow: 0 4px 12px rgba(7, 12, 30, 0.15);
}

/* Carousel Scroller Container */
.carousel-wrapper {
    position: relative;
    padding: 0 10px;
}

.carousel-scroller {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 16px 8px 32px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.carousel-scroller::-webkit-scrollbar {
    display: none;
}

/* Carousel Slide Card */
.carousel-slide-item {
    flex: 0 0 calc(33.333% - 19px);
    min-width: 320px;
    max-width: 420px;
    scroll-snap-align: start;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.carousel-slide-item.hidden-by-filter {
    display: none;
}

.service-slide-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid #e5eaf2;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(7, 12, 30, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.service-slide-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 98, 255, 0.3);
    box-shadow: 0 20px 45px rgba(0, 98, 255, 0.12);
}

.slide-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #0b1430;
}

.slide-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-slide-card:hover .slide-image-wrapper img {
    transform: scale(1.06);
}

.slide-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(7, 12, 30, 0.82);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.03em;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.slide-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.slide-content h3 {
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.slide-content p {
    font-size: 0.94rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--vs-text-muted);
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--vs-text-main);
}

.service-features-list li i {
    color: #0062ff;
    font-size: 1rem;
}

.slide-card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slide-action-link {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--vs-primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.slide-action-link:hover {
    color: #004ecc;
    gap: 10px;
}

/* Carousel Slider Container & Side-Floating Navigation Arrows */
.carousel-slider-container {
    position: relative;
    width: 100%;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: var(--vs-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(7, 12, 30, 0.12), 0 2px 6px rgba(7, 12, 30, 0.05);
    z-index: 25;
    outline: none;
    -webkit-user-select: none;
    user-select: none;
}

.carousel-nav-btn.carousel-nav-prev {
    left: -26px;
}

.carousel-nav-btn.carousel-nav-next {
    right: -26px;
}

.carousel-nav-btn:hover {
    background: linear-gradient(135deg, var(--vs-primary-blue) 0%, #00d2ff 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.38);
}

.carousel-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.35);
}

/* Centered Pagination Dots */
.carousel-dots-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 6px 0;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-dot.active {
    width: 28px;
    border-radius: 12px;
    background: var(--vs-primary-blue);
}

.carousel-dot:hover:not(.active) {
    background: #94a3b8;
}

/* Responsive side arrow positions across breakpoints */
@media (min-width: 1400px) {
    .carousel-nav-btn.carousel-nav-prev {
        left: -32px;
    }
    .carousel-nav-btn.carousel-nav-next {
        right: -32px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .carousel-nav-btn.carousel-nav-prev {
        left: -18px;
    }
    .carousel-nav-btn.carousel-nav-next {
        right: -18px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .carousel-nav-btn {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }
    .carousel-nav-btn.carousel-nav-prev {
        left: -10px;
    }
    .carousel-nav-btn.carousel-nav-next {
        right: -10px;
    }
}

@media (max-width: 767px) {
    .carousel-nav-btn {
        top: 126px; /* Centered over the card's top hero image so text is never obstructed */
        width: 42px;
        height: 42px;
        font-size: 1.15rem;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 4px 16px rgba(7, 12, 30, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.8);
    }
    .carousel-nav-btn.carousel-nav-prev {
        left: 4px;
    }
    .carousel-nav-btn.carousel-nav-next {
        right: 4px;
    }
    .carousel-nav-btn:hover {
        transform: translateY(-50%) scale(1.06);
    }
}

/* ==========================================================================
   Two Pillars Architecture Section
   ========================================================================== */
.pillars-section {
    background-color: var(--vs-bg-light);
    position: relative;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

.pillar-card-advanced {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 44px;
    height: 100%;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(7, 12, 30, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card-advanced:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(7, 12, 30, 0.08);
}

.pillar-card-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.pillar-card-advanced.blue-pillar::before {
    background: var(--vs-gradient-primary);
}

.pillar-card-advanced.purple-pillar::before {
    background: var(--vs-gradient-purple);
}

.pillar-icon-badge {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.blue-pillar .pillar-icon-badge {
    background: rgba(0, 98, 255, 0.1);
    color: var(--vs-primary-blue);
}

.purple-pillar .pillar-icon-badge {
    background: rgba(123, 44, 191, 0.1);
    color: var(--vs-purple);
}

.pillar-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    display: block;
}

.pillar-items-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.pillar-item-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    background: #f8fafc;
    border-radius: var(--radius-md);
    border: 1px solid #f1f5f9;
    transition: background 0.2s ease;
}

.pillar-item-row:hover {
    background: #f1f5f9;
}

.pillar-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.blue-pillar .pillar-item-icon { color: var(--vs-primary-blue); }
.purple-pillar .pillar-item-icon { color: var(--vs-purple); }

.pillar-item-details h5 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.pillar-item-details p {
    font-size: 0.85rem;
    color: var(--vs-text-muted);
    margin: 0;
}

/* ==========================================================================
   Portfolio & Client Success Section
   ========================================================================== */
.portfolio-section {
    background: #ffffff;
}

.portfolio-card-premium {
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 6px 20px rgba(7, 12, 30, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.portfolio-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(7, 12, 30, 0.08);
    border-color: rgba(0, 98, 255, 0.2);
}

.portfolio-top-banner {
    padding: 24px;
    background: linear-gradient(135deg, #09122a 0%, #12204c 100%);
    color: #ffffff;
    position: relative;
}

.client-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.client-brand-row h4 {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0;
}

.portfolio-badge {
    font-size: 0.74rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.15);
    color: #00d2ff;
    border: 1px solid rgba(0, 210, 255, 0.3);
}

.client-location {
    font-size: 0.8rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.portfolio-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-body p.summary {
    font-size: 0.92rem;
    color: var(--vs-text-muted);
    margin-bottom: 20px;
}

.impact-metric-pill {
    background: rgba(0, 98, 255, 0.06);
    border: 1px solid rgba(0, 98, 255, 0.18);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.impact-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vs-primary-blue);
    line-height: 1;
}

.impact-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--vs-text-main);
    line-height: 1.3;
}

.portfolio-footer-tags {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tech-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--vs-text-muted);
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
}

/* ==========================================================================
   About & Proprietary Advantage Section
   ========================================================================== */
.about-section {
    background-color: var(--vs-bg-light);
}

.differentiator-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.diff-icon-box {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--vs-gradient-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(0, 98, 255, 0.2);
}

.diff-icon-box.purple {
    background: var(--vs-gradient-purple);
    box-shadow: 0 8px 18px rgba(123, 44, 191, 0.2);
}

.diff-icon-box.cyan {
    background: linear-gradient(135deg, #00d2ff 0%, #0072ff 100%);
    box-shadow: 0 8px 18px rgba(0, 210, 255, 0.2);
}

.diff-icon-box.dark {
    background: var(--vs-gradient-dark);
    box-shadow: 0 8px 18px rgba(7, 12, 30, 0.2);
}

.diff-text h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.diff-text p {
    font-size: 0.92rem;
    margin: 0;
    color: var(--vs-text-muted);
}

/* Agency vs ViralSky Comparison Box */
.ecosystem-cta-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 44px 36px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--vs-shadow-lg);
    text-align: center;
}

.stat-divider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.stat-item-mini h4 {
    font-size: 1.3rem;
    font-weight: 650;
    margin-bottom: 2px;
}

.stat-item-mini span {
    font-size: 0.76rem;
    color: var(--vs-text-muted);
    font-weight: 600;
}

/* ==========================================================================
   Consultation & Contact Section
   ========================================================================== */
.contact-section {
    background: radial-gradient(circle at top left, #0e1a3d 0%, #070c1e 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.contact-section h2,
.contact-section h4 {
    color: #ffffff;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vs-cyan);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-text h6 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.contact-info-text p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.contact-info-text a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-text a:hover {
    color: var(--vs-cyan);
}

/* Contact Lead Form Card */
.lead-form-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    color: var(--vs-text-main);
    position: relative;
    z-index: 1;
}

.lead-form-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--vs-text-title);
    margin-bottom: 6px;
}

.form-control, .form-select {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    padding: 13px 18px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--vs-text-title);
    transition: all 0.25s ease;
}

.form-control:focus, .form-select:focus {
    background: #ffffff;
    border-color: var(--vs-primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 98, 255, 0.12);
    outline: none;
}

.form-feedback-msg {
    display: none;
    padding: 16px;
    border-radius: var(--radius-md);
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 20px;
}

/* ==========================================================================
   WhatsApp Floating Action Button
   ========================================================================== */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 62px;
    height: 62px;
    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1040;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.whatsapp-fab:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 74px;
    background: #ffffff;
    color: var(--vs-primary-dark);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.whatsapp-fab:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ==========================================================================
   Mobile Bottom Navigation Bar & App Dock (Hardware-Accelerated Native App)
   ========================================================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-height: calc(64px + env(safe-area-inset-bottom, 0px)) !important;
    height: calc(64px + env(safe-area-inset-bottom, 0px)) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.08) !important;
    z-index: 1040 !important;
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
    border-top: 1px solid rgba(226, 232, 240, 0.9) !important;
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
    will-change: transform !important;
}

@media (max-width: 991.98px) {
    .mobile-bottom-nav {
        display: flex !important;
    }
    body {
        padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)) !important;
    }
    .whatsapp-fab {
        bottom: calc(70px + env(safe-area-inset-bottom, 0px)) !important;
        right: 16px !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 25px !important;
        z-index: 1035 !important;
    }
    .whatsapp-tooltip {
        display: none !important;
    }
    footer {
        padding-bottom: calc(105px + env(safe-area-inset-bottom, 0px)) !important;
    }
}

.mobile-dock-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
    width: 100% !important;
    height: 64px !important;
    max-width: 500px !important;
    margin: 0 auto !important;
    padding: 0 6px !important;
    position: relative !important;
}

.mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 2px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    background: transparent;
    border: none;
}

.mobile-nav-icon-wrap {
    font-size: 1.3rem;
    line-height: 1;
    margin-bottom: 2px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-nav-item.active {
    color: #0062ff !important;
}

.mobile-nav-item.active .mobile-nav-icon-wrap {
    transform: translateY(-2px);
    color: #0062ff;
}

.mobile-nav-item:active {
    transform: scale(0.92);
}

/* Centrepiece Services App Button (Elevated Center Icon) */
.mobile-nav-center-item {
    position: relative !important;
    top: -12px !important;
}

.mobile-nav-center-item .center-icon-bubble {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #0062ff 0%, #00d2ff 100%) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.35rem !important;
    box-shadow: 0 6px 20px rgba(0, 98, 255, 0.45), 0 2px 6px rgba(0, 210, 255, 0.3) !important;
    border: 3.5px solid #ffffff !important;
    margin-bottom: 2px !important;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.25s ease;
}

.mobile-nav-center-item .center-label {
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    color: #0062ff !important;
    margin-top: 1px !important;
    display: block !important;
    line-height: 1.1 !important;
}

.mobile-nav-center-item.active .center-icon-bubble,
.mobile-nav-center-item:active .center-icon-bubble {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 98, 255, 0.6);
    background: linear-gradient(135deg, #00d2ff 0%, #0062ff 100%);
}

/* ==========================================================================
   Mobile Navigation Drawer (100% Full Screen Overlay)
   ========================================================================== */
.mobile-nav-drawer.offcanvas,
.mobile-nav-drawer.offcanvas-end {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #060c1d !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    z-index: 1080 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

.mobile-nav-drawer .offcanvas-header {
    min-height: 72px;
    padding: 16px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: #060c1d !important;
}

.mobile-nav-drawer .offcanvas-body {
    padding: 20px 20px 30px !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-page-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-page-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 18px;
    color: #e2e8f0 !important;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-page-link:hover,
.mobile-page-link.active {
    background: rgba(0, 242, 254, 0.12) !important;
    border-color: rgba(0, 242, 254, 0.35) !important;
    color: #00f2fe !important;
    transform: translateX(4px);
}

.mobile-page-link .arrow-icon {
    font-size: 0.85rem;
    color: #64748b;
    transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-page-link:hover .arrow-icon,
.mobile-page-link.active .arrow-icon {
    color: #00f2fe;
    transform: translateX(2px);
}

/* Prominent Calling Button in Mobile Drawer */
.btn-mobile-call {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
    color: #ffffff !important;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35);
    transition: all 0.25s ease;
}

.btn-mobile-call:hover,
.btn-mobile-call:active {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

.btn-mobile-whatsapp {
    background: rgba(37, 211, 102, 0.12) !important;
    border: 1px solid rgba(37, 211, 102, 0.35) !important;
    color: #25d366 !important;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.2s ease;
}

.btn-mobile-whatsapp:hover {
    background: rgba(37, 211, 102, 0.22) !important;
    color: #ffffff !important;
}

/* "More" App Bottom Sheet Drawer (Native App Style) */
.mobile-more-sheet.offcanvas-bottom {
    height: 75vh !important;
    max-height: 88vh !important;
    --bs-offcanvas-height: 75vh !important;
    background: rgba(6, 12, 28, 0.98) !important;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(0, 210, 255, 0.25) !important;
    border-top-left-radius: 28px !important;
    border-top-right-radius: 28px !important;
    box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.8), 0 -2px 10px rgba(0, 210, 255, 0.1);
    z-index: 1050;
}

.mobile-more-sheet .offcanvas-body {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: 25px;
}

.sheet-handle-bar {
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 4px;
}

.sheet-drag-pill {
    width: 44px;
    height: 5px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.35);
    transition: all 0.2s ease;
}

.sheet-handle-bar:active .sheet-drag-pill,
.sheet-handle-bar:hover .sheet-drag-pill {
    background: rgba(0, 210, 255, 0.8);
    width: 52px;
}

.sheet-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.sheet-close-btn:active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.92);
    color: #ffffff;
}

.btn-sheet-dismiss {
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
}

.btn-sheet-dismiss:active {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    transform: scale(0.98);
}

.quick-comms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.quick-comm-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 12px 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-comm-card:active,
.quick-comm-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 210, 255, 0.4);
    transform: translateY(-2px);
}

.comm-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.comm-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.comm-sub {
    font-size: 0.68rem;
    color: #94a3b8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.mobile-more-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.mobile-more-item:active,
.mobile-more-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 210, 255, 0.35);
    transform: translateX(3px);
}

.more-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: #040816;
    color: #94a3b8;
    padding: 80px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer h5 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 20px;
}

footer a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #00d2ff;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.social-circle-link,
.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0 !important;
    font-size: 1rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
    margin-bottom: 0 !important;
}

.social-circle-link:hover,
.footer-social-link:hover {
    background: #0088ff;
    color: #ffffff !important;
    border-color: #00d2ff;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 140, 255, 0.35);
}

.footer-bottom-bar {
    padding-top: 1.5rem;
}

.footer-attribution-line {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .footer-attribution-line {
        white-space: nowrap;
    }
}

.footer-dev-link {
    color: #00d2ff !important;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline !important;
    margin-bottom: 0 !important;
    text-decoration: none;
}

.footer-dev-link:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.6);
}

.footer-policy-links a {
    font-size: 0.84rem;
    color: #94a3b8;
    display: inline-block;
    margin-bottom: 0;
    transition: color 0.2s ease;
}

.footer-policy-links a:hover {
    color: #00d2ff;
}

/* ==========================================================================
   Animation Reveal Classes
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible,
.hero-dark-ecosystem .fade-up {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1199px) {
    .carousel-slide-item {
        flex: 0 0 calc(50% - 15px);
        min-width: 300px;
    }
}

@media (max-width: 991px) {
    .hero-right-content,
    .hero-ecosystem-container {
        display: none !important;
    }

    .hero {
        padding: 76px 0 35px;
    }
    
    .hero-dark-ecosystem {
        padding-top: 76px !important;
        padding-bottom: 24px !important;
    }

    .min-vh-hero {
        min-height: auto !important;
        padding: 0 !important;
    }
    
    .hero-left-content {
        max-width: 680px;
        margin: 0 auto;
    }

    .hero-eyebrow {
        margin-top: 0 !important;
    }
    
    .hero-stats-grid {
        justify-content: space-between;
    }
    
    .navbar-collapse {
        display: none !important;
    }
    .hero h1 {
        font-size: 3rem;
    }
    
    .carousel-slide-item {
        flex: 0 0 calc(60% - 15px);
    }
    
    .pillar-card-advanced {
        padding: 32px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 55px 0;
    }
    
    .hero {
        padding: 72px 0 25px;
        text-align: left;
    }
    
    .hero-dark-ecosystem {
        padding-top: 76px !important;
        padding-bottom: 34px !important;
    }

    .min-vh-hero {
        min-height: auto !important;
        padding: 0 !important;
    }

    .hero-headline {
        font-size: 1.85rem !important;
        line-height: 1.28 !important;
        letter-spacing: -0.02em !important;
        word-break: break-word !important;
        margin-bottom: 14px !important;
    }

    .hero-eyebrow {
        font-size: 0.68rem !important;
        letter-spacing: 0.08em !important;
        color: #b87cf8 !important;
        margin-top: 0 !important;
        margin-bottom: 10px !important;
    }

    .hero-lead {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
        color: #94a3b8 !important;
    }

    .hero-cta-group {
        gap: 12px !important;
        margin-top: 0 !important;
        margin-bottom: 22px !important;
    }

    .hero-cta-group .btn {
        min-height: 48px;
        font-size: 0.95rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
        border-radius: 50px;
    }

    .hero-stats-row {
        margin-top: 20px !important;
        padding-top: 18px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .hero-stats-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        margin-top: 0 !important;
    }
    
    .stat-divider {
        display: none !important;
    }

    .hero-stat-item {
        gap: 10px !important;
        background: rgba(255, 255, 255, 0.035) !important;
        border: 1px solid rgba(255, 255, 255, 0.07) !important;
        border-radius: 12px !important;
        padding: 10px 12px !important;
        align-items: center !important;
    }

    .stat-icon-cyan {
        font-size: 1.35rem !important;
        flex-shrink: 0 !important;
    }

    .stat-number {
        font-size: 1.22rem !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
    }

    .stat-label {
        font-size: 0.72rem !important;
        font-weight: 500 !important;
        color: #94a3b8 !important;
        line-height: 1.25 !important;
        white-space: normal !important;
    }

    /* Connected Cloud Ecosystem on Mobile */
    .hero-ecosystem-container {
        height: auto !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        margin: 28px auto 0 !important;
        left: auto !important;
        padding: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 480px !important;
    }

    /* Hide desktop filaments on mobile */
    .ecosystem-filaments-svg,
    .ecosystem-orbital-ring {
        display: none !important;
    }

    /* Central cloud core flows naturally on mobile */
    .cloud-core-anchor {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin-bottom: 8px !important;
    }

    .cloud-core-anchor:hover {
        transform: scale(1.02);
    }

    .cloud-core-card {
        padding: 10px 16px !important;
        border-radius: 18px !important;
    }

    .cloud-core-emblem {
        width: 110px !important;
    }

    /* Sleek Horizontal App-Card Rows for the 5 Service Nodes (ZERO OVERLAP!) */
    .ecosystem-nodes-wrapper {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        pointer-events: auto !important;
        padding: 0 !important;
    }

    .ecosystem-node {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100% !important;
        margin: 0 !important;
        background: rgba(6, 18, 48, 0.82) !important;
        border: 1px solid rgba(0, 210, 255, 0.25) !important;
        border-radius: 16px !important;
        padding: 12px 14px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        gap: 14px !important;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4) !important;
        transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease !important;
        -webkit-tap-highlight-color: transparent !important;
        user-select: none !important;
        cursor: pointer !important;
    }

    .ecosystem-node:active {
        transform: scale(0.98) !important;
        background: rgba(8, 24, 64, 0.95) !important;
        border-color: rgba(0, 210, 255, 0.6) !important;
    }

    .ecosystem-node .node-icon-circle {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        border-radius: 50% !important;
        font-size: 1.2rem !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        border: 2px solid #00d2ff !important;
        box-shadow: 0 0 14px rgba(0, 210, 255, 0.5) !important;
        background: radial-gradient(circle at 35% 35%, #0c2b64 0%, #030a1c 100%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .ecosystem-node .node-capsule-card {
        background: transparent !important;
        border: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: left !important;
        flex-grow: 1 !important;
        min-width: 0 !important;
        max-width: none !important;
        width: auto !important;
    }

    .ecosystem-node .node-title {
        font-size: 0.88rem !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        margin: 0 0 2px 0 !important;
        letter-spacing: 0.02em !important;
        line-height: 1.2 !important;
    }

    .ecosystem-node .node-desc {
        font-size: 0.76rem !important;
        color: #94a3b8 !important;
        margin: 0 !important;
        line-height: 1.35 !important;
        white-space: normal !important;
    }

    .mobile-node-arrow {
        font-size: 0.92rem;
        color: rgba(0, 210, 255, 0.7) !important;
        flex-shrink: 0;
        transition: transform 0.2s ease;
    }

    .ecosystem-node:active .mobile-node-arrow {
        transform: translateX(3px);
        color: #00d2ff !important;
    }

    /* Services Carousel on Mobile */
    .carousel-slide-item {
        flex: 0 0 90% !important;
        min-width: 260px !important;
    }
    
    .floating-chip {
        display: none !important;
    }
    
    .metric-box {
        margin-bottom: 16px !important;
    }
    
    .lead-form-card {
        padding: 24px 16px !important;
    }

    /* Swipeable Service Filter Tabs with hidden scrollbars (Fixed left-alignment to prevent scroll clipping) */
    .carousel-filter-tabs {
        display: flex !important;
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 4px 14px 12px !important;
        margin-left: -12px !important;
        margin-right: -12px !important;
        margin-bottom: 24px !important;
        gap: 8px !important;
        scrollbar-width: none !important;
    }
    .carousel-filter-tabs::-webkit-scrollbar {
        display: none !important;
    }
    .carousel-filter-tabs .filter-tab {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        font-size: 0.82rem !important;
        padding: 8px 16px !important;
        border-radius: 50px !important;
    }

    /* Form inputs iOS Safari auto-zoom prevention */
    input.form-control,
    textarea.form-control,
    select.form-select {
        font-size: 16px !important;
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 1.75rem !important;
        line-height: 1.25 !important;
    }
    
    .hero-cta-group {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .hero-cta-group .btn {
        width: 100% !important;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: #f8fafc;
}
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05) !important;
}
.icon-circle-lg {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.max-w-700 {
    max-width: 700px;
}


/* Header Stability Fix (prevents browser GPU tile shearing on hover) */
.navbar .navbar-brand:hover img {
    transform: none !important;
    opacity: 0.92;
}
.navbar .btn-nav-cta:hover {
    transform: none !important;
    box-shadow: 0 0 25px rgba(0, 140, 255, 0.8) !important;
}

/* Client Logo Hover Transition (From Portfolio) */
.hover-lift:hover .client-logo-hover {
    opacity: 1 !important;
    transform: scale(1.05);
}

/* ==========================================================================
   Centered Thank-You Confirmation Modal Styles
   ========================================================================== */
.thank-you-card {
    background: #ffffff;
    box-shadow: 0 25px 60px -10px rgba(7, 12, 30, 0.25), 0 10px 25px -5px rgba(7, 12, 30, 0.1) !important;
    border-radius: 28px !important;
}

.thank-you-top-stripe {
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, #0066ff 0%, #00d2ff 50%, #8b5cf6 100%);
}

.thank-you-close-btn {
    z-index: 10;
    opacity: 0.6;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.thank-you-close-btn:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.thank-you-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-icon-circle {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.38);
    position: relative;
    z-index: 2;
    animation: scaleInCheck 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.thank-you-icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.22);
    z-index: 1;
    animation: pulseRipple 2.2s infinite cubic-bezier(0.25, 0, 0, 1);
}

@keyframes scaleInCheck {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    70% {
        transform: scale(1.16) rotate(6deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes pulseRipple {
    0% {
        transform: scale(0.95);
        opacity: 0.85;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.thank-you-lead-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.thank-you-status-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    position: relative;
}

.status-live-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: statusPulse 1.8s infinite;
}

@keyframes statusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.btn-whatsapp-connect {
    background: #25D366;
    color: #ffffff;
    border: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-whatsapp-connect:hover {
    background: #1ebc59;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.38) !important;
}

.btn-whatsapp-connect:active {
    transform: translateY(0);
}

