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

        :root {
            --primary: #4361ee;
            --secondary: #3a0ca3;
            --accent: #7209b7;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #4cc9f0;
            --gradient: linear-gradient(135deg, #4361ee, #3a0ca3, #7209b7);
            --neon-blue: #00f7ff;
            --neon-pink: #ff00ea;
            --neon-purple: #bd00ff;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: radial-gradient(circle at center, #0c1120 0%, #050812 100%);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
            perspective: 1000px;
        }

        body::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(67, 97, 238, 0.1) 0%, transparent 30%),
                radial-gradient(circle at 90% 80%, rgba(114, 9, 183, 0.1) 0%, transparent 30%),
                radial-gradient(circle at 50% 50%, rgba(76, 201, 240, 0.05) 0%, transparent 50%);
            z-index: -2;
            animation: pulse 8s infinite alternate;
        }

        .grid-overlay {
            position: fixed;
            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;
            pointer-events: none;
        }

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

        /* Header Styles */
        header {
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(67, 97, 238, 0.3);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
        }

        .scrolled {
            padding: 12px 0;
            background: rgba(15, 23, 42, 0.95);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 2rem;
            font-weight: 700;
            color: var(--light);
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            position: relative;
            z-index: 1;
        }

        .logo i {
            color: var(--success);
            text-shadow: 0 0 10px var(--success);
            animation: glow 1.5s ease-in-out infinite alternate;
        }

        .logo-text {
            position: relative;
            background: linear-gradient(to right, #fff, var(--success));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 5px rgba(76, 201, 240, 0.5));
        }

        .logo::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient);
            border-radius: 3px;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }

        .logo:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
            font-size: 1.1rem;
        }

        .nav-links a:hover {
            color: var(--success);
            text-shadow: 0 0 8px rgba(76, 201, 240, 0.7);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--success);
            transition: width 0.3s ease;
        }

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

        .cta-button {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 20px rgba(67, 97, 238, 0.4);
            position: relative;
            overflow: hidden;
            z-index: 1;
            letter-spacing: 0.5px;
            text-decoration: none;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
            z-index: -1;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(67, 97, 238, 0.6);
        }

        .cta-button:hover::before {
            left: 100%;
        }

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

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 25px;
            font-weight: 800;
            background: linear-gradient(to right, #fff, #4cc9f0, #bd00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Orbitron', sans-serif;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
            letter-spacing: -1px;
            animation: textFloat 6s ease-in-out infinite;
        }

        .hero p {
            font-size: 1.7rem;
            max-width: 800px;
            margin: 0 auto 50px;
            color: #cbd5e1;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            font-weight: 300;
            animation: fadeInUp 1s ease-out forwards;
            opacity: 0;
            animation-delay: 0.5s;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 40px;
            animation: fadeInUp 1s ease-out forwards;
            opacity: 0;
            animation-delay: 0.7s;
        }

        .secondary-button {
            background: transparent;
            color: var(--light);
            border: 2px solid var(--success);
            padding: 14px 30px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 0 15px rgba(76, 201, 240, 0.3);
        }

        .secondary-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(76, 201, 240, 0.2), transparent);
            transition: 0.5s;
            z-index: -1;
        }

        .secondary-button:hover {
            background: rgba(76, 201, 240, 0.15);
            transform: translateY(-5px);
            box-shadow: 0 0 25px rgba(76, 201, 240, 0.5);
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
        }

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

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(30px);
            opacity: 0.4;
            animation: float 15s infinite linear;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--neon-blue);
            top: 10%;
            left: 10%;
            animation-duration: 20s;
        }

        .shape-2 {
            width: 400px;
            height: 400px;
            background: var(--neon-purple);
            top: 50%;
            right: 15%;
            animation-duration: 25s;
            animation-delay: -5s;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            background: var(--neon-pink);
            bottom: 20%;
            left: 25%;
            animation-duration: 15s;
            animation-delay: -10s;
        }

        /* Products Section */
        .products {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .section-title h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            display: inline-block;
            background: linear-gradient(to right, #4361ee, #4cc9f0, #bd00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: fadeInUp 1s ease-out forwards;
            opacity: 0;
        }

        .section-title p {
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.2rem;
            animation: fadeInUp 1s ease-out forwards;
            opacity: 0;
            animation-delay: 0.3s;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: var(--gradient);
            border-radius: 3px;
            box-shadow: 0 0 15px rgba(67, 97, 238, 0.5);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
        }

        .product-card {
            background: rgba(30, 41, 59, 0.6);
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(67, 97, 238, 0.3);
            transform-style: preserve-3d;
            perspective: 1000px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            opacity: 1;
        }

        

        .product-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-color: rgba(67, 97, 238, 0.6);
        }

        .product-icon {
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            background: rgba(15, 23, 42, 0.5);
            position: relative;
            overflow: hidden;
        }

        .product-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0.2;
            z-index: -1;
        }

        .product-icon i {
            background: linear-gradient(to bottom, #fff, var(--success));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 8px rgba(76, 201, 240, 0.5));
            animation: iconPulse 3s infinite alternate;
        }

        .product-content {
            padding: 30px;
        }

        .product-content h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--light);
            font-weight: 700;
        }

        .product-content p {
            color: #94a3b8;
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            background: rgba(15, 23, 42, 0.6);
            border-top: 1px solid rgba(67, 97, 238, 0.2);
        }

        .version {
            background: rgba(76, 201, 240, 0.15);
            color: var(--success);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .product-link {
            color: var(--success);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-shadow: 0 0 5px rgba(76, 201, 240, 0.3);
        }

        .product-link:hover {
            gap: 15px;
            text-shadow: 0 0 10px rgba(76, 201, 240, 0.7);
        }

        .product-link i {
            transition: transform 0.3s ease;
        }

        .product-link:hover i {
            transform: translateX(5px);
        }

        /* Features Section */
        .features {
            padding: 120px 0;
            background: rgba(15, 23, 42, 0.4);
            position: relative;
            overflow: hidden;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 30% 70%, rgba(114, 9, 183, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 70% 30%, rgba(67, 97, 238, 0.1) 0%, transparent 40%);
            z-index: -1;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            text-align: center;
            padding: 40px 30px;
            background: rgba(30, 41, 59, 0.6);
            border-radius: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(67, 97, 238, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out forwards;
        }

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

        .feature-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border-color: rgba(67, 97, 238, 0.6);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.8rem;
            background: var(--gradient);
            border-radius: 50%;
            color: white;
            box-shadow: 0 0 20px rgba(67, 97, 238, 0.5);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(67, 97, 238, 0.7);
        }

        .feature-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--light);
            font-weight: 700;
        }

        .feature-card p {
            color: #94a3b8;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* Footer */
        footer {
            padding: 80px 0 30px;
            background: rgba(15, 23, 42, 0.9);
            border-top: 1px solid rgba(67, 97, 238, 0.3);
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: 1.6rem;
            margin-bottom: 25px;
            color: var(--light);
            position: relative;
            padding-bottom: 15px;
            font-weight: 700;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(67, 97, 238, 0.5);
        }

        .footer-column p {
            color: #94a3b8;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.1rem;
        }

        .footer-links a:hover {
            color: var(--success);
            gap: 18px;
            text-shadow: 0 0 5px rgba(76, 201, 240, 0.3);
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 25px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(67, 97, 238, 0.2);
            color: var(--light);
            transition: all 0.3s ease;
            font-size: 1.3rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .social-links a:hover {
            background: var(--gradient);
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(67, 97, 238, 0.5);
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(67, 97, 238, 0.3);
            color: #94a3b8;
            font-size: 1rem;
        }

        @keyframes textFloat {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }

        @keyframes fadeInUp {
            0% { opacity: 0; transform: translateY(50px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes glow {
            0% { text-shadow: 0 0 5px var(--success); }
            100% { text-shadow: 0 0 20px var(--success), 0 0 30px rgba(76, 201, 240, 0.6); }
        }

        @keyframes iconPulse {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }

        @keyframes pulse {
            0% { opacity: 0.2; }
            50% { opacity: 0.4; }
            100% { opacity: 0.2; }
        }

        /* 3D Effects */
        .parallax-container {
            transform-style: preserve-3d;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .hero p {
                font-size: 1.4rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 120px 0 80px;
                min-height: auto;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .feature-card, .product-card {
                padding: 30px 20px;
            }
            
            .product-icon {
                height: 180px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .logo {
                font-size: 1.6rem;
            }
            
            .cta-button{
                padding: 12px 20px;
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--neon-blue);
            top: 10%;
            left: 10%;
            animation-duration: 20s;
            display: none;
        }

        .shape-2 {
            width: 400px;
            height: 400px;
            background: var(--neon-purple);
            top: 50%;
            right: 15%;
            animation-duration: 25s;
            animation-delay: -5s;
            display: none;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            background: var(--neon-pink);
            bottom: 20%;
            left: 25%;
            animation-duration: 15s;
            animation-delay: -10s;
            display: none;
        }
        }
        html
        {
            scroll-behavior: smooth;
        }