    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --bg-color: #0B0C10;
        --primary: #6C63FF;
        --secondary: #00E5FF;
        --light-text: #F5F5F5;
        --gray-text: #CFCFCF;
        --accent: #8A2BE2;
    }

    body {
        font-family: 'Poppins', sans-serif;
        background-color: var(--bg-color);
        color: var(--light-text);
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Cosmic Background */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle at 20% 80%, rgba(108, 99, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
        z-index: -1;
    }

    /* Stars Animation */
    .stars {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: -1;
    }

    .star {
        position: absolute;
        width: 2px;
        height: 2px;
        background: var(--light-text);
        border-radius: 50%;
        animation: twinkle 3s infinite;
    }

    @keyframes twinkle {

        0%,
        100% {
            opacity: 0.3;
        }

        50% {
            opacity: 1;
        }
    }

    /* Navigation */
    nav {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(11, 12, 16, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 1rem 0;
        transition: all 0.3s ease;
    }

    nav.scrolled {
        background: rgba(11, 12, 16, 0.98);
        box-shadow: 0 2px 20px rgba(108, 99, 255, 0.2);
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem;
    }

    .logo {
        font-family: 'Orbitron', monospace;
        font-size: 1.8rem;
        font-weight: 900;
        color: var(--primary);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .logo:hover {
        color: var(--secondary);
        text-shadow: 0 0 20px var(--secondary);
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

    .nav-links a {
        color: var(--light-text);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .nav-links a:hover {
        color: var(--secondary);
    }

    /* Mobile Menu */
    .mobile-menu {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }

    .mobile-menu span {
        width: 25px;
        height: 3px;
        background: var(--light-text);
        margin: 3px 0;
        transition: 0.3s;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
    }

    .hero-content h1 {
        font-family: 'Orbitron', monospace;
        font-size: 4rem;
        font-weight: 900;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: glow 2s ease-in-out infinite alternate;
    }

    @keyframes glow {
        from {
            filter: drop-shadow(0 0 20px rgba(108, 99, 255, 0.5));
        }

        to {
            filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.8));
        }
    }

    .hero-content p {
        font-size: 1.3rem;
        color: var(--gray-text);
        margin-bottom: 2rem;
        max-width: 600px;
    }

    .cta-button {
        display: inline-block;
        padding: 1rem 2rem;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        color: var(--light-text);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
    }

    /* Sections */
    section {
        padding: 5rem 0;
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .section-title {
        font-family: 'Orbitron', monospace;
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 3rem;
        color: var(--primary);
    }

    /* About Section */
    .about-content {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .about-content p {
        font-size: 1.1rem;
        color: var(--gray-text);
        margin-bottom: 1.5rem;
    }

    /* Services Section */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .service-card {
        background: rgba(255, 255, 255, 0.05);
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(108, 99, 255, 0.2);
    }

    .service-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 40px rgba(108, 99, 255, 0.2);
    }

    .service-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: var(--secondary);
    }

    .service-card h3 {
        font-family: 'Orbitron', monospace;
        color: var(--primary);
        margin-bottom: 1rem;
    }

    /* Projects Section */
    .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .project-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 229, 255, 0.2);
    }

    .project-card:hover {
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(0, 229, 255, 0.3);
    }

    .project-image {
        height: 200px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: var(--light-text);
    }

    .project-info {
        padding: 1.5rem;
    }

    .project-info h3 {
        font-family: 'Orbitron', monospace;
        color: var(--secondary);
        margin-bottom: 0.5rem;
    }

    /* Contact Section */
    .contact-form {
        max-width: 600px;
        margin: 0 auto;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--light-text);
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(108, 99, 255, 0.3);
        border-radius: 10px;
        color: var(--light-text);
        font-family: 'Poppins', sans-serif;
        transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 20px rgba(108, 99, 255, 0.3);
    }

    .submit-btn {
        width: 100%;
        padding: 1rem;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: var(--light-text);
        border: none;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
    }

    /* Footer */
    footer {
        text-align: center;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.05);
        color: var(--gray-text);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .mobile-menu {
            display: flex;
        }

        .hero-content h1 {
            font-size: 2.5rem;
        }

        .hero-content p {
            font-size: 1.1rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .services-grid,
        .projects-grid {
            grid-template-columns: 1fr;
        }
    }