 /* --- Reset & Core Variables --- */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-site: #ffffff;
            --bg-header: #ffffff;
            --text-main: #0f172a;       /* Deep Slate Charcoal */
            --text-muted: #475569;      /* Slate Gray */
            --border-color: #e2e8f0;    /* Crisp Border */
            
            /* High-Trust Solid Agency Accent (NO GRADIENTS) */
            --agency-blue: #0052ff;     /* Royal Cobalt Blue */
            --agency-blue-hover: #0043d1;
            
            --transition-fast: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-smooth: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--bg-site);
            color: var(--text-main);
            -webkit-font-smoothing: antialiased;
            padding-top: 80px;
        }

        ul { list-style: none; }
        a { text-decoration: none; color: inherit; }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* --- Header Shell --- */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--bg-header);
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        /* --- Authentic Logo Branding --- */
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background-color: #dddddd78;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            transition: var(--transition-fast);
            flex-shrink: 0;

        }

        .brand-logo:hover .logo-icon {
            transform: scale(1.04);
            background-color: var(--agency-blue-hover);
        }

        .logo-text-group {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 21px;
            font-weight: 800;
            letter-spacing: -0.04em;
            color: var(--text-main);
            line-height: 1;
        }

        .brand-tagline {
            font-size: 9px;
            font-weight: 700;
            color: var(--text-muted);
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-top: 4px;
        }

        /* --- Navigation Menu --- */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 36px;
        }

        .nav-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 8px 0;
            transition: var(--transition-fast);
            position: relative;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--agency-blue);
        }

        /* Active Link Solid Indicator */
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--agency-blue);
            border-radius: 2px;
        }

        .chevron-icon {
            transition: transform 0.2s ease;
            stroke-width: 2.2;
            opacity: 0.6;
        }

        .nav-link:hover .chevron-icon {
            opacity: 1;
            color: var(--agency-blue);
        }

        /* --- Clean Dropdown --- */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 230px;
            background-color: #ffffff;
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
            border-radius: 8px;
            padding: 6px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(6px);
            transition: var(--transition-smooth);
            border: 1px solid var(--border-color);
        }

        .dropdown-item {
            display: block;
            padding: 9.5px 12px;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text-muted);
            border-radius: 6px;
            transition: var(--transition-fast);
        }

        .dropdown-item:hover {
            color: var(--agency-blue);
            background-color: #eff6ff;
        }

        /* Desktop Dropdown Hover Trigger */
        @media (min-width: 993px) {
            .dropdown:hover .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .dropdown:hover .chevron-icon {
                transform: rotate(180deg);
                opacity: 1;
            }
        }

        /* --- High-Converting Solid CTA Button --- */
        .btn-talk {
            padding: 10px 22px;
            font-size: 13.5px;
            font-weight: 700;
            color: #ffffff;
            background-color: var(--agency-blue);
            border-radius: 6px;
            border: 1px solid var(--agency-blue);
            cursor: pointer;
            transition: var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-talk .arrow-icon {
            transition: transform 0.2s ease;
        }

        .btn-talk:hover {
            background-color: var(--agency-blue-hover);
            border-color: var(--agency-blue-hover);
        }

        .btn-talk:hover .arrow-icon {
            transform: translateX(3px);
        }

        /* --- Mobile Hamburger Button --- */
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }

        .bar {
            display: block;
            width: 22px;
            height: 2px;
            margin: 4px 0;
            background-color: var(--text-main);
            transition: var(--transition-fast);
        }

        /* --- Mobile Responsive --- */
        @media (max-width: 992px) {
            .hamburger { display: block; }

            .hamburger.active .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
            .hamburger.active .bar:nth-child(2) { opacity: 0; }
            .hamburger.active .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: #ffffff;
                flex-direction: column;
                align-items: flex-start;
                padding: 24px;
                gap: 0;
                overflow-y: auto;
                transition: left 0.25s ease-out;
            }

            .nav-menu.active { left: 0; }

            .nav-item {
                width: 100%;
                border-bottom: 1px solid var(--border-color);
            }

            .nav-link {
                padding: 16px 0;
                width: 100%;
                justify-content: space-between;
                font-size: 15px;
                color: var(--text-main);
            }

            .nav-link.active::after { display: none; }

            .dropdown-menu {
                position: static;
                width: 100%;
                box-shadow: none;
                border: none;
                padding: 0 0 10px 10px;
                max-height: 0;
                overflow: hidden;
                opacity: 1;
                visibility: visible;
                transform: none;
                transition: max-height 0.25s ease-out;
                background-color: transparent;
            }

            .dropdown.active .dropdown-menu { max-height: 250px; }
            .dropdown.active .chevron-icon { transform: rotate(180deg); }

            .nav-btn-item {
                border-bottom: none;
                margin-top: 24px;
                width: 100%;
            }

            .btn-talk {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
            }
        }
          /* Section & Layout */
    .hero-section {
        padding: 50px 0 60px 0;
        background-color: #ffffff;
        overflow: hidden;
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 40px;
        align-items: center;
    }

    /* Left Content Column */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 14px;
        background-color: #f1f5f9;
        border: 1px solid #e2e8f0;
        color: #0f172a;
        font-size: 12.5px;
        font-weight: 600;
        border-radius: 30px;
        margin-bottom: 20px;
    }

    .badge-dot {
        width: 7px;
        height: 7px;
        background-color: #0052ff;
        border-radius: 50%;
    }

    /* Main Title & Typewriter Box */
    .hero-title {
        font-size: 45px;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: -0.025em;
        color: #0f172a;
        margin-bottom: 18px;
    }

    .typewriter-wrap {
        color: #0052ff;
        display: inline-block;
        background-color: #eff6ff;
        padding: 0 8px;
        border-radius: 6px;
    }

    .typewriter-text {
        border-bottom: 2.5px solid #0052ff;
    }

    .cursor {
        font-weight: 400;
        color: #0052ff;
        animation: blink 0.8s infinite;
    }

    @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0; }
    }

    .hero-description {
        font-size: 16px;
        font-weight: 400;
        color: #475569;
        line-height: 1.6;
        margin-bottom: 24px;
        max-width: 550px;
    }

    /* Primary CTA Buttons */
    .hero-cta-group {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 16px;
        flex-wrap: wrap;
    }

    .btn-hero-primary {
        padding: 13px 26px;
        font-size: 14.5px;
        font-weight: 600;
        color: #ffffff;
        background-color: #0052ff;
        border-radius: 6px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.2s ease;
    }

    .btn-hero-primary:hover {
        background-color: #0043d1;
    }

    .btn-hero-primary .btn-arrow {
        transition: transform 0.2s ease;
    }

    .btn-hero-primary:hover .btn-arrow {
        transform: translateX(4px);
    }

    .btn-hero-secondary {
        padding: 13px 24px;
        font-size: 14.5px;
        font-weight: 600;
        color: #0f172a;
        background-color: #ffffff;
        border: 1px solid #cbd5e1;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .btn-hero-secondary:hover {
        background-color: #f8fafc;
        border-color: #0f172a;
    }

    /* Risk-Free Guarantee Bar */
    .guarantee-bar {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 28px;
        flex-wrap: wrap;
    }

    .guarantee-item {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 12px;
        font-weight: 600;
        color: #475569;
    }

    /* CLIENT RATING & OFFICIAL ACCREDITATIONS CARD */
    .hero-trust-card {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 16px 18px;
        background-color: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        width: 100%;
        max-width: 540px;
    }

    .trust-rating-row {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .avatar-group {
        display: flex;
        align-items: center;
    }

    .avatar-img {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 2px solid #ffffff;
        object-fit: cover;
        margin-left: -10px;
    }

    .avatar-img:first-child {
        margin-left: 0;
    }

    .rating-details {
        display: flex;
        flex-direction: column;
    }

    .stars-line {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .stars {
        color: #f59e0b;
        font-size: 14px;
        letter-spacing: 2px;
    }

    .score-badge {
        font-size: 12px;
        font-weight: 800;
        color: #0f172a;
        background-color: #ffffff;
        padding: 1px 6px;
        border-radius: 4px;
        border: 1px solid #e2e8f0;
    }

    .rating-subtext {
        font-size: 12px;
        color: #64748b;
        margin-top: 2px;
    }

    .rating-subtext strong {
        color: #0f172a;
    }

    .agency-badges-row {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-top: 10px;
        border-top: 1px solid #e2e8f0;
        flex-wrap: wrap;
    }

    .proof-tag {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 11.5px;
        font-weight: 700;
        color: #334155;
        background-color: #ffffff;
        padding: 4px 10px;
        border-radius: 6px;
        border: 1px solid #e2e8f0;
    }

    /* RIGHT VISUAL: CONNECTED ORBIT FLOATING HUB */
    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
    }

    .orbit-hub {
        position: relative;
        width: 100%;
        max-width: 460px;
        height: 420px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .hub-connectors-svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
    }

    .ring {
        position: absolute;
        border-radius: 50%;
        border: 1px dashed #e2e8f0;
        pointer-events: none;
    }

    .ring-outer { width: 380px; height: 380px; }
    .ring-inner { width: 230px; height: 230px; }

    .hub-center {
        width: 100px;
        height: 100px;
        background-color: #0f172a;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
        z-index: 2;
    }

    .center-title { font-size: 15px; font-weight: 800; letter-spacing: -0.02em; }
    .center-sub { font-size: 8px; font-weight: 700; letter-spacing: 1.5px; color: #94a3b8; margin-top: 2px; }

    /* Floating Cards */
    .floating-hub-card {
        position: absolute;
        background-color: #ffffff;
        border: 1px solid #e2e8f0;
        padding: 9px 13px;
        border-radius: 12px;
        box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 3;
        transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .floating-hub-card:hover {
        border-color: #0052ff;
    }

    .hub-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 12px;
        color: #ffffff;
        flex-shrink: 0;
    }

    .meta-bg { background-color: #1876f269; }
    .google-bg { background-color: #e1c7af79; }
    .seo-bg { background-color: #f59f0b79; }
    .dev-bg { background-color: #0f172a72; font-size: 10px; }
    .ai-bg { background-color: #8a5cf666; }
    .saas-bg { background-color: #0051ff55; }

    .hub-info { display: flex; flex-direction: column; }
    .hub-title { font-size: 12px; font-weight: 700; color: #0f172a; line-height: 1.2; }
    .hub-value { font-size: 10.5px; font-weight: 600; color: #64748b; margin-top: 1px; }

    /* Desktop Positions */
    .hub-meta { top: 15px; left: 15px; }
    .hub-google { top: 15px; right: 15px; }
    .hub-seo { top: 175px; left: -10px; }
    .hub-webdev { top: 175px; right: -10px; }
    .hub-ai { bottom: 15px; left: 25px; }
    .hub-saas { bottom: 15px; right: 25px; }

    /* Float CSS Animations */
    .float-1 { animation: float1 3.8s ease-in-out infinite; }
    .float-2 { animation: float2 4.6s ease-in-out infinite; }
    .float-3 { animation: float3 4.2s ease-in-out infinite; }

    @keyframes float1 {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-7px); }
    }

    @keyframes float2 {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(7px); }
    }

    @keyframes float3 {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-5px); }
    }

    /* Mobile Responsive Adjustments */
    @media (max-width: 992px) {
        .hero-section { padding: 30px 0 40px 0; }
        .hero-container { grid-template-columns: 1fr; gap: 36px; text-align: center; }
        .hero-content { align-items: center; }
        .hero-title { font-size: 32px; }
        .hero-description { font-size: 14.5px; }
        .hero-cta-group { justify-content: center; width: 100%; }
        .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
        .guarantee-bar { justify-content: center; }
        .trust-rating-row { justify-content: center; text-align: center; }
        .agency-badges-row { justify-content: center; }

        /* Scaled Mobile Hub (Floating Active) */
        .orbit-hub { max-width: 340px; height: 330px; }
        .ring-outer { width: 300px; height: 300px; }
        .ring-inner { width: 180px; height: 180px; }
        .hub-center { width: 80px; height: 80px; }
        .center-title { font-size: 13px; }
        .center-sub { font-size: 7px; }
        .hub-connectors-svg { display: none; } /* Hidden on small mobile to keep clean */

        .floating-hub-card { padding: 7px 10px; border-radius: 10px; gap: 8px; }
        .hub-icon { width: 24px; height: 24px; font-size: 10px; }
        .hub-title { font-size: 10.5px; }
        .hub-value { font-size: 9.5px; }

        .hub-meta { top: 5px; left: 0px; }
        .hub-google { top: 5px; right: 0px; }
        .hub-seo { top: 135px; left: -15px; }
        .hub-webdev { top: 135px; right: -15px; }
        .hub-ai { bottom: 5px; left: 5px; }
        .hub-saas { bottom: 5px; right: 5px; }
    }

    @media (max-width: 380px) {
        .orbit-hub { max-width: 300px; height: 300px; }
        .hub-seo { left: -5px; }
        .hub-webdev { right: -5px; }
    }
     /* Section Container - Obsidian Dark Contrast */
    .dark-marquee-section {
        background-color: #0b0f19; /* Ultra-Sleek Dark Slate */
        padding: 36px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        overflow: hidden;
    }

    .dark-marquee-wrapper {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 100%;
        mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }

    .marquee-row {
        display: flex;
        overflow: hidden;
        width: 100%;
    }

    .row-track {
        display: flex;
        align-items: center;
        gap: 16px;
        white-space: nowrap;
        will-change: transform;
    }

    /* Motion Animations */
    .track-left {
        animation: scrollLeftDark 55s linear infinite;
    }

    .track-right {
        animation: scrollRightDark 55s linear infinite;
    }

    .dark-marquee-wrapper:hover .row-track {
        animation-play-state: paused; /* Pause animation on hover */
    }

    @keyframes scrollLeftDark {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    @keyframes scrollRightDark {
        0% { transform: translateX(-50%); }
        100% { transform: translateX(0); }
    }

    /* Dark Glass Pill Card Styling */
    .dark-pill-card {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 9px 18px;
        border-radius: 30px;
        transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
        cursor: pointer;
    }

    .dark-pill-card:hover {
        background-color: rgba(255, 255, 255, 0.08);
        border-color: #38bdf8;
        transform: translateY(-2px);
    }

    .pill-icon {
        font-size: 13px;
        font-weight: 800;
    }

    .blue-icon { color: #38bdf8; }
    .meta-icon { color: #1877f2; }
    .google-icon { color: #ea4335; }
    .dev-icon { color: #38bdf8; font-size: 11px; }
    .ai-icon { color: #c084fc; }
    .saas-icon { color: #38bdf8; }

    .pill-text {
        font-size: 13.5px;
        font-weight: 600;
        color: #f1f5f9;
        letter-spacing: -0.01em;
    }

    /* Metric Badges in Row 2 */
    .result-badge {
        font-size: 11.5px;
        font-weight: 800;
        padding: 2px 8px;
        border-radius: 20px;
    }

    .badge-green {
        color: #34d399;
        background-color: rgba(52, 211, 153, 0.12);
        border: 1px solid rgba(52, 211, 153, 0.3);
    }

    .badge-blue {
        color: #38bdf8;
        background-color: rgba(56, 189, 248, 0.12);
        border: 1px solid rgba(56, 189, 248, 0.3);
    }

    .badge-purple {
        color: #c084fc;
        background-color: rgba(192, 132, 252, 0.12);
        border: 1px solid rgba(192, 132, 252, 0.3);
    }

    .badge-yellow {
        color: #fbbf24;
        background-color: rgba(251, 191, 36, 0.12);
        border: 1px solid rgba(251, 191, 36, 0.3);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .dark-marquee-section { padding: 26px 0; }
        .dark-marquee-wrapper { gap: 10px; }
        .dark-pill-card { padding: 7px 14px; gap: 8px; }
        .pill-text { font-size: 12.5px; }
        .result-badge { font-size: 10.5px; }
        .track-left, .track-right { animation-duration: 55s; }
    }
     .services-section {
        padding: 80px 0;
        background-color: #f8fafc;
        border-bottom: 1px solid #e2e8f0;
    }

    /* Section Header */
    .section-header {
        text-align: center;
        max-width: 640px;
        margin: 0 auto 56px auto;
    }

    .section-badge {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.14em;
        color: #0052ff;
        text-transform: uppercase;
        margin-bottom: 12px;
        display: inline-block;
    }

    .section-title {
        font-size: 38px;
        font-weight: 800;
        letter-spacing: -0.03em;
        color: #0f172a;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .section-desc {
        font-size: 15.5px;
        color: #64748b;
        line-height: 1.6;
        font-weight: 400;
    }

    /* 3 Service Cards Grid */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .service-card {
        background-color: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 18px;
        padding: 32px 26px;
        display: flex;
        flex-direction: column;
        transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
    }

    .service-card:hover {
        border-color: #0052ff;
        transform: translateY(-5px);
        box-shadow: 0 20px 40px -10px rgba(0, 82, 255, 0.08);
    }

    /* Card Top Header */
    .card-header-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .icon-box {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icon-blue { background-color: #5d95de76; color: #0052ff; }
    .icon-dark { background-color: #282f416e; color: #ffffff; }
    .icon-purple { background-color: #f58c8c; color: #8b5cf6; }

    .metric-tag {
        font-size: 11.5px;
        font-weight: 700;
        color: #0f172a;
        background-color: #f1f5f9;
        padding: 4px 10px;
        border-radius: 20px;
        border: 1px solid #e2e8f0;
    }

    /* Typography */
    .card-title {
        font-size: 20px;
        font-weight: 800;
        color: #0f172a;
        letter-spacing: -0.02em;
        margin-bottom: 10px;
    }

    .card-desc {
        font-size: 14px;
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    /* Deliverables Checklist */
    .deliverables-title {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.1em;
        color: #94a3b8;
        margin-bottom: 12px;
        text-transform: uppercase;
    }

    .deliverables-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
        margin-top: auto; /* Pushes button to bottom */
    }

    .deliverable-item {
        font-size: 13.5px;
        font-weight: 600;
        color: #334155;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        line-height: 1.4;
    }

    .check-box {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background-color: #eff6ff;
        color: #0052ff;
        font-size: 11px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 1px;
    }

    /* Button */
    .card-btn {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px;
        background-color: #0f172a;
        color: #ffffff;
        border-radius: 8px;
        font-size: 13.5px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.25s ease;
    }

    .card-btn .btn-arrow {
        transition: transform 0.2s ease;
    }

    .service-card:hover .card-btn {
        background-color: #0052ff;
    }

    .service-card:hover .card-btn .btn-arrow {
        transform: translateX(4px);
    }

    /* Responsive Grid */
    @media (max-width: 992px) {
        .services-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .section-title { font-size: 30px; }
        .services-section { padding: 50px 0; }
    }
       /* Section Container */
    .about-2050-section {
        padding: 100px 0;
        background-color: #ffffff;
        border-bottom: 1px solid #e2e8f0;
        overflow: hidden;
        position: relative;
    }

    .about-container {
        display: grid;
        grid-template-columns: 0.95fr 1.05fr;
        gap: 60px;
        align-items: center;
    }

    /* LEFT VISUAL: CYBERNETIC NEURAL CORE GRAPHIC */
    .cyber-visual {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .hud-core-wrapper {
        position: relative;
        width: 100%;
        max-width: 440px;
        height: 440px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Rotating HUD Rings */
    .hud-ring {
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(0, 82, 255, 0.15);
        pointer-events: none;
    }

    .ring-1 {
        width: 420px;
        height: 420px;
        border-style: dashed;
        animation: rotateHUD 25s linear infinite;
    }

    .ring-2 {
        width: 300px;
        height: 300px;
        border-color: rgba(6, 182, 212, 0.25);
        animation: rotateHUD 15s linear infinite reverse;
    }

    .ring-3 {
        width: 180px;
        height: 180px;
        border-style: dotted;
        animation: rotateHUD 10s linear infinite;
    }

    @keyframes rotateHUD {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* Central Core Node */
    .core-center {
        width: 120px;
        height: 120px;
        background-color: #0f172a;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 30px rgba(0, 82, 255, 0.25);
        z-index: 2;
        border: 2px solid #0052ff;
    }

    .core-tag { font-size: 9px; font-weight: 800; color: #38bdf8; letter-spacing: 1px; }
    .core-title { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
    .core-status { font-size: 7px; font-weight: 800; color: #34d399; letter-spacing: 1px; margin-top: 2px; }

    /* Floating Cyber Nodes */
    .cyber-node {
        position: absolute;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        border: 1px solid #e2e8f0;
        padding: 10px 16px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 3;
    }

    .node-1 { top: 20px; left: 10px; }
    .node-2 { bottom: 40px; right: 0px; }
    .node-3 { bottom: -10px; left: 30px; }

    .node-dot { width: 8px; height: 8px; border-radius: 50%; }
    .cyan { background-color: #06b6d4; box-shadow: 0 0 8px #06b6d4; }
    .blue { background-color: #0052ff; box-shadow: 0 0 8px #0052ff; }
    .green { background-color: #34d399; box-shadow: 0 0 8px #34d399; }

    .node-info { display: flex; flex-direction: column; }
    .node-title { font-size: 12px; font-weight: 700; color: #0f172a; }
    .node-val { font-size: 10.5px; font-weight: 600; color: #64748b; }

    /* Float Animation */
    .float-1 { animation: float1 4s ease-in-out infinite; }
    .float-2 { animation: float2 5s ease-in-out infinite; }
    .float-3 { animation: float3 4.5s ease-in-out infinite; }

    @keyframes float1 { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-7px); } }
    @keyframes float2 { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(7px); } }
    @keyframes float3 { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-5px); } }

    /* RIGHT CONTENT COLUMN */
    .about-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .cyber-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 14px;
        background-color: #f1f5f9;
        border: 1px solid #e2e8f0;
        color: #0052ff;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.1em;
        border-radius: 30px;
        margin-bottom: 20px;
    }

    .badge-pulse {
        width: 6px;
        height: 6px;
        background-color: #0052ff;
        border-radius: 50%;
        box-shadow: 0 0 8px #0052ff;
    }

    .cyber-title {
        font-size: 40px;
        font-weight: 800;
        letter-spacing: -0.03em;
        color: #0f172a;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .cyber-desc {
        font-size: 16px;
        color: #475569;
        line-height: 1.6;
        margin-bottom: 32px;
    }

    /* 4 Cyber Pillars Grid */
    .cyber-pillars-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 36px;
        width: 100%;
    }

    .cyber-pillar {
        background-color: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 16px 18px;
        transition: all 0.2s ease;
    }

    .cyber-pillar:hover {
        border-color: #0052ff;
        background-color: #ffffff;
        box-shadow: 0 10px 25px rgba(0, 82, 255, 0.06);
    }

    .pillar-head {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 6px;
    }

    .pillar-num {
        font-size: 11px;
        font-weight: 800;
        color: #0052ff;
        background-color: #eff6ff;
        padding: 2px 6px;
        border-radius: 4px;
    }

    .pillar-name {
        font-size: 14px;
        font-weight: 700;
        color: #0f172a;
    }

    .pillar-info {
        font-size: 12.5px;
        color: #64748b;
        line-height: 1.5;
    }

    /* 2050 Futuristic Button */
    .btn-cyber {
        padding: 14px 28px;
        font-size: 13.5px;
        font-weight: 800;
        letter-spacing: 0.08em;
        color: #ffffff;
        background-color: #0f172a;
        border-radius: 8px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.25s ease;
        border: 1px solid #0f172a;
    }

    .btn-cyber:hover {
        background-color: #0052ff;
        border-color: #0052ff;
        box-shadow: 0 0 25px rgba(0, 82, 255, 0.35);
        transform: translateY(-2px);
    }

    .btn-cyber .btn-arrow {
        transition: transform 0.2s ease;
    }

    .btn-cyber:hover .btn-arrow {
        transform: translateX(4px);
    }

    /* Mobile Responsive */
    @media (max-width: 992px) {
        .about-2050-section { padding: 50px 0; }
        .about-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
        .about-content { align-items: center; }
        .cyber-title { font-size: 30px; }
        .cyber-desc { font-size: 15px; }
        .cyber-pillars-grid { grid-template-columns: 1fr; }
        
        .hud-core-wrapper { max-width: 320px; height: 320px; }
        .ring-1 { width: 300px; height: 300px; }
        .ring-2 { width: 220px; height: 220px; }
        .ring-3 { width: 140px; height: 140px; }
        .core-center { width: 90px; height: 90px; }
        .cyber-node { padding: 8px 12px; }
    }

     /* Section Shell */
    .value-slider-section {
        padding: 90px 0;
        background-color: #f8fafc;
        border-bottom: 1px solid #e2e8f0;
        overflow: hidden;
    }

    .section-header {
        text-align: center;
        max-width: 620px;
        margin: 0 auto 40px auto;
    }

    .section-badge {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.14em;
        color: #0052ff;
        text-transform: uppercase;
        margin-bottom: 12px;
        display: inline-block;
    }

    .section-title {
        font-size: 38px;
        font-weight: 800;
        letter-spacing: -0.03em;
        color: #0f172a;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .section-desc {
        font-size: 15.5px;
        color: #64748b;
        line-height: 1.6;
    }

    /* Tab Controls Navigation */
    .slider-tabs-nav {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .tab-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 24px;
        background-color: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 40px;
        font-size: 14px;
        font-weight: 700;
        color: #64748b;
        cursor: pointer;
        transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .tab-btn:hover {
        color: #0052ff;
        border-color: #0052ff;
    }

    .tab-btn.active {
        background-color: #0052ff;
        color: #ffffff;
        border-color: #0052ff;
        box-shadow: 0 8px 20px rgba(0, 82, 255, 0.25);
    }

    .tab-num {
        font-size: 12px;
        opacity: 0.8;
    }

    /* Slider Viewport & Cards */
    .slider-viewport {
        position: relative;
        width: 100%;
        min-height: 480px;
    }

    .slide-card {
        position: absolute;
        inset: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        background-color: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.06);
    }

    .slide-card.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .slide-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
        align-items: center;
    }

    /* Slide Left Content */
    .slide-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .slide-badge {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.12em;
        color: #0052ff;
        margin-bottom: 12px;
    }

    .slide-title {
        font-size: 30px;
        font-weight: 800;
        letter-spacing: -0.025em;
        color: #0f172a;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .slide-desc {
        font-size: 15px;
        color: #475569;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .value-checklist {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 30px;
    }

    .value-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .v-check {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: #eff6ff;
        color: #0052ff;
        font-size: 11px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .value-item strong {
        display: block;
        font-size: 14px;
        font-weight: 700;
        color: #0f172a;
    }

    .value-item span {
        font-size: 12.5px;
        color: #64748b;
    }

    .btn-slide {
        padding: 12px 24px;
        font-size: 14px;
        font-weight: 700;
        color: #ffffff;
        background-color: #0f172a;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.25s ease;
    }

    .btn-slide:hover {
        background-color: #0052ff;
        transform: translateY(-2px);
    }

    /* Slide Right Visual */
    .visual-card-wrapper {
        position: relative;
        width: 100%;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid #e2e8f0;
    }

    .slide-img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        display: block;
    }

    .slide-float-badge {
        position: absolute;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid #e2e8f0;
        padding: 10px 16px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 2;
    }

    .float-top { top: 20px; right: 20px; }
    .float-bottom { bottom: 20px; left: 20px; }

    .float-icon { font-size: 18px; }
    .float-val { font-size: 14px; font-weight: 800; color: #0f172a; display: block; }
    .float-lbl { font-size: 11px; color: #64748b; font-weight: 600; }

    /* Bottom Slider Arrow Navigation Controls */
    .slider-arrows-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 30px;
        padding-top: 20px;
    }

    .arrow-nav {
        background-color: #ffffff;
        border: 1px solid #e2e8f0;
        color: #0f172a;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 13.5px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .arrow-nav:hover {
        background-color: #0052ff;
        color: #ffffff;
        border-color: #0052ff;
    }

    .slider-dots {
        display: flex;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #cbd5e1;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .dot.active {
        width: 24px;
        border-radius: 10px;
        background-color: #0052ff;
    }

    /* Mobile Responsive */
    @media (max-width: 992px) {
        .value-slider-section { padding: 50px 0; }
        .slider-viewport { min-height: auto; }
        .slide-card { position: static; opacity: 1; visibility: visible; transform: none; display: none; padding: 24px; }
        .slide-card.active { display: block; }
        .slide-grid { grid-template-columns: 1fr; gap: 30px; }
        .section-title { font-size: 28px; }
        .slide-title { font-size: 24px; }
        .slide-img { height: 260px; }
    }