* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
            background: radial-gradient(ellipse at top, #0f0f23 0%, #0a0a0a 50%, #000000 100%);
            color: #ffffff;
            overflow-x: hidden;
            min-height: 100vh;
            font-weight: 300;
            letter-spacing: -0.01em;
        }

        /* Technical grid background */
        .bg-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            opacity: 0.03;
            background-image: 
                linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Animated circuit lines */
        .circuit-lines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .circuit-line {
            position: absolute;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), rgba(147, 51, 234, 0.4), transparent);
            height: 1px;
            animation: circuitFlow 8s linear infinite;
            box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
        }

        .circuit-line.vertical {
            width: 1px;
            height: 100px;
            background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.4), rgba(147, 51, 234, 0.4), transparent);
            animation: circuitFlowVertical 10s linear infinite;
            box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
        }

        @keyframes circuitFlow {
            0% { left: -200px; width: 0; }
            50% { width: 200px; }
            100% { left: 100%; width: 0; }
        }

        @keyframes circuitFlowVertical {
            0% { top: -100px; height: 0; }
            50% { height: 100px; }
            100% { top: 100%; height: 0; }
        }

        /* Navigation */
        .navbar {
            position: sticky;
            top: 0;
            width: 100%;
            padding: 1.5rem 2rem;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(40px);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 700;
            /* background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #a855f7 100%); */
            background-color: #ffffff;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            transition: all 0.3s ease;
            letter-spacing: -0.02em;
            position: relative;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, #60a5fa, #a855f7);
            transition: width 0.3s ease;
        }

        .logo:hover::after {
            width: 100%;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 400;
            font-size: 0.95rem;
            position: relative;
            padding: 0.8rem 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: 0.01em;
        }

        .nav-links a:hover {
            color: #ffffff;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: #ffffff;
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover::before {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1100px;
            z-index: 2;
            animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.8rem;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 50px;
            color: #60a5fa;
            font-size: 0.85rem;
            font-weight: 400;
            margin-bottom: 3rem;
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
        }

        .hero-badge:hover {
            background: rgba(59, 130, 246, 0.15);
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
        }

        .status-dot {
            width: 6px;
            height: 6px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .hero-title {
            font-size: clamp(3.5rem, 9vw, 7rem);
            font-weight: 800;
            margin-bottom: 2rem;
            color: #ffffff;
            line-height: 0.95;
            letter-spacing: -0.04em;
            position: relative;
        }

        .hero-title .accent {
            background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            animation: gradientShift 4s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { 
                background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
            50% { 
                background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #60a5fa 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 3rem;
            line-height: 1.6;
            font-weight: 300;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
            grid-template-columns: repeat(auto-fit, minmax(274px, 1fr));
            gap: 1px;
            margin: 4rem 0;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            overflow: hidden;
            backdrop-filter: blur(20px);
        }

        .service-card {
            background: rgba(10, 10, 10, 0.8);
            padding: 2.5rem 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            border: none;
            backdrop-filter: blur(40px);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6), rgba(147, 51, 234, 0.6), transparent);
            transform: scaleX(0);
            transition: transform 0.6s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            background: rgba(15, 15, 15, 0.9);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
        }

        .service-number {
            font-size: 0.75rem;
            background: linear-gradient(135deg, #60a5fa, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
            margin-bottom: 1.5rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .service-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #ffffff;
            letter-spacing: -0.01em;
        }

        .service-desc {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            line-height: 1.6;
            font-weight: 300;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 4rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
            color: #ffffff;
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            letter-spacing: -0.01em;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
            background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
        }

        .btn-secondary {
            background: transparent;
            color: #ffffff;
            padding: 1.2rem 2.5rem;
            border: 1px solid rgba(96, 165, 250, 0.3);
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
            cursor: pointer;
            letter-spacing: -0.01em;
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .btn-secondary:hover::before {
            left: 100%;
        }

        .btn-secondary:hover {
            background: rgba(96, 165, 250, 0.1);
            border-color: rgba(96, 165, 250, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(96, 165, 250, 0.1);
        }

        /* Technical decorations */
        .tech-decoration {
            position: absolute;
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.01);
            backdrop-filter: blur(40px);
        }

        .tech-deco-1 {
            width: 400px;
            height: 200px;
            top: 15%;
            left: -100px;
            transform: rotate(-15deg);
            animation: float 8s ease-in-out infinite;
        }

        .tech-deco-2 {
            width: 300px;
            height: 150px;
            bottom: 20%;
            right: -80px;
            transform: rotate(20deg);
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(-15deg); }
            50% { transform: translateY(-20px) rotate(-15deg); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 1rem 1.5rem;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(40px);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                border-top: 1px solid rgba(255, 255, 255, 0.05);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding: 1rem;
                min-height: 90vh;
            }

            .hero-badge {
                margin-bottom: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                margin: 3rem 0;
            }

            .service-card {
                padding: 2rem 1.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
                margin-top: 3rem;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }

            .tech-deco-1, .tech-deco-2 {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .services-grid {
                border-radius: 12px;
            }
            
            .service-card {
                padding: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .advantages-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .advantage-card {
                padding: 2rem 1.5rem;
            }

            .advantage-icon {
                width: 56px;
                height: 56px;
            }

            .tech-marquee {
                gap: 2rem;
            }

            .tech-logo-item {
                min-width: 100px;
            }

            .tech-logo {
                width: 56px;
                height: 56px;
            }

            .tech-logo svg {
                width: 28px;
                height: 28px;
            }

            .why-jupiternexus, .tech-stack {
                padding: 6rem 0.5rem !important;
            }

        }

        /* Why JupiterNexus Section */
        .why-jupiternexus {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, rgba(15, 15, 35, 0.6) 0%, rgba(5, 5, 15, 0.8) 100%);
            position: relative;
            overflow: hidden;
        }

        .why-jupiternexus::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
            z-index: -1;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.8rem;
            background: rgba(147, 51, 234, 0.1);
            border: 1px solid rgba(147, 51, 234, 0.2);
            border-radius: 50px;
            color: #a855f7;
            font-size: 0.85rem;
            font-weight: 400;
            margin-bottom: 2rem;
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(147, 51, 234, 0.1);
        }

        .section-badge:hover {
            background: rgba(147, 51, 234, 0.15);
            border-color: rgba(147, 51, 234, 0.3);
            box-shadow: 0 0 30px rgba(147, 51, 234, 0.2);
        }

        .section-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            margin-bottom: 2rem;
            color: #ffffff;
            line-height: 1.1;
            letter-spacing: -0.03em;
        }

        .section-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            font-weight: 300;
            max-width: 800px;
            margin: 0 auto;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .advantage-card {
            background: rgba(15, 15, 25, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(40px);
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.6), rgba(168, 85, 247, 0.6), transparent);
            transform: scaleX(0);
            transition: transform 0.6s ease;
        }

        .advantage-card:hover::before {
            transform: scaleX(1);
        }

        .advantage-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.05) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .advantage-card:hover::after {
            opacity: 1;
        }

        .advantage-card:hover {
            background: rgba(20, 20, 35, 0.9);
            border-color: rgba(96, 165, 250, 0.2);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(96, 165, 250, 0.15);
        }

        .advantage-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(168, 85, 247, 0.1));
            border: 1px solid rgba(96, 165, 250, 0.2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .advantage-icon svg {
            color: #60a5fa;
            transition: all 0.3s ease;
        }

        .icon-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 40px;
            height: 40px;
            background: radial-gradient(circle, rgba(96, 165, 250, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .advantage-card:hover .icon-glow {
            opacity: 1;
        }

        .advantage-card:hover .advantage-icon {
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(168, 85, 247, 0.2));
            border-color: rgba(96, 165, 250, 0.4);
            transform: scale(1.05);
        }

        .advantage-card:hover .advantage-icon svg {
            color: #ffffff;
            transform: scale(1.1);
        }

        .advantage-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #ffffff;
            letter-spacing: -0.01em;
        }

        .advantage-desc {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            line-height: 1.6;
            font-weight: 300;
            margin-bottom: 2rem;
        }

        .advantage-metric {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
        }

        .advantage-metric span {
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            margin-left: 0.5rem;
        }

        /* Technology Stack Section */
        .tech-stack {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, rgba(5, 5, 15, 0.8) 0%, rgba(10, 10, 20, 0.9) 100%);
            position: relative;
            overflow: hidden;
        }

        .tech-stack::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
            z-index: -1;
        }

        .tech-stack::after {
            background-image:
            repeating-linear-gradient(90deg, rgba(168, 85, 247, 0.15) 1px, transparent 2px),
            repeating-linear-gradient(0deg, rgba(96, 165, 250, 0.15) 1px, transparent 2px);
            opacity: 0.25; /* Increase glow presence */
            background-size: 60px 60px;
        }


        .tech-marquee-container {
            margin-top: 5rem;
            overflow: hidden;
            position: relative;
        }

        .tech-marquee-container::before,
        .tech-marquee-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .tech-marquee-container::before {
            left: 0;
            background: linear-gradient(90deg, rgba(10, 10, 20, 1) 0%, transparent 100%);
        }

        .tech-marquee-container::after {
            right: 0;
            background: linear-gradient(270deg, rgba(10, 10, 20, 1) 0%, transparent 100%);
        }

        .tech-marquee {
            display: flex;
            gap: 4rem;
            padding: 20px 0;
            animation: marqueeScroll 30s linear infinite;
            will-change: transform;
        }

        .tech-marquee:hover {
            animation-play-state: paused;
        }

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

        .tech-logo-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            min-width: 120px;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .tech-logo-item:hover {
            opacity: 1;
            transform: translateY(-5px);
        }

        

        .tech-logo::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(96,165,250,0.25), transparent 70%);
            transform: translate(-50%, -50%);
            border-radius: 50%;
            z-index: -1;
            animation: pulseAura 4s ease-in-out infinite;
        }

        @keyframes pulseAura {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
            50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
        }

        .tech-logo {
            width: 64px;
            height: 64px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(20px);
        }


        .tech-logo svg {
            width: 32px;
            height: 32px;
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
        }

        .tech-logo-item:hover .tech-logo {
            background: rgba(96, 165, 250, 0.1);
            border-color: rgba(96, 165, 250, 0.3);
            box-shadow: 0 10px 30px rgba(96, 165, 250, 0.2);
        }
        .tech-logo-item:hover .tech-logo {
            background: rgba(147, 51, 234, 0.15);
            box-shadow:
                0 0 15px rgba(147, 51, 234, 0.4),
                0 0 30px rgba(59, 130, 246, 0.3),
                0 0 50px rgba(236, 72, 153, 0.2);
        }


        .tech-logo-item:hover .tech-logo svg {
            color: #60a5fa;
            transform: scale(1.1);
        }

        .tech-logo-item span {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            font-weight: 500;
            text-align: center;
            transition: color 0.3s ease;
        }

        .tech-logo-item:hover span {
            color: #ffffff;
        }

        /* Duplicate marquee items for seamless loop */
        .tech-marquee::after {
            content: '';
            display: flex;
            gap: 4rem;
        } 
        /* Enhance advantage cards with dynamic glow */
        .advantage-card {
            position: relative;
            background: linear-gradient(135deg, rgba(20, 20, 40, 0.85), rgba(10, 10, 25, 0.95));
            border: 1px solid rgba(168, 85, 247, 0.15);
            box-shadow: 0 0 20px rgba(96, 165, 250, 0.05);
            transition: all 0.4s ease;
        }

        .advantage-card:hover {
            background: linear-gradient(135deg, rgba(30, 30, 60, 0.95), rgba(15, 15, 30, 0.95));
            box-shadow: 0 0 40px rgba(168, 85, 247, 0.25), 0 0 80px rgba(96, 165, 250, 0.15);
        }

        /* Enhance tech logos with colorful pulse */
        .tech-logo {
            position: relative;
            transition: all 0.3s ease;
        }

        .tech-logo::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(96, 165, 250, 0.15), transparent 70%);
            transform: translate(-50%, -50%);
            border-radius: 50%;
            opacity: 0;
            z-index: 0;
            transition: opacity 0.4s ease;
        }

        .tech-logo-item:hover .tech-logo::before {
            opacity: 1;
        }

        /* Add subtle shine on hover for section containers */
        .tech-stack:hover,
        .why-jupiternexus:hover {
            background: linear-gradient(135deg, rgba(10, 10, 30, 0.9), rgba(20, 20, 50, 0.9));
        }

        /* Optional shimmer effect for badges */
        .section-badge, .hero-badge {
            position: relative;
            overflow: hidden;
        }

        .section-badge::after, .hero-badge::after {
            content: '';
            position: absolute;
            top: 0;
            left: -75%;
            width: 50%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
            transform: skewX(-30deg);
            animation: shimmer 2.5s infinite;
        }

        @keyframes shimmer {
            0% { left: -75%; }
            100% { left: 125%; }
        }

        .tech-logo-item {
            position: relative;
            z-index: 1;
            animation: floatGlow 6s ease-in-out infinite alternate;
        }

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

        .tech-logo {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(168, 85, 247, 0.15);
            box-shadow: 0 0 20px rgba(96, 165, 250, 0.15);
        }

        .tech-logo-item:hover .tech-logo {
            background: rgba(96, 165, 250, 0.12);
            box-shadow: 0 0 30px rgba(168, 85, 247, 0.3), 0 0 40px rgba(96, 165, 250, 0.2);
        }

        .city-bg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            z-index: 0;
            pointer-events: none;
            opacity: 0.05;
        }
        .floating-glow-container {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 1;
        }

        .glow-particle {
            position: absolute;
            width: 10px;
            height: 10px;
            background: radial-gradient(circle, rgba(147, 51, 234, 0.3), transparent 70%);
            border-radius: 50%;
            animation: floatParticle 12s infinite ease-in-out;
        }

        .glow-particle:nth-child(1) {
            top: 20%; left: 30%; animation-delay: 0s;
        }
        .glow-particle:nth-child(2) {
            top: 50%; left: 60%; animation-delay: 2s;
        }
        .glow-particle:nth-child(3) {
            top: 70%; left: 20%; animation-delay: 4s;
        }

        @keyframes floatParticle {
            0% { transform: translateY(0) scale(1); opacity: 0.2; }
            50% { transform: translateY(-30px) scale(1.3); opacity: 0.5; }
            100% { transform: translateY(0) scale(1); opacity: 0.2; }
        }

        /* About Content Sections */
        .about-section {
            padding: 8rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .about-section:nth-child(even) {
            background: linear-gradient(135deg, rgba(15, 15, 35, 0.6) 0%, rgba(5, 5, 15, 0.8) 100%);
        }

        .about-section:nth-child(odd) {
            background: linear-gradient(135deg, rgba(5, 5, 15, 0.8) 0%, rgba(10, 10, 20, 0.9) 100%);
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
            z-index: -1;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.8rem;
            background: rgba(147, 51, 234, 0.1);
            border: 1px solid rgba(147, 51, 234, 0.2);
            border-radius: 50px;
            color: #a855f7;
            font-size: 0.85rem;
            font-weight: 400;
            margin-bottom: 2rem;
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(147, 51, 234, 0.1);
            position: relative;
            overflow: hidden;
        }

        .section-badge::after {
            content: '';
            position: absolute;
            top: 0;
            left: -75%;
            width: 50%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
            transform: skewX(-30deg);
            animation: shimmer 2.5s infinite;
        }

        .section-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            margin-bottom: 2rem;
            color: #ffffff;
            line-height: 1.1;
            letter-spacing: -0.03em;
        }

        .section-content {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            font-weight: 300;
            margin-bottom: 3rem;
        }

        .section-content p {
            margin-bottom: 1.5rem;
        }

        .section-content strong {
            color: #60a5fa;
            font-weight: 600;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .stat-card {
            background: rgba(15, 15, 25, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(40px);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.6), rgba(168, 85, 247, 0.6), transparent);
            transform: scaleX(0);
            transition: transform 0.6s ease;
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-card:hover {
            background: rgba(20, 20, 35, 0.9);
            border-color: rgba(96, 165, 250, 0.2);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(96, 165, 250, 0.15);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .stat-desc {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(20, 20, 40, 0.85), rgba(10, 10, 25, 0.95));
            border: 1px solid rgba(168, 85, 247, 0.15);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(40px);
            box-shadow: 0 0 20px rgba(96, 165, 250, 0.05);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.6), rgba(168, 85, 247, 0.6), transparent);
            transform: scaleX(0);
            transition: transform 0.6s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            background: linear-gradient(135deg, rgba(30, 30, 60, 0.95), rgba(15, 15, 30, 0.95));
            box-shadow: 0 0 40px rgba(168, 85, 247, 0.25), 0 0 80px rgba(96, 165, 250, 0.15);
            transform: translateY(-8px);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            background: rgba(96, 165, 250, 0.06);
            border: 1px solid rgba(168, 85, 247, 0.15);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(96, 165, 250, 0.15);
        }

        .feature-card:hover .feature-icon {
            background: rgba(96, 165, 250, 0.12);
            box-shadow: 0 0 30px rgba(168, 85, 247, 0.3), 0 0 40px rgba(96, 165, 250, 0.2);
            transform: scale(1.05);
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #ffffff;
            letter-spacing: -0.01em;
        }

        .feature-desc {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            line-height: 1.6;
            font-weight: 300;
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 2rem;
            text-align: center;
            background: linear-gradient(135deg, rgba(10, 10, 30, 0.9) 0%, rgba(20, 20, 50, 0.9) 100%);
            position: relative;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
            color: #ffffff;
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            letter-spacing: -0.01em;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
            background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
        }

        .btn-secondary {
            background: transparent;
            color: #ffffff;
            padding: 1.2rem 2.5rem;
            border: 1px solid rgba(96, 165, 250, 0.3);
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
            cursor: pointer;
            letter-spacing: -0.01em;
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .btn-secondary:hover::before {
            left: 100%;
        }

        .btn-secondary:hover {
            background: rgba(96, 165, 250, 0.1);
            border-color: rgba(96, 165, 250, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(96, 165, 250, 0.1);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 1rem 1.5rem;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 4rem 1rem 2rem;
            }

            .about-section {
                padding: 4rem 1rem;
            }

            .stats-grid, .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .stat-card, .feature-card {
                padding: 2rem 1.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
        }
           /* Testimonials Section */
        .testimonials {
            padding: 8rem 2rem;
            position: relative;
            overflow: hidden;
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 6rem;
            position: relative;
            z-index: 2;
        }

        .testimonials-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.8rem;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 50px;
            color: #60a5fa;
            font-size: 0.85rem;
            font-weight: 400;
            margin-bottom: 2rem;
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
        }

        .testimonials-badge:hover {
            background: rgba(59, 130, 246, 0.15);
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
        }

        .testimonials-title {
            /* font-size: clamp(3rem, 6vw, 4.5rem); */
            font-size: clamp(3rem, 6vw, 4rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: #ffffff;
            line-height: 1.1;
            letter-spacing: -0.03em;
        }

        .testimonials-title .accent {
            background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { 
                background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
            50% { 
                background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #60a5fa 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
        }

        .testimonials-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Testimonials Grid */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .testimonial-card {
            background: rgba(15, 15, 25, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 3rem 2.5rem;
            position: relative;
            backdrop-filter: blur(40px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6), rgba(147, 51, 234, 0.6), transparent);
            transform: scaleX(0);
            transition: transform 0.6s ease;
        }

        .testimonial-card:hover::before {
            transform: scaleX(1);
        }

        .testimonial-card:hover {
            background: rgba(20, 20, 30, 0.9);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .testimonial-quote {
            font-size: 1.1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            font-weight: 300;
            position: relative;
        }

        .testimonial-quote::before {
            content: '"';
            font-size: 4rem;
            color: rgba(96, 165, 250, 0.3);
            position: absolute;
            top: -1rem;
            left: -0.5rem;
            font-family: serif;
            line-height: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #60a5fa, #a855f7);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1.2rem;
            color: #ffffff;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .author-avatar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .testimonial-card:hover .author-avatar::before {
            transform: translateX(100%);
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.25rem;
            letter-spacing: -0.01em;
        }

        .author-role {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 300;
        }

        .author-company {
            font-size: 0.85rem;
            color: #60a5fa;
            font-weight: 400;
        }

        /* Rating Stars */
        .testimonial-rating {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .star {
            width: 16px;
            height: 16px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
            animation: starTwinkle 3s ease-in-out infinite;
        }

        .star:nth-child(2) { animation-delay: 0.2s; }
        .star:nth-child(3) { animation-delay: 0.4s; }
        .star:nth-child(4) { animation-delay: 0.6s; }
        .star:nth-child(5) { animation-delay: 0.8s; }

        @keyframes starTwinkle {
            0%, 100% { opacity: 0.8; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.1); }
        }

        /* Floating decorations */
        .testimonial-decoration {
            position: absolute;
            border: 1px solid rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.005);
            backdrop-filter: blur(40px);
            pointer-events: none;
        }

        .testimonial-deco-1 {
            width: 200px;
            height: 120px;
            top: 10%;
            right: -60px;
            transform: rotate(15deg);
            animation: float 8s ease-in-out infinite;
        }

        .testimonial-deco-2 {
            width: 150px;
            height: 100px;
            bottom: 15%;
            left: -40px;
            transform: rotate(-20deg);
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(15deg); }
            50% { transform: translateY(-15px) rotate(15deg); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .testimonials {
                padding: 6rem 1rem;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .testimonial-card {
                padding: 2.5rem 1.5rem;
            }

            .testimonials-header {
                margin-bottom: 4rem;
            }

            .testimonial-deco-1, .testimonial-deco-2 {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .testimonials {
                padding: 4rem 1rem;
            }

            .testimonial-card {
                padding: 2rem 1.25rem;
            }

            .testimonial-quote {
                font-size: 1rem;
            }

            .author-avatar {
                width: 48px;
                height: 48px;
                font-size: 1rem;
            }
        }
        
        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, rgba(5, 5, 15, 0.95) 0%, rgba(10, 10, 25, 0.98) 100%);
            border-top: 1px solid rgba(96, 165, 250, 0.1);
            position: relative;
            overflow: hidden;
            margin-top: 6rem;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at 20% 50%, rgba(96, 165, 250, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
            z-index: -1;
        }

        .footer-grid-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: -1;
            opacity: 0.3;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 2rem 2rem;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand {
            grid-column: span 1;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #a855f7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(168, 85, 247, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .social-link:hover::before {
            opacity: 1;
        }

        .social-link:hover {
            color: #ffffff;
            border-color: rgba(96, 165, 250, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(96, 165, 250, 0.2);
        }

        .social-link svg {
            width: 20px;
            height: 20px;
            z-index: 1;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footer-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 2rem;
            letter-spacing: -0.01em;
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 1px;
            background: linear-gradient(90deg, #60a5fa, #a855f7);
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 1px;
            background: #60a5fa;
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
            padding-left: 8px;
        }

        .footer-links a:hover::before {
            width: 20px;
        }

        .footer-newsletter {
            grid-column: span 1;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .newsletter-input {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 1rem;
            color: #ffffff;
            font-size: 0.9rem;
            font-family: inherit;
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .newsletter-input:focus {
            outline: none;
            border-color: rgba(96, 165, 250, 0.5);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 20px rgba(96, 165, 250, 0.1);
        }

        .newsletter-btn {
            background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
            color: #ffffff;
            border: none;
            border-radius: 8px;
            padding: 1rem 1.5rem;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(96, 165, 250, 0.2);
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(96, 165, 250, 0.3);
            background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 2rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            font-weight: 400;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: #60a5fa;
        }

        .footer-glow {
            position: absolute;
            top: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(96, 165, 250, 0.4) 25%, 
                rgba(168, 85, 247, 0.4) 50%, 
                rgba(236, 72, 153, 0.4) 75%, 
                transparent 100%);
            animation: footerGlow 4s ease-in-out infinite;
        }

        @keyframes footerGlow {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.8; }
        }

        /* Floating particles */
        .footer-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: radial-gradient(circle, rgba(96, 165, 250, 0.6), transparent 70%);
            border-radius: 50%;
            animation: floatUp 8s infinite ease-in-out;
        }

        .particle:nth-child(1) {
            left: 20%;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            left: 50%;
            animation-delay: 2s;
        }

        .particle:nth-child(3) {
            left: 80%;
            animation-delay: 4s;
        }

        @keyframes floatUp {
            0% {
                transform: translateY(100px) scale(0);
                opacity: 0;
            }
            50% {
                transform: translateY(-50px) scale(1);
                opacity: 1;
            }
            100% {
                transform: translateY(-200px) scale(0);
                opacity: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }

            .footer-brand {
                grid-column: span 2;
            }

            .footer-newsletter {
                grid-column: span 2;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                padding: 4rem 1.5rem 2rem;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-brand,
            .footer-newsletter {
                grid-column: span 1;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .footer-legal {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer-social {
                justify-content: center;
            }

            .footer-legal {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Demo styles to show the footer */
        .demo-content {
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #000000 0%, #0f0f23 100%);
        }

        .demo-text {
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.2rem;
        }