
        @import url('https://fonts.googleapis.com/css2?family=Clash+Display:wght@400;500;600;700&display=swap');
        
        :root {
            --primary-dark: #1a1a1a;
            --primary-light: #ffffff;
            --accent-cyan: #00d4ff;
            --accent-coral: #ff6b6b;
            --neutral-gray: #f8f9fa;
            --text-gray: #6b7280;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: var(--primary-dark);
            color: var(--primary-light);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        .clash-display {
            font-family: 'Clash Display', sans-serif;
        }
        
        .jetbrains-mono {
            font-family: 'JetBrains Mono', monospace;
        }
        
        /* 3D Canvas */
        #three-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        /* Navigation */
        .nav-glass {
            background: rgba(153, 152, 152, 0.195);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .nav-item {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-item::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-cyan);
            transition: width 0.3s ease;
        }
        
        .nav-item:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero-text {
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-coral));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .typewriter-cursor {
            display: inline-block;
            width: 3px;
            height: 1.2em;
            background: var(--accent-cyan);
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
        
        /* Project Glider */
        .project-glider {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .project-glider::-webkit-scrollbar {
            display: none;
        }
        
        .project-card {
            min-width: 400px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .project-card:hover {
            transform: translateY(-8px) rotateX(5deg);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
            border-color: var(--accent-cyan);
        }
        
        .project-preview {
            width: 100%;
            height: 200px;
            background: var(--primary-dark);
            position: relative;
            overflow: hidden;
        }
        
        .project-iframe {
            width: 100%;
            height: 100%;
            border: none;
            transform: scale(0.8);
            transform-origin: top left;
        }
        
        /* Skills Chart */
        .skills-container {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
        }
        
      /* Contact Input Fields */
.contact-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.contact-input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 213, 255, 0);
}

/* Box container for animated background */
.box {
    position: relative;
    border-radius: 20px;
    z-index: 0;
    overflow: hidden;
    scale: 0.9;
}

/* Outer glow rotating animation */
.box::before {
    content: "";
    position: absolute;
    inset: -225px; /* Slightly larger than the box */
    border-radius: 22px;
    background: conic-gradient(
        from 0deg,
        transparent,
        #00f0ff,
        transparent,
        transparent,
        #ff0000,
        transparent,
        transparent,
        #00f0ff,
        transparent,
        transparent,
        #ff0000,
        transparent,
        transparent
    );

    /* background: linear-gradient(
        #00f0ff,
        #00f0ff,
        transparent,
        transparent,
        #ff0000,
        #ff0000
    ); 
    */
    filter: drop-shadow(0 5px 50px #000);
    animation: rotating 10s linear infinite;
    z-index: 0;
}

/* Inner container mask */
.box::after {
    content: "";
    /* height: 2* max-content;
    width: 2* max-content; */
    position: absolute;
    inset: 8px;
    /* inset: 200px; */
    background: #2d2d39;
    border-radius: 15px;
    border: 8px solid #25252b;
    z-index: 1;
}

/* Rotating keyframes */
@keyframes rotating {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-coral));
            border: none;
            border-radius: 8px;
            padding: 12px 24px;
            color: var(--primary-dark);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
        }
        
        .btn-primary::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;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }
        .stagger-3 { animation-delay: 0.3s; }
        .stagger-4 { animation-delay: 0.4s; }
        
        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .project-card {
                min-width: 300px;
                height: 250px;
            }
            
            .hero-text {
                font-size: 2.5rem;
            }
        }
        
        /* Scroll Progress */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-coral));
            z-index: 1000;
            transition: width 0.1s ease;
        }