     CSS RESET & BASE STYLES
           ======================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #000000;
            color: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* ========================================
           CSS VARIABLES
           ======================================== */
        :root {
            --blue-400: #42A5F5;
            --blue-500: #1E88E5;
            --blue-600: #1565C0;
            --blue-700: #0D47A1;
            --blue-800: #0A3D91;
            --green-300: #69F0AE;
            --green-400: #00E676;
            --green-500: #00C853;
            --cyan-400: #00E5FF;
        }

        /* ========================================
           SCROLLBAR
           ======================================== */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #0a0a0a;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--blue-500), var(--green-400));
            border-radius: 5px;
        }

        ::selection {
            background: rgba(0, 230, 118, 0.3);
            color: #ffffff;
        }

        /* ========================================
           UTILITY CLASSES
           ======================================== */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 120px 0;
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 80px 0;
            }
        }

        /* Glassmorphism */
        .glass {
            background: rgba(30, 136, 229, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 230, 118, 0.1);
        }

        .glass-strong {
            background: rgba(13, 71, 161, 0.2);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(0, 230, 118, 0.15);
        }

        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(135deg, var(--blue-400), var(--green-400), var(--green-300));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gradient-text-green {
            background: linear-gradient(135deg, var(--green-300), var(--green-400), var(--green-500));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Buttons */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 16px 32px;
            background: linear-gradient(135deg, var(--green-400), var(--green-500));
            color: #000;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(0, 230, 118, 0.4);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 16px 32px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 50px;
            border: 1px solid rgba(0, 230, 118, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: rgba(0, 230, 118, 0.1);
            border-color: rgba(0, 230, 118, 0.6);
        }

        /* ========================================
           ANIMATIONS
           ======================================== */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.05); }
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes spinReverse {
            from { transform: rotate(360deg); }
            to { transform: rotate(0deg); }
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 20px rgba(0, 230, 118, 0.6); }
            50% { box-shadow: 0 0 40px rgba(0, 230, 118, 0.9); }
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-60px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes gradientFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes particleFloat {
            0% { transform: translateY(100vh) scale(0); opacity: 0; }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-100vh) scale(1); opacity: 0; }
        }

        @keyframes wave {
            0%, 100% { transform: translateX(0) translateY(0); }
            50% { transform: translateX(-25px) translateY(10px); }
        }

        @keyframes ping {
            75%, 100% { transform: scale(2); opacity: 0; }
        }

        @keyframes countUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ========================================
           BACKGROUND EFFECTS
           ======================================== */
        .bg-effects {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .bg-gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            animation: float 15s ease-in-out infinite;
        }

        .bg-gradient-orb.blue {
            width: 600px;
            height: 600px;
            background: rgba(30, 136, 229, 0.15);
            top: 10%;
            left: 10%;
        }

        .bg-gradient-orb.green {
            width: 500px;
            height: 500px;
            background: rgba(0, 230, 118, 0.12);
            bottom: 10%;
            right: 10%;
            animation-delay: -5s;
        }

        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            animation: particleFloat linear infinite;
        }

        .particle.blue {
            background: rgba(30, 136, 229, 0.6);
            box-shadow: 0 0 10px rgba(30, 136, 229, 0.4);
        }

        .particle.green {
            background: rgba(0, 230, 118, 0.6);
            box-shadow: 0 0 10px rgba(0, 230, 118, 0.4);
        }

        /* Grid overlay */
        .grid-overlay {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(0, 230, 118, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 230, 118, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        /* ========================================
           NAVIGATION
           ======================================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 20px;
            transition: all 0.5s ease;
        }

        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 230, 118, 0.1);
        }

        .navbar-container {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .navbar-logo img {
            height: 48px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .navbar-logo:hover img {
            transform: scale(1.05);
        }

        .navbar-menu {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .navbar-link {
            color: #d1d5db;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .navbar-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--blue-500), var(--green-400));
            transition: width 0.3s ease;
        }

        .navbar-link:hover {
            color: #fff;
        }

        .navbar-link:hover::after {
            width: 100%;
        }

        .navbar-buttons {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .navbar-btn {
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .navbar-btn.outline {
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        .navbar-btn.outline:hover {
            border-color: rgba(0, 230, 118, 0.5);
            background: rgba(255, 255, 255, 0.05);
        }

        .navbar-btn.filled {
            background: linear-gradient(135deg, var(--green-400), var(--green-500));
            color: #000;
        }

        .navbar-btn.filled:hover {
            box-shadow: 0 8px 24px rgba(0, 230, 118, 0.3);
            transform: translateY(-2px);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-menu-btn span {
            width: 24px;
            height: 2px;
            background: #fff;
            transition: all 0.3s ease;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            bottom: 0;
            background: #000;
            padding: 20px;
            z-index: 999;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu a {
            display: block;
            padding: 16px 0;
            color: #d1d5db;
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        @media (max-width: 1024px) {
            .navbar-menu, .navbar-buttons {
                display: none;
            }
            .mobile-menu-btn {
                display: flex;
            }
        }

        /* ========================================
           HERO SECTION
           ======================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 100px 20px 60px;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 10px 20px;
            border-radius: 50px;
            margin-bottom: 24px;
            animation: fadeIn 0.8s ease forwards;
        }

        .hero-badge .dot {
            width: 10px;
            height: 10px;
            background: var(--green-400);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        .hero-badge span {
            font-size: 0.9rem;
            font-weight: 500;
            background: linear-gradient(90deg, var(--green-300), var(--blue-400));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 5rem);
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .hero-title .line {
            display: block;
            opacity: 0;
            animation: slideInLeft 0.8s ease forwards;
        }

        .hero-title .line:nth-child(1) { animation-delay: 0.2s; }
        .hero-title .line:nth-child(2) { animation-delay: 0.4s; }
        .hero-title .line:nth-child(3) { animation-delay: 0.6s; }
        .hero-title .line:nth-child(4) { animation-delay: 0.8s; }

        .hero-title .gradient-animated {
            background: linear-gradient(90deg, var(--blue-400), var(--green-400), var(--blue-400));
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientFlow 4s ease infinite;
        }

        .hero-description {
            font-size: 1.2rem;
            color: #d1d5db;
            margin-bottom: 32px;
            max-width: 540px;
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
            animation-delay: 1s;
        }

        @media (max-width: 1024px) {
            .hero-description {
                margin-left: auto;
                margin-right: auto;
            }
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
            animation-delay: 1.2s;
        }

        @media (max-width: 640px) {
            .hero-buttons {
                flex-direction: column;
            }
        }

        @media (max-width: 1024px) {
            .hero-buttons {
                justify-content: center;
            }
        }

        /* Hero Animation - Orbiting Skills */
        .hero-animation {
            position: relative;
            width: 100%;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 1024px) {
            .hero-animation {
                display: none;
            }
        }

        .orbit-ring {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(0, 230, 118, 0.2);
        }

        .orbit-ring.outer {
            width: 420px;
            height: 420px;
            animation: spin 35s linear infinite;
        }

        .orbit-ring.middle {
            width: 300px;
            height: 300px;
            animation: spinReverse 25s linear infinite;
        }

        .orbit-ring.inner {
            width: 180px;
            height: 180px;
            animation: spin 18s linear infinite;
        }

        .skill-node {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .skill-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            animation: glow 2s ease-in-out infinite;
        }

        .skill-dot.blue {
            background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
            box-shadow: 0 0 20px rgba(30, 136, 229, 0.8);
        }

        .skill-dot.green {
            background: linear-gradient(135deg, var(--green-400), var(--green-300));
            box-shadow: 0 0 20px rgba(0, 230, 118, 0.8);
        }

        .skill-label {
            position: absolute;
            top: -30px;
            white-space: nowrap;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(0, 230, 118, 0.3);
        }

        .skill-label.blue {
            color: var(--blue-400);
        }

        .skill-label.green {
            color: var(--green-400);
        }

        /* Center Logo */
        .hero-logo-center {
            position: absolute;
             backdrop-filter: blur(20px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .hero-logo-center img {
            width: 100px;
            height: 100px;
            object-fit: contain;
            animation: float 4s ease-in-out infinite;
            filter: drop-shadow(0 0 20px rgba(0, 230, 118, 0.5));
        }

        /* Pulse rings around logo */
        .pulse-ring {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(0, 230, 118, 0.3);
            animation: ping 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        .pulse-ring:nth-child(1) { width: 140px; height: 140px; }
        .pulse-ring:nth-child(2) { width: 180px; height: 180px; animation-delay: 0.5s; }
        .pulse-ring:nth-child(3) { width: 220px; height: 220px; animation-delay: 1s; }

        /* Floating badges */
        .floating-badge {
            position: absolute;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            animation: float 5s ease-in-out infinite;
        }

        .floating-badge.top-right {
            top: 20px;
            right: 20px;
            color: var(--blue-400);
            border: 1px solid rgba(30, 136, 229, 0.3);
        }

        .floating-badge.bottom-left {
            bottom: 20px;
            left: 20px;
            color: var(--green-400);
            border: 1px solid rgba(0, 230, 118, 0.3);
            animation-delay: -2s;
        }

        /* Feature cards at bottom */
        .hero-features {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 16px;
            z-index: 10;
        }

        @media (max-width: 768px) {
            .hero-features {
                flex-wrap: wrap;
                justify-content: center;
                bottom: 40px;
                width: 90%;
            }
        }

        .hero-feature-card {
            padding: 12px 24px;
            border-radius: 50px;
            border: 1px solid rgba(0, 230, 118, 0.2);
            animation: float 4s ease-in-out infinite;
        }

        .hero-feature-card:nth-child(2) { animation-delay: -1s; }
        .hero-feature-card:nth-child(3) { animation-delay: -2s; }

        .hero-feature-card span {
            font-size: 0.85rem;
            font-weight: 500;
            background: linear-gradient(90deg, var(--blue-400), var(--green-400));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            opacity: 0.6;
        }

        .scroll-indicator span {
            font-size: 0.7rem;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .scroll-mouse {
            width: 24px;
            height: 40px;
            border: 2px solid #6b7280;
            border-radius: 12px;
            display: flex;
            justify-content: center;
            padding-top: 8px;
        }

        .scroll-dot {
            width: 4px;
            height: 8px;
            background: linear-gradient(var(--green-400), var(--blue-400));
            border-radius: 2px;
            animation: float 2s ease-in-out infinite;
        }

        /* ========================================
           GLASS CUBE SECTION
           ======================================== */
        .cube-section {
            padding: 120px 20px;
            position: relative;
            background: linear-gradient(180deg, #000 0%, #0a1628 50%, #000 100%);
        }

        .cube-section .container {
            position: relative;
            z-index: 10;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #9ca3af;
        }

        .section-divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--blue-500), var(--green-400));
            margin: 24px auto;
            border-radius: 2px;
        }

        /* Cube Animation Container */
        .cube-container {
            position: relative;
            width: 100%;
            height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cube-wrapper {
            position: relative;
            width: 350px;
            height: 350px;
            animation: spin 30s linear infinite;
        }

        .cube-face {
            position: absolute;
            inset: 0;
            border-radius: 24px;
            border: 1px solid rgba(0, 230, 118, 0.2);
            box-shadow: 
                0 0 60px rgba(30, 136, 229, 0.3),
                0 0 120px rgba(0, 230, 118, 0.15),
                inset 0 0 60px rgba(0, 230, 118, 0.1);
        }

        .cube-skill {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .cube-skill-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            animation: glow 2s ease-in-out infinite;
        }

        .cube-skill-label {
            position: absolute;
            top: -28px;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(0, 230, 118, 0.3);
            white-space: nowrap;
        }

        .cube-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90px;
            height: 90px;
            border-radius: 16px;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(0, 230, 118, 0.3);
            box-shadow: 0 0 40px rgba(0, 230, 118, 0.5);
            z-index: 10;
        }

        .cube-logo img {
            width: 75px;
            height: 75px;
            object-fit: contain;
            filter: drop-shadow(0 0 15px rgba(0, 230, 118, 0.6));
            animation: float 3s ease-in-out infinite;
        }

        /* SVG Lines */
        .cube-lines {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .cube-line {
            stroke: url(#cubeGradient);
            stroke-width: 1.5;
            opacity: 0.4;
        }

        /* ========================================
           SERVICES SECTION
           ======================================== */
        .services-section {
            padding: 120px 20px;
            position: relative;
            background: #000;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 60px;
        }

        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        .service-card {
            padding: 40px 32px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 24px;
        }

        .service-card:nth-child(1)::before {
            background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), transparent);
        }

        .service-card:nth-child(2)::before {
            background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), transparent);
        }

        .service-card:nth-child(3)::before {
            background: linear-gradient(135deg, rgba(0, 200, 255, 0.1), transparent);
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 230, 118, 0.3);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-icon.blue {
            background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
        }

        .service-icon.green {
            background: linear-gradient(135deg, var(--green-400), var(--green-300));
        }

        .service-icon.gradient {
            background: linear-gradient(135deg, var(--blue-500), var(--cyan-400), var(--green-400));
        }

        .service-icon i {
            width: 32px;
            height: 32px;
            color: #fff;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
        }

        .service-card p {
            color: #9ca3af;
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .service-features {
            list-style: none;
            margin-bottom: 24px;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #d1d5db;
            font-size: 0.9rem;
            margin-bottom: 12px;
        }

        .service-features li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--blue-500), var(--green-400));
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            font-weight: 500;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 12px;
        }

        .service-link i {
            width: 16px;
            height: 16px;
        }

        /* ========================================
           SPLIT SECTION (EMPLOYERS/CANDIDATES)
           ======================================== */
        .split-section {
            padding: 120px 20px;
            position: relative;
            background: linear-gradient(180deg, #000 0%, #0a1628 50%, #000 100%);
        }

        .split-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-top: 60px;
        }

        @media (max-width: 768px) {
            .split-grid {
                grid-template-columns: 1fr;
            }
        }

        .split-card {
            padding: 48px 40px;
            border-radius: 24px;
            transition: all 0.4s ease;
        }

        .split-card:hover {
            transform: translateY(-8px);
        }

        .split-card.employers {
            border: 1px solid rgba(30, 136, 229, 0.2);
        }

        .split-card.employers:hover {
            border-color: rgba(30, 136, 229, 0.4);
            box-shadow: 0 20px 60px rgba(30, 136, 229, 0.15);
        }

        .split-card.candidates {
            border: 1px solid rgba(0, 230, 118, 0.2);
        }

        .split-card.candidates:hover {
            border-color: rgba(0, 230, 118, 0.4);
            box-shadow: 0 20px 60px rgba(0, 230, 118, 0.15);
        }

        .split-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .split-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .split-card:hover .split-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .split-icon.blue {
            background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
        }

        .split-icon.green {
            background: linear-gradient(135deg, var(--green-400), var(--green-300));
        }

        .split-icon i {
            width: 32px;
            height: 32px;
        }

        .split-icon.blue i { color: #fff; }
        .split-icon.green i { color: #000; }

        .split-title h3 {
            font-size: 1.75rem;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .split-title p {
            font-size: 0.9rem;
        }

        .split-title p.blue { color: var(--blue-400); }
        .split-title p.green { color: var(--green-400); }

        .split-list {
            list-style: none;
            margin-bottom: 32px;
        }

        .split-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: #d1d5db;
            margin-bottom: 16px;
        }

        .split-list li i {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .split-list li i.blue { color: var(--blue-400); }
        .split-list li i.green { color: var(--green-400); }

        .split-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .split-btn.blue {
            background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
            color: #fff;
        }

        .split-btn.blue:hover {
            box-shadow: 0 10px 30px rgba(30, 136, 229, 0.4);
            transform: translateY(-2px);
        }

        .split-btn.green {
            background: linear-gradient(135deg, var(--green-400), var(--green-500));
            color: #000;
        }

        .split-btn.green:hover {
            box-shadow: 0 10px 30px rgba(0, 230, 118, 0.4);
            transform: translateY(-2px);
        }

        .split-btn i {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .split-btn:hover i {
            transform: translateX(4px);
        }

        /* ========================================
           TRUST METRICS SECTION
           ======================================== */
        .metrics-section {
            padding: 120px 20px;
            position: relative;
            background: #000;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        @media (max-width: 1024px) {
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .metrics-grid {
                grid-template-columns: 1fr;
            }
        }

        .metric-card {
            padding: 40px 24px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s ease;
        }

        .metric-card:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 230, 118, 0.3);
        }

        .metric-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: transform 0.3s ease;
        }

        .metric-card:hover .metric-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .metric-icon i {
            width: 28px;
            height: 28px;
            color: #fff;
        }

        .metric-value {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .metric-value .number {
            background: linear-gradient(135deg, var(--blue-400), var(--green-400));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .metric-value .suffix {
            color: var(--green-400);
        }

        .metric-label {
            color: #9ca3af;
            font-size: 0.95rem;
        }

        /* Trust badges */
        .trust-badges {
            text-align: center;
            margin-top: 60px;
        }

        .trust-badges p {
            color: #6b7280;
            margin-bottom: 24px;
        }

        .badge-list {
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0.5;
            transition: opacity 0.3s ease;
        }

        .badge-item:hover {
            opacity: 0.8;
        }

        .badge-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(30, 136, 229, 0.3), rgba(0, 230, 118, 0.3));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            color: #fff;
        }

        .badge-text {
            color: #9ca3af;
            font-size: 0.85rem;
        }

        /* ========================================
           CTA SECTION
           ======================================== */
        .cta-section {
            padding: 120px 20px;
            position: relative;
            overflow: hidden;
        }

        .cta-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 25%, #00796B 50%, var(--green-500) 75%, var(--blue-700) 100%);
            background-size: 400% 400%;
            animation: gradientFlow 15s ease infinite;
        }

        .cta-waves {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            overflow: hidden;
        }

        .cta-wave {
            position: absolute;
            bottom: 0;
            width: 200%;
            height: 100%;
        }

        .cta-wave svg {
            width: 100%;
            height: 100%;
        }

        .cta-wave.wave1 {
            animation: wave 8s ease-in-out infinite;
            opacity: 0.3;
        }

        .cta-wave.wave2 {
            animation: wave 6s ease-in-out infinite reverse;
            opacity: 0.2;
        }

        .cta-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            margin-bottom: 32px;
        }

        .cta-badge i {
            width: 16px;
            height: 16px;
            color: var(--green-400);
        }

        .cta-badge span {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .cta-title {
            font-size: clamp(2rem, 5vw, 4rem);
            color: #fff;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .cta-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        @media (max-width: 640px) {
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        .cta-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 40px;
            background: linear-gradient(135deg, var(--green-400), var(--green-500));
            color: #000;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .cta-btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 230, 118, 0.4);
        }

        .cta-btn-primary i {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .cta-btn-primary:hover i {
            transform: translateX(4px);
        }

        .cta-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 40px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .cta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-4px);
        }

        /* ========================================
           CONTACT SECTION
           ======================================== */
        .contact-section {
            padding: 120px 20px;
            position: relative;
            background: linear-gradient(180deg, #000 0%, #0a1628 100%);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            margin-top: 60px;
        }

        @media (max-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        .contact-form-wrapper {
            padding: 40px;
            border-radius: 24px;
            border: 1px solid rgba(0, 230, 118, 0.1);
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #fff;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 16px;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #fff;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--green-400);
            box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #6b7280;
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--green-400), var(--green-500));
            color: #000;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 230, 118, 0.3);
        }

        .submit-btn i {
            width: 20px;
            height: 20px;
        }

        /* Contact Info */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-card {
            padding: 32px;
            border-radius: 20px;
            border: 1px solid rgba(30, 136, 229, 0.1);
        }

        .contact-card-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .contact-card-header img {
            height: 48px;
            width: auto;
        }

        .contact-card-header p {
            color: var(--blue-400);
            font-size: 1.1rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 20px;
        }

        .contact-item-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-item-icon.blue {
            background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
        }

        .contact-item-icon.green {
            background: linear-gradient(135deg, var(--green-400), var(--green-300));
        }

        .contact-item-icon i {
            width: 20px;
            height: 20px;
            color: #fff;
        }

        .contact-item-content p:first-child {
            font-weight: 500;
            margin-bottom: 4px;
        }

        .contact-item-content a {
            color: var(--blue-400);
            transition: color 0.3s ease;
        }

        .contact-item-content a:hover {
            color: var(--green-400);
        }

        .contact-item-content .text-gray {
            color: #d1d5db;
        }

        /* Hours card */
        .hours-card {
            padding: 32px;
            border-radius: 20px;
            border: 1px solid rgba(0, 230, 118, 0.1);
        }

        .hours-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .hours-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--green-400), var(--blue-500));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hours-icon i {
            width: 20px;
            height: 20px;
            color: #fff;
        }

        .hours-header h3 {
            font-size: 1.25rem;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
        }

        .hours-card p {
            color: #d1d5db;
            margin-bottom: 8px;
        }

        /* ========================================
           FOOTER
           ======================================== */
        .footer {
            padding: 64px 20px 32px;
            background: rgba(0, 0, 0, 0.8);
            border-top: 1px solid rgba(0, 230, 118, 0.2);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        .footer-brand img {
            height: 56px;
            width: auto;
            margin-bottom: 16px;
        }

        .footer-brand p {
            color: #9ca3af;
        }

        .footer-column h4 {
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #9ca3af;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--green-400);
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--blue-600), var(--green-400));
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 230, 118, 0.3);
        }

        .social-link i {
            width: 20px;
            height: 20px;
            color: #fff;
        }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-bottom p {
            color: #6b7280;
            font-size: 0.9rem;
        }

        .footer-legal {
            display: flex;
            gap: 24px;
        }

        .footer-legal a {
            color: #6b7280;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--green-400);
        }
