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

        :root {
            /* Cyber Professional Color Palette - Dark Mode (Default) */
            --primary-cyber: #00ff88;
            --secondary-cyber: #0066ff;
            --accent-cyber: #ff0066;
            --terminal-green: #00ff41;
            --matrix-green: #1db954;
            --cyber-blue: #00d4ff;
            --warning-orange: #ff8c00;
            
            /* Dark Professional Theme */
            --bg-primary: #0a0a0f;
            --bg-secondary: #1a1a24;
            --bg-surface: #252538;
            --bg-elevated: #2d2d42;
            
            /* Text Colors */
            --text-primary: #ffffff;
            --text-secondary: #b8bcc8;
            --text-muted: #6b7280;
            --text-accent: var(--primary-cyber);
            
            /* Grid and Borders */
            --border-color: #333344;
            --grid-color: rgba(0, 255, 136, 0.1);
            
            /* Glows and Effects */
            --glow-primary: 0 0 20px rgba(0, 255, 136, 0.3);
            --glow-secondary: 0 0 30px rgba(0, 100, 255, 0.2);
        }

        /* Light Cyber Theme */
        [data-theme="light"] {
            /* Vibrant Light Theme Colors - Like Original */
            --primary-cyber: #6366f1;
            --secondary-cyber: #8b5cf6;
            --accent-cyber: #06b6d4;
            --terminal-green: #10b981;
            --matrix-green: #059669;
            --cyber-blue: #3b82f6;
            --warning-orange: #f59e0b;
            
            /* Light Professional Theme */
            --bg-primary: #ffffff;
            --bg-secondary: #f9fafb;
            --bg-surface: #ffffff;
            --bg-elevated: #f8fafc;
            
            /* Text Colors */
            --text-primary: #1f2937;
            --text-secondary: #6b7280;
            --text-muted: #9ca3af;
            --text-accent: var(--primary-cyber);
            
            /* Grid and Borders */
            --border-color: #e5e7eb;
            --grid-color: rgba(99, 102, 241, 0.1);
            
            /* Glows and Effects */
            --glow-primary: 0 0 20px rgba(99, 102, 241, 0.3);
            --glow-secondary: 0 0 30px rgba(139, 92, 246, 0.2);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
        }

        /* Hide scrollbar for all browsers */
        html {
            scrollbar-width: none;
            -ms-overflow-style: none;
            scroll-behavior: smooth;
        }

        html::-webkit-scrollbar {
            display: none;
        }

        /* Cyber Grid Background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: 0;
            animation: gridShift 20s linear infinite;
        }

        [data-theme="light"] body::before {
            background-image: 
                linear-gradient(rgba(99, 102, 241, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(99, 102, 241, 0.08) 1px, transparent 1px);
        }

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

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--primary-cyber);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.1s ease;
            transform: translate(-50%, -50%);
            box-shadow: var(--glow-primary);
        }

        .cursor-follower {
            width: 8px;
            height: 8px;
            background: var(--primary-cyber);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transition: all 0.15s ease;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 10px var(--primary-cyber);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 2rem;
            background: rgba(10, 10, 15, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        [data-theme="light"] nav {
            background: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid rgba(99, 102, 241, 0.1);
        }

        nav::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-cyber), transparent);
            opacity: 0.5;
        }

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

        .logo {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-cyber);
            text-shadow: 0 0 10px var(--primary-cyber);
            position: relative;
        }

        /* Vibrant logo for light theme */
        [data-theme="light"] .logo {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
        }

        .logo::before {
            content: '> ';
            color: var(--cyber-blue);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
            font-family: 'JetBrains Mono', monospace;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }

        .nav-links a:hover {
            color: var(--primary-cyber);
            background: rgba(0, 255, 136, 0.05);
            box-shadow: inset 0 0 10px rgba(0, 255, 136, 0.1);
        }

        .nav-links a::before {
            content: '[ ';
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-links a::after {
            content: ' ]';
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-links a:hover::before,
        .nav-links a:hover::after {
            opacity: 1;
        }

        .theme-toggle {
            background: rgba(0, 255, 136, 0.1);
            border: 2px solid var(--primary-cyber);
            border-radius: 4px;
            width: 50px;
            height: 40px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'JetBrains Mono', monospace;
            color: var(--primary-cyber);
            font-size: 1rem;
        }

        .theme-toggle:hover {
            background: var(--primary-cyber);
            color: var(--bg-primary);
            box-shadow: var(--glow-primary);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(0, 100, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 102, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .terminal-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .terminal-line {
            position: absolute;
            width: 2px;
            background: linear-gradient(transparent, var(--primary-cyber), transparent);
            animation: terminalScan 3s linear infinite;
            opacity: 0.6;
        }

        .terminal-line:nth-child(1) {
            left: 20%;
            height: 200px;
            animation-delay: 0s;
        }

        .terminal-line:nth-child(2) {
            right: 25%;
            height: 150px;
            animation-delay: 1s;
        }

        .terminal-line:nth-child(3) {
            left: 60%;
            height: 180px;
            animation-delay: 2s;
        }

        @keyframes terminalScan {
            0% {
                top: -200px;
                opacity: 0;
            }
            50% {
                opacity: 0.6;
            }
            100% {
                top: 100%;
                opacity: 0;
            }
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            max-width: 900px;
            padding: 0 2rem;
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-cyber), var(--cyber-blue), var(--secondary-cyber));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleReveal 1s ease-out;
        }

        /* Enhanced gradient for light theme */
        [data-theme="light"] .hero-title {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
            opacity: 0;
            animation: subtitleReveal 1s ease-out 0.5s forwards;
            font-family: 'JetBrains Mono', monospace;
        }

        .hero-tagline {
            font-size: 1.2rem;
            color: var(--primary-cyber);
            margin-bottom: 3rem;
            opacity: 0;
            animation: subtitleReveal 1s ease-out 0.8s forwards;
            font-family: 'JetBrains Mono', monospace;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 100, 255, 0.2));
            color: var(--primary-cyber);
            text-decoration: none;
            border: 2px solid var(--primary-cyber);
            border-radius: 4px;
            font-weight: 600;
            font-family: 'JetBrains Mono', monospace;
            transition: all 0.3s ease;
            opacity: 0;
            animation: buttonReveal 1s ease-out 1s forwards;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Vibrant CTA button for light theme */
        [data-theme="light"] .cta-button {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
            border: 2px solid #6366f1;
            color: #6366f1;
        }

        [data-theme="light"] .cta-button:hover {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
        }

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

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

        .cta-button:hover {
            background: var(--primary-cyber);
            color: var(--bg-primary);
            box-shadow: var(--glow-primary);
            transform: translateY(-2px);
        }

        /* Floating Cyber Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            border: 1px solid var(--primary-cyber);
            opacity: 0.1;
            animation: floatCyber 8s ease-in-out infinite;
        }

        .floating-element.hex {
            width: 60px;
            height: 60px;
            background: transparent;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            border: none;
            background: rgba(0, 255, 136, 0.1);
        }

        .floating-element.square {
            width: 40px;
            height: 40px;
            background: transparent;
            transform: rotate(45deg);
        }

        .floating-element.circuit {
            width: 80px;
            height: 20px;
            background: linear-gradient(90deg, transparent 40%, var(--primary-cyber) 50%, transparent 60%);
            border: none;
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 70%;
            right: 10%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            top: 40%;
            left: 80%;
            animation-delay: 4s;
        }

        .floating-element:nth-child(4) {
            top: 20%;
            right: 30%;
            animation-delay: 1s;
        }

        .floating-element:nth-child(5) {
            bottom: 20%;
            left: 20%;
            animation-delay: 3s;
        }

        @keyframes floatCyber {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.1;
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
                opacity: 0.3;
            }
        }

        /* Section Styles */
        .section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
            position: relative;
            z-index: 10;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, var(--primary-cyber), var(--cyber-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'JetBrains Mono', monospace;
            position: relative;
        }

        /* Vibrant gradients for light theme */
        [data-theme="light"] .section-title {
            background: linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title::before {
            content: '// ';
            color: var(--text-muted);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-cyber), transparent);
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: 20px;
            bottom: 20px;
            background: linear-gradient(135deg, var(--primary-cyber), var(--cyber-blue));
            opacity: 0.1;
            z-index: -1;
            transition: all 0.3s ease;
        }

        .about-image::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: 10px;
            bottom: 10px;
            border: 2px solid var(--primary-cyber);
            opacity: 0.3;
            z-index: -1;
            transition: all 0.3s ease;
        }

        .about-image:hover::before {
            transform: rotate(3deg) scale(1.05);
            opacity: 0.2;
        }

        .about-image:hover::after {
            transform: rotate(-3deg) scale(1.02);
            opacity: 0.6;
        }

        .about-image img {
            width: 100%;
            border-radius: 4px;
            transition: all 0.3s ease;
            filter: grayscale(0.3) contrast(1.1);
        }

        .about-image:hover img {
            filter: grayscale(0) contrast(1.2);
            transform: scale(1.02);
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-family: 'JetBrains Mono', monospace;
        }

        .about-text h3::before {
            content: '$ ';
            color: var(--primary-cyber);
        }

        .about-text p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* Skills Section */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .skill-card {
            background: var(--bg-secondary);
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .skill-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-cyber), var(--cyber-blue));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

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

        .skill-card:hover {
            transform: translateY(-10px);
            background: var(--bg-surface);
            border-color: var(--primary-cyber);
            box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
        }

        .skill-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
        }

        .skill-card h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-family: 'JetBrains Mono', monospace;
        }

        .skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .skill-tag {
            background: rgba(0, 255, 136, 0.1);
            color: var(--primary-cyber);
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 500;
            font-family: 'JetBrains Mono', monospace;
            border: 1px solid rgba(0, 255, 136, 0.2);
            transition: all 0.3s ease;
        }

        .skill-tag:hover {
            background: rgba(0, 255, 136, 0.2);
            box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
        }

        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .project-card {
            background: var(--bg-secondary);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            position: relative;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 100, 255, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .project-card:hover::before {
            opacity: 1;
        }

        .project-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-cyber);
            box-shadow: 0 25px 50px rgba(0, 255, 136, 0.1);
        }

        .project-image {
            height: 200px;
            background: linear-gradient(135deg, var(--bg-surface), var(--bg-elevated));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-cyber);
            font-size: 4rem;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border-color);
        }

        .project-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
            transition: left 0.5s;
        }

        .project-card:hover .project-image::after {
            left: 100%;
        }

        .project-content {
            padding: 2rem;
        }

        .project-content h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-family: 'JetBrains Mono', monospace;
        }

        .project-content p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .project-links {
            display: flex;
            gap: 1rem;
        }

        .project-link {
            padding: 0.5rem 1rem;
            border: 2px solid var(--primary-cyber);
            color: var(--primary-cyber);
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            font-family: 'JetBrains Mono', monospace;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }

        .project-link:hover {
            background: var(--primary-cyber);
            color: var(--bg-primary);
            box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
        }

        /* Resume Section */
        .resume-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .resume-column h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--text-primary);
            position: relative;
            padding-bottom: 0.5rem;
            font-family: 'JetBrains Mono', monospace;
        }

        .resume-column h3::before {
            content: '## ';
            color: var(--primary-cyber);
        }

        .resume-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-cyber), var(--cyber-blue));
        }

        .resume-item {
            margin-bottom: 3rem;
            position: relative;
            padding-left: 2rem;
            border-left: 2px solid var(--border-color);
        }

        .resume-item::before {
            content: '';
            position: absolute;
            left: -6px;
            top: 0;
            width: 10px;
            height: 10px;
            background: var(--primary-cyber);
            border-radius: 50%;
            border: 2px solid var(--bg-primary);
            box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
        }

        .resume-item h4 {
            font-size: 1.3rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-family: 'JetBrains Mono', monospace;
        }

        .resume-item .company {
            color: var(--primary-cyber);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-family: 'JetBrains Mono', monospace;
        }

        .resume-item .date {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            font-family: 'JetBrains Mono', monospace;
        }

        .resume-item .date::before {
            content: '[';
            color: var(--primary-cyber);
        }

        .resume-item .date::after {
            content: ']';
            color: var(--primary-cyber);
        }

        .resume-item p {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Contact Section */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--text-primary);
            font-family: 'JetBrains Mono', monospace;
        }

        .contact-info h3::before {
            content: '> ';
            color: var(--primary-cyber);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
            padding: 1rem;
            border-radius: 4px;
        }

        .contact-item:hover {
            background: rgba(0, 255, 136, 0.05);
            transform: translateX(10px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-cyber), var(--cyber-blue));
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bg-primary);
            margin-right: 1rem;
            font-size: 1.2rem;
            font-family: 'JetBrains Mono', monospace;
        }

        .contact-form {
            background: var(--bg-secondary);
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            font-weight: 500;
            font-family: 'JetBrains Mono', monospace;
        }

        .form-group label::before {
            content: '$ ';
            color: var(--primary-cyber);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: 4px;
            background: var(--bg-primary);
            color: var(--text-primary);
            transition: all 0.3s ease;
            font-family: 'JetBrains Mono', monospace;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-cyber);
            box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 100, 255, 0.2));
            color: var(--primary-cyber);
            border: 2px solid var(--primary-cyber);
            border-radius: 4px;
            font-weight: 600;
            font-family: 'JetBrains Mono', monospace;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            background: var(--primary-cyber);
            color: var(--bg-primary);
            box-shadow: var(--glow-primary);
        }

        /* Scroll Progress */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-cyber), var(--cyber-blue), var(--secondary-cyber));
            z-index: 10000;
            transition: width 0.1s ease;
            box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
        }

        /* Vibrant progress bar for light theme */
        [data-theme="light"] .scroll-progress {
            background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4, #10b981);
            box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
        }

        /* Animations */
        @keyframes titleReveal {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

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

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-title {
                font-size: 3rem;
            }

            .about-content,
            .resume-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .section {
                padding: 4rem 1rem;
            }

            .projects-grid,
            .skills-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Terminal Effect */
        .terminal-cursor {
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
/* Enhanced Contact Form Styles - Add to your existing style.css */

/* Form Notifications */
.form-notification {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    border: 2px solid;
    font-family: 'JetBrains Mono', monospace;
    animation: slideIn 0.3s ease-out;
    position: relative;
    backdrop-filter: blur(10px);
}

.form-notification.success {
    background: rgba(0, 255, 65, 0.1);
    border-color: var(--terminal-green);
    color: var(--terminal-green);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.form-notification.error {
    background: rgba(255, 0, 102, 0.1);
    border-color: var(--accent-cyber);
    color: var(--accent-cyber);
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.2);
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}

.notification-icon {
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.notification-message {
    flex: 1;
    line-height: 1.5;
}

.notification-message a {
    color: inherit;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.notification-message a:hover {
    opacity: 0.8;
}

.notification-close {
    background: none;
    border: 1px solid currentColor;
    color: inherit;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    flex-shrink: 0;
}

.notification-close:hover {
    background: currentColor;
    color: var(--bg-primary);
    transform: scale(1.1);
}

.form-notification.fade-out {
    animation: fadeOut 0.3s ease-out forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Enhanced Submit Button States */
.submit-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.9;
}

.submit-btn.loading {
    position: relative;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.submit-btn.success {
    animation: successPulse 0.6s ease-out;
}

.submit-btn.error {
    animation: errorShake 0.6s ease-out;
}

@keyframes spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Enhanced Form Input States */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group.focused label {
    color: var(--primary-cyber);
}

.form-group.focused label::before {
    color: var(--cyber-blue);
}

.form-group input.valid,
.form-group textarea.valid {
    border-color: var(--terminal-green);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.form-group input.invalid,
.form-group textarea.invalid {
    border-color: var(--accent-cyber);
    box-shadow: 0 0 10px rgba(255, 0, 102, 0.2);
}

/* Validation Icons */
.form-group input.valid + .validation-icon,
.form-group textarea.valid + .validation-icon {
    content: '✓';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--terminal-green);
    font-weight: bold;
    pointer-events: none;
}

.form-group input.invalid + .validation-icon,
.form-group textarea.invalid + .validation-icon {
    content: '✗';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-cyber);
    font-weight: bold;
    pointer-events: none;
}

/* Add validation icons after inputs */
.form-group input.valid::after,
.form-group textarea.valid::after {
    content: '✓';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--terminal-green);
    font-weight: bold;
    pointer-events: none;
}

/* Character Counter for Textarea */
.form-group.has-counter {
    position: relative;
}

.form-group.has-counter::after {
    content: attr(data-count);
    position: absolute;
    bottom: -1.5rem;
    right: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.form-group.has-counter.over-limit::after {
    color: var(--accent-cyber);
}

/* Enhanced Hover Effects */
.form-group input:hover:not(:focus),
.form-group textarea:hover:not(:focus) {
    border-color: var(--primary-cyber);
    box-shadow: 0 0 5px rgba(0, 255, 136, 0.1);
}

/* Typing Animation for Placeholders */
.form-group input[data-typing],
.form-group textarea[data-typing] {
    position: relative;
}

/* Focus Glow Effect */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyber);
    box-shadow: 
        0 0 10px rgba(0, 255, 136, 0.2),
        inset 0 0 10px rgba(0, 255, 136, 0.1);
    background: var(--bg-primary);
}

/* Light Theme Enhancements */
[data-theme="light"] .form-notification.success {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #059669;
}

[data-theme="light"] .form-notification.error {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #dc2626;
}

[data-theme="light"] .submit-btn.loading::after {
    border-top-color: #6366f1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .form-notification {
        margin-top: 1rem;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .notification-content {
        gap: 0.8rem;
    }
    
    .notification-close {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    .submit-btn.loading::after {
        width: 14px;
        height: 14px;
        right: 0.8rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .form-notification,
    .submit-btn,
    .form-group input,
    .form-group textarea {
        animation: none;
        transition: none;
    }
    
    .submit-btn.loading::after {
        animation: none;
        content: '...';
        border: none;
        width: auto;
        height: auto;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .form-notification {
        border-width: 3px;
    }
    
    .form-notification.success {
        background: rgba(0, 255, 65, 0.2);
    }
    
    .form-notification.error {
        background: rgba(255, 0, 102, 0.2);
    }
}

/* Print Styles */
@media print {
    .form-notification,
    .submit-btn.loading::after {
        display: none;
    }
}
/* Clickable Project Titles */
.project-title-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.project-title-link:hover {
    color: var(--primary-cyber);
    transform: translateX(5px);
}

.project-title-link:hover::before {
    content: '> ';
    color: var(--cyber-blue);
    font-family: 'JetBrains Mono', monospace;
    position: absolute;
    left: -15px;
    animation: blinkCursor 1s infinite;
}

.project-title-link:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyber), var(--cyber-blue));
    animation: expandLine 0.3s ease-out forwards;
}

/* Light theme support */
[data-theme="light"] .project-title-link:hover {
    color: #6366f1;
}

[data-theme="light"] .project-title-link:hover::before {
    color: #8b5cf6;
}

[data-theme="light"] .project-title-link:hover::after {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

/* Animations */
@keyframes blinkCursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

/* Enhanced hover effect for entire project card when title is hovered */
.project-card:has(.project-title-link:hover) {
    transform: translateY(-15px);
    border-color: var(--primary-cyber);
    box-shadow: 0 30px 60px rgba(0, 255, 136, 0.15);
}

[data-theme="light"] .project-card:has(.project-title-link:hover) {
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.15);
}

/* Fallback for browsers that don't support :has() */
.project-card .project-title-link:hover {
    text-shadow: 0 0 10px var(--primary-cyber);
}

[data-theme="light"] .project-card .project-title-link:hover {
    text-shadow: 0 0 10px #6366f1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .project-title-link:hover::before {
        left: -10px;
    }
    
    .project-title-link:hover {
        transform: translateX(3px);
    }
}

/* Accessibility improvements */
.project-title-link:focus {
    outline: 2px solid var(--primary-cyber);
    outline-offset: 2px;
    border-radius: 2px;
}

[data-theme="light"] .project-title-link:focus {
    outline-color: #6366f1;
}

/* Cursor enhancement */
.project-title-link {
    cursor: pointer;
}

.project-title-link:hover {
    cursor: pointer;
}
/* Add this to your assets/css/style.css - Experience Bullet Points Styling */

/* Experience bullet points styling */
.experience-bullets {
    margin: 1rem 0 0 0;
    padding-left: 1.5rem;
    list-style: none;
    position: relative;
}

.experience-bullets li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

/* Custom cyber-themed bullet points */
.experience-bullets li::before {
    content: '▶';
    color: var(--primary-cyber);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

/* Hover effect for bullet points */
.experience-bullets li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.experience-bullets li:hover::before {
    color: var(--cyber-blue);
    text-shadow: 0 0 8px var(--cyber-blue);
}

/* Alternative bullet styles - uncomment one you prefer */

/* Option 1: Terminal-style bullets */
/*
.experience-bullets li::before {
    content: '> ';
    color: var(--terminal-green);
}
*/

/* Option 2: Hexagon bullets */
/*
.experience-bullets li::before {
    content: '⬢';
    color: var(--primary-cyber);
}
*/

/* Option 3: Circuit-style bullets */
/*
.experience-bullets li::before {
    content: '◈';
    color: var(--cyber-blue);
}
*/

/* Light theme support */
[data-theme="light"] .experience-bullets li::before {
    color: #6366f1;
}

[data-theme="light"] .experience-bullets li:hover::before {
    color: #8b5cf6;
    text-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .experience-bullets {
        padding-left: 1rem;
    }
    
    .experience-bullets li {
        padding-left: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .experience-bullets li::before {
        font-size: 0.7rem;
    }
}
.experience-bullets {
    margin: 1rem 0 0 0;
    padding-left: 1.5rem;
    list-style: none;
    position: relative;
}

.experience-bullets li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.experience-bullets li::before {
    content: '▶';
    color: var(--primary-cyber);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
}