
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --purple-dark: #4C1D95;
            --purple-main: #6B46C1;
            --purple-bright: #9333EA;
            --blue-dark: #1E3A8A;
            --blue-main: #3B82F6;
            --cyan-neon: #00F0FF;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0015;
            color: var(--white);
            overflow-x: hidden;
        }

        /* Starfield Background */
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .star {
            position: absolute;
            background: white;
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(76, 29, 149, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(135deg, var(--purple-bright), var(--cyan-neon));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--cyan-neon);
        }

        .cta-button {
            background: linear-gradient(135deg, var(--purple-bright), var(--purple-main));
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(147, 51, 234, 0.8);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }
img {
    padding: 0;
    display: block;
    margin: 0 auto;
    max-height: 75%;
    max-width: 75%;
}
        /* Sections */
        section {
            position: relative;
            min-height: 50vh;
            padding: 2rem 5%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 1;
        }

        /* Hero Section */
        #home {
            background: radial-gradient(ellipse at center, rgba(147, 51, 234, 0.2) 0%, transparent 70%);
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
            min-height: 50vh;
            padding: 6rem 5%;
        }

        h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--white), var(--cyan-neon));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            font-size: 1.5rem;
            color: #ddd;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .callouts {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .callout {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 600;
            white-space: nowrap;
        }

        .cta-group {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .cta-primary {
            background: linear-gradient(135deg, var(--purple-bright), var(--purple-main));
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 0 30px rgba(147, 51, 234, 0.6);
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 40px rgba(147, 51, 234, 0.9);
        }

        .cta-secondary {
            background: transparent;
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            border: 2px solid var(--purple-bright);
            transition: all 0.3s;
        }

        .cta-secondary:hover {
            background: var(--purple-bright);
            transform: translateY(-3px);
        }

        /* How It Works */
        .how-it-works {
            display: flex;
            gap: 3rem;
            margin-top: 4rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .step {
            text-align: center;
            max-width: 250px;
        }

        .step-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, var(--purple-bright), var(--blue-main));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            box-shadow: 0 0 30px rgba(147, 51, 234, 0.5);
        }

        /* Rocket Animation */
        .rocket {
            position: fixed;
            width: 60px;
            height: 80px;
            font-size: 3rem;
            z-index: 999;
            pointer-events: none;
            opacity: 0;
        }

        @keyframes rocketBlast {
            0% {
                left: -100px;
                bottom: -100px;
                opacity: 1;
                transform: rotate(45deg);
            }
            100% {
                left: calc(100% + 100px);
                top: -100px;
                opacity: 0;
                transform: rotate(45deg);
            }
        }

        .rocket.active {
            animation: rocketBlast 1.5s ease-out forwards;
        }

        /* Gallery Section */
        #gallery {
            background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            width: 100%;
            margin-top: 8rem;
            
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 16/9;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .gallery-item:hover {
            transform: scale(1.05) translateY(-10px);
            box-shadow: 0 0 40px rgba(147, 51, 234, 0.8);
            border-color: var(--purple-bright);
        }

        .gallery-item img, .gallery-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.3);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.8);
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }

        /* B2B Section */
        .b2b-section {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            width: 100%;
            margin-top: 3rem;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
            text-align: center;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 40px rgba(147, 51, 234, 0.4);
            border-color: var(--purple-bright);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .benefit-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--cyan-neon);
        }

        /* About Page */
        #about {
            background: radial-gradient(ellipse at center, rgba(147, 51, 234, 0.15) 0%, transparent 70%);
        }

        .about-content {
            max-width: 900px;
            text-align: center;
            min-height: 50vh;
            padding: 6rem 5%;
        }

        .about-content h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--purple-bright), var(--cyan-neon));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-content p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: #ddd;
        }

        .tech-stack {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            margin: 3rem 0;
        }

        .tech-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 600;
        }

        /* Contact Page */
        #contact {
            background: radial-gradient(ellipse at bottom, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
        }

        .contact-container {
            max-width: 600px;
            width: 100%;
        }

        .contact-container h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-align: center;
            background: linear-gradient(135deg, var(--cyan-neon), var(--purple-bright));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #ddd;
            margin-bottom: 3rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: var(--white);
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--purple-bright);
            box-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--purple-bright), var(--purple-main));
            border: none;
            border-radius: 50px;
            color: var(--white);
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 0 30px rgba(147, 51, 234, 0.5);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 40px rgba(147, 51, 234, 0.8);
        }

        .success-message {
            display: none;
            text-align: center;
            padding: 2rem;
            background: rgba(76, 175, 80, 0.2);
            border: 1px solid #4CAF50;
            border-radius: 15px;
            margin-top: 2rem;
        }

        .success-message.show {
            display: block;
        }

        /* Footer */
        footer {
            background: rgba(26, 0, 51, 0.9);
            padding: 3rem 5%;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .footer-content {
            display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
        }

        .footer-brand {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(135deg, var(--purple-bright), var(--cyan-neon));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-links {
            display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--cyan-neon);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--white);
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: var(--purple-bright);
            transform: translateY(-3px);
        }

        .copyright {
            margin-top: 2rem;
            color: #999;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            .subtitle {
                font-size: 1.2rem;
            }

            nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .b2b-section {
                grid-template-columns: 1fr;
            }

            .how-it-works {
                flex-direction: column;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .cta-group {
                flex-direction: column;
            }
        }

        @media (max-width: 1024px) and (min-width: 769px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Section titles */
        .section-title {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-align: center;
            background: linear-gradient(135deg, var(--purple-bright), var(--cyan-neon));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #ddd;
            margin-bottom: 3rem;
        }
