:root {
            /* Light Theme */
            --light-primary: #6e00ff;
            --light-secondary: #ff2d75;
            --light-dark: #f8f9fa;
            --light-darker: #e9ecef;
            --light-light: #0a0a20;
            --light-accent: #00a8ff;
            --light-code-bg: #ffffff;
            --light-terminal: #f1f3f5;
            --light-terminal-border: #dee2e6;
            --light-success: #28a745;
            --light-warning: #ffc107;
            --light-error: #dc3545;
            --light-card-bg: rgba(255, 255, 255, 0.9);
            --light-card-border: rgba(0, 0, 0, 0.1);
            
            /* Dark Theme */
            --dark-primary: #9d4edd;
            --dark-secondary: #ff7b00;
            --dark-dark: #0a0a20;
            --dark-darker: #050510;
            --dark-light: #f0f0ff;
            --dark-accent: #00f7ff;
            --dark-code-bg: #1e1e3c;
            --dark-terminal: #0f0f1f;
            --dark-terminal-border: #3a3a5a;
            --dark-success: #00ffaa;
            --dark-warning: #ffcc00;
            --dark-error: #ff3366;
            --dark-card-bg: rgba(30, 30, 60, 0.7);
            --dark-card-border: rgba(255, 255, 255, 0.1);
            
            /* Current Theme - Default to Dark */
            --primary: var(--dark-primary);
            --secondary: var(--dark-secondary);
            --dark: var(--dark-dark);
            --darker: var(--dark-darker);
            --light: var(--dark-light);
            --accent: var(--dark-accent);
            --code-bg: var(--dark-code-bg);
            --terminal: var(--dark-terminal);
            --terminal-border: var(--dark-terminal-border);
            --success: var(--dark-success);
            --warning: var(--dark-warning);
            --error: var(--dark-error);
            --card-bg: var(--dark-card-bg);
            --card-border: var(--dark-card-border);
            
            --font-mono: 'Space Mono', monospace;
            --font-sans: 'Space Grotesk', sans-serif;
            --font-heading: 'Space Grotesk', sans-serif;
            
            --glass-blur: 12px;
            --glass-border: 1px solid rgba(255, 255, 255, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--dark);
            color: var(--light);
            font-family: var(--font-sans);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background-color 0.5s ease, color 0.5s ease;
        }

        /* Cosmic Background */
        .cosmic-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            overflow: hidden;
        }

        .stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(110, 0, 255, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255, 45, 117, 0.1) 0%, transparent 20%);
        }

        .star {
            position: absolute;
            background-color: white;
            border-radius: 50%;
            animation: twinkle var(--duration) infinite ease-in-out;
            opacity: var(--opacity);
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
        }

        @keyframes twinkle {
            0%, 100% { 
                opacity: var(--opacity);
                transform: scale(1);
            }
            50% { 
                opacity: calc(var(--opacity) * 0.3);
                transform: scale(0.8);
            }
        }

        .comet {
            position: absolute;
            width: 6px;
            height: 6px;
            background: linear-gradient(90deg, rgba(255,255,255,0.8), transparent);
            border-radius: 50%;
            filter: drop-shadow(0 0 6px rgba(255,255,255,0.8));
            animation: cometFly var(--duration) linear infinite;
            opacity: 0;
        }

        @keyframes cometFly {
            0% {
                transform: translateX(0) translateY(0) rotate(45deg);
                opacity: 1;
            }
            100% {
                transform: translateX(1000px) translateY(-500px) rotate(45deg);
                opacity: 0;
            }
        }

        .nebula {
            position: absolute;
            border-radius: 50%;
            filter: blur(50px);
            opacity: 0.3;
            animation: nebulaPulse 15s infinite alternate;
        }

        @keyframes nebulaPulse {
            0% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.2); opacity: 0.4; }
            100% { transform: scale(1); opacity: 0.3; }
        }

        .planet {
            position: absolute;
            border-radius: 50%;
            filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
            animation: planetOrbit linear infinite;
        }

        @keyframes planetOrbit {
            from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
            to { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--darker);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 1s ease, visibility 1s ease;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loading-logo {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--accent);
            font-family: var(--font-heading);
        }

        .loading-logo i {
            font-size: 3.5rem;
            animation: pulse 2s infinite ease-in-out;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .loading-bar-container {
            width: 300px;
            height: 10px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            margin-bottom: 2rem;
            overflow: hidden;
            position: relative;
        }

        .loading-bar {
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 5px;
            transition: width 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .loading-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.4), 
                transparent);
            animation: loadingShine 2s infinite;
        }

        @keyframes loadingShine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .loading-text {
            font-family: var(--font-mono);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            text-align: center;
            max-width: 300px;
        }

        .loading-progress-text {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            font-family: var(--font-mono);
            font-size: 0.7rem;
            color: white;
        }

        /* Theme Switch */
        .theme-switch {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--card-bg);
            backdrop-filter: blur(var(--glass-blur));
            padding: 8px;
            border-radius: 50px;
            border: var(--glass-border);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .theme-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: none;
            color: var(--light);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .theme-btn:hover {
            transform: scale(1.1);
        }

        .theme-btn.active {
            background: var(--primary);
            color: white;
            box-shadow: 0 0 10px rgba(110, 0, 255, 0.5);
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 10, 32, 0.8);
            backdrop-filter: blur(var(--glass-blur));
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.5s ease;
        }

        body.light-theme header {
            background: rgba(248, 249, 250, 0.9);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--light);
            text-decoration: none;
            font-family: var(--font-heading);
        }

        .logo-icon {
            color: var(--accent);
            font-size: 1.8rem;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            transition: color 0.3s ease;
            font-family: var(--font-heading);
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .mobile-menu-btn:hover {
            transform: rotate(90deg);
        }

        /* Hero Section */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2%;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 400px;
            z-index: 10;
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
            font-family: var(--font-heading);
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.5rem);
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.8);
            opacity: 0;
            animation: fadeIn 1s ease 1s forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .hero-image {
            flex: 1;
            position: relative;
            perspective: 1000px;
            margin-top: 110px;
            /* max-height: 500px; */
            max-width: 500px;
        }

        .hero-image-container {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 120%;
            transform-style: preserve-3d;
            transition: transform 1s ease;
        }

        .hero-image-container:hover {
            transform: rotateY(10deg) rotateX(5deg);
        }

        .hero-image-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.5s ease;
            transform: translateZ(20px);
        }

        .hero-image-container::before,
        .hero-image-container::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 10px;
            transition: all 0.5s ease;
        }

        .hero-image-container::before {
            top: -15px;
            left: -15px;
            border: 2px solid var(--primary);
            opacity: 0.5;
            transform: translateZ(-10px);
        }

        .hero-image-container::after {
            bottom: -15px;
            right: -15px;
            border: 2px solid var(--secondary);
            opacity: 0.5;
            transform: translateZ(-20px);
        }

        .hero-image-container:hover::before {
            transform: translateZ(-10px) rotateY(-5deg) rotateX(-5deg);
        }

        .hero-image-container:hover::after {
            transform: translateZ(-20px) rotateY(5deg) rotateX(5deg);
        }

        .hero-description {
            margin-bottom: 3rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            opacity: 0;
            animation: fadeIn 1s ease 1.5s forwards;
        }

        .hero-buttons {
            opacity: 0;
            animation: fadeIn 1s ease 2s forwards;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: var(--font-heading);
            position: relative;
            overflow: hidden;
        }

        .btn span {
            position: relative;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 4px 15px rgba(110, 0, 255, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(110, 0, 255, 0.6);
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn-primary:hover::after {
            opacity: 1;
        }

        .btn-outline {
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        .btn-outline::before {
            background: var(--primary);
        }

        .btn-outline:hover::before {
            opacity: 1;
        }

        /* .hero-image {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            width: 40%;
            max-width: 600px;
            z-index: 5;
            animation: float 6s ease-in-out infinite;
            opacity: 0;
            animation: fadeInRight 1s ease 1s forwards;
            filter: drop-shadow(0 20px 30px rgba(110, 0, 255, 0.3));
        } */

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateY(-50%) translateX(50px); }
            to { opacity: 1; transform: translateY(-50%) translateX(0); }
        }

        /* Section Styles */
        .section {
            padding: 8rem 5%;
            position: relative;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            font-family: var(--font-heading);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        /* About Section */
        .about-content {
            display: flex;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-text {
            flex: 1;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Experience Section */
        .experience-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .experience-timeline {
            position: relative;
            padding-left: 50px;
        }

        .experience-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 20px;
            width: 2px;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
        }

        .experience-item {
            position: relative;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease;
        }

        .experience-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .experience-item::before {
            content: '';
            position: absolute;
            left: -42px;
            top: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary);
            border: 3px solid var(--accent);
            box-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
        }

        .experience-content {
            background: var(--card-bg);
            backdrop-filter: blur(var(--glass-blur));
            border-radius: 10px;
            padding: 2rem;
            border: var(--glass-border);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .experience-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
        }

        .experience-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(110, 0, 255, 0.3);
        }

        .experience-header {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .experience-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--accent);
        }

        .experience-company {
            font-size: 1.1rem;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }

        .experience-date {
            background: rgba(255, 45, 117, 0.2);
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            color: var(--secondary);
            font-weight: 500;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .experience-description {
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .experience-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .skill-tag {
            background: rgba(0, 247, 255, 0.1);
            color: var(--accent);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            border: 1px solid rgba(0, 247, 255, 0.3);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .skill-tag i {
            font-size: 0.9rem;
        }

        .skill-tag:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 247, 255, 0.2);
            background: rgba(0, 247, 255, 0.2);
        }

        /* Skills Section */
        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .skill-category {
            background: var(--card-bg);
            backdrop-filter: blur(var(--glass-blur));
            border-radius: 10px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: var(--glass-border);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(20px);
        }

        .skill-category.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .skill-category:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 30px rgba(110, 0, 255, 0.2);
        }

        .skill-category-title {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.light-theme .skill-category-title {
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .skill-category-icon {
            color: var(--primary);
            font-size: 1.2rem;
        }

        .skill-item {
            margin-bottom: 1.5rem;
        }

        .skill-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

        .skill-name {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .skill-level {
            color: var(--accent);
            font-size: 0.9rem;
        }

        .skill-bar {
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }

        body.light-theme .skill-bar {
            background: rgba(0, 0, 0, 0.1);
        }

        .skill-progress {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 4px;
            transition: width 1s ease;
            position: relative;
        }

        .skill-progress::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.3), 
                transparent);
            animation: skillShine 2s infinite;
        }

        @keyframes skillShine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Projects Section */
        .projects-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .project-card {
            background: var(--card-bg);
            backdrop-filter: blur(var(--glass-blur));
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            border: var(--glass-border);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(20px);
        }

        .project-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .project-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(110, 0, 255, 0.3);
        }

        .project-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.1);
        }

        .project-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
            opacity: 0.7;
        }

        .project-tags {
            position: absolute;
            top: 1rem;
            right: 1rem;
            display: flex;
            gap: 0.5rem;
            z-index: 1;
        }

        .project-tag {
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.7rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .project-tag i {
            font-size: 0.6rem;
        }

        .project-tag:hover {
            transform: translateY(-2px);
            background: var(--primary);
        }

        .project-content {
            padding: 1.5rem;
        }

        .project-title {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--accent);
        }

        .project-description {
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        body.light-theme .project-description {
            color: rgba(0, 0, 0, 0.7);
        }

        .project-links {
            display: flex;
            gap: 1rem;
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }

        .project-link:hover {
            color: var(--accent);
            background: rgba(0, 247, 255, 0.1);
        }

        /* Contact Section */
        .contact-container {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            gap: 3rem;
        }

        .contact-info {
            flex: 1;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            background: var(--card-bg);
            backdrop-filter: blur(var(--glass-blur));
            padding: 1.5rem;
            border-radius: 10px;
            border: var(--glass-border);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(-20px);
        }

        .contact-item.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .contact-item:hover {
            transform: translateX(5px);
            box-shadow: 0 10px 20px rgba(110, 0, 255, 0.2);
        }

        .contact-icon-container {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(110, 0, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .contact-item:hover .contact-icon-container {
            background: var(--primary);
            color: white;
            transform: rotate(15deg) scale(1.1);
        }

        .contact-text h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--accent);
        }

        .contact-text p, .contact-text a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
            line-height: 1.6;
        }

        body.light-theme .contact-text p,
        body.light-theme .contact-text a {
            color: rgba(0, 0, 0, 0.7);
        }

        .contact-text a:hover {
            color: var(--accent);
        }

        .contact-form {
            flex: 1;
            background: var(--card-bg);
            backdrop-filter: blur(var(--glass-blur));
            padding: 2rem;
            border-radius: 10px;
            border: var(--glass-border);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateX(20px);
            transition: all 0.5s ease;
        }

        .contact-form.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .contact-form:hover {
            box-shadow: 0 15px 40px rgba(110, 0, 255, 0.2);
        }

        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--accent);
        }

        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            color: white;
            font-family: var(--font-sans);
            transition: all 0.3s ease;
        }

        body.light-theme .form-control {
            background: rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: var(--dark);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(110, 0, 255, 0.2);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::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: 0.5s;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(110, 0, 255, 0.4);
        }

        /* Footer */
        .footer {
            background: var(--darker);
            color: white;
            padding: 5rem 0 3rem;
            position: relative;
        }

        body.light-theme .footer {
            background: var(--light-darker);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
            margin: 0 20px;
        }

        .footer-logo {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: white;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            font-family: var(--font-heading);
        }

        body.light-theme .footer-logo {
            color: var(--dark);
        }

        .footer-logo span {
            color: var(--primary);
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        body.light-theme .footer-description {
            color: rgba(0, 0, 0, 0.7);
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        body.light-theme .social-link {
            background-color: rgba(0, 0, 0, 0.1);
            color: var(--dark);
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-5px);
            color: white;
        }

        .footer-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            color: white;
            font-family: var(--font-heading);
        }

        body.light-theme .footer-title {
            color: var(--dark);
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            list-style: none;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            font-family: var(--font-heading);
        }

        body.light-theme .footer-link {
            color: rgba(0, 0, 0, 0.7);
        }

        .footer-link i {
            font-size: 0.8rem;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: white;
            padding-left: 0.5rem;
        }

        body.light-theme .footer-link:hover {
            color: var(--dark);
        }

        .footer-link:hover i {
            color: white;
        }

        body.light-theme .footer-link:hover i {
            color: var(--dark);
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .newsletter-input {
            padding: 0.75rem;
            border: none;
            border-radius: 8px;
            font-family: inherit;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s ease;
        }

        body.light-theme .newsletter-input {
            background-color: rgba(0, 0, 0, 0.1);
            color: var(--dark);
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        body.light-theme .newsletter-input::placeholder {
            color: rgba(0, 0, 0, 0.5);
        }

        .newsletter-input:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.2);
        }

        body.light-theme .newsletter-input:focus {
            background-color: rgba(0, 0, 0, 0.2);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
        }

        body.light-theme .footer-bottom {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            color: rgba(0, 0, 0, 0.5);
        }

        /* Terminal Effect */
        .terminal {
            position: fixed;
            bottom: -400px;
            right: 2rem;
            width: 500px;
            background: var(--terminal);
            border-radius: 10px 10px 0 0;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            transition: transform 0.5s ease;
            border: 1px solid var(--terminal-border);
            overflow: hidden;
        }

        body.light-theme .terminal {
            background: var(--light-terminal);
            border: 1px solid var(--light-terminal-border);
        }

        .terminal.active {
            transform: translateY(-400px);
        }

        .terminal-header {
            padding: 0.5rem 1rem;
            background: var(--terminal-border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        body.light-theme .terminal-header {
            background: var(--light-terminal-border);
        }

        .terminal-title {
            font-family: var(--font-mono);
            font-size: 0.9rem;
            color: var(--light);
        }

        .terminal-controls {
            display: flex;
            gap: 0.5rem;
        }

        .terminal-btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .terminal-btn:hover {
            transform: scale(1.2);
        }

        .terminal-btn.close {
            background: var(--error);
        }

        .terminal-btn.minimize {
            background: var(--warning);
        }

        .terminal-btn.maximize {
            background: var(--success);
        }

        .terminal-body {
            padding: 1rem;
            font-family: var(--font-mono);
            font-size: 0.9rem;
            height: 350px;
            overflow-y: auto;
            background-color: var(--terminal);
        }

        .terminal-line {
            margin-bottom: 0.5rem;
            display: flex;
            flex-wrap: wrap;
        }

        .terminal-prompt {
            color: var(--success);
            margin-right: 0.5rem;
        }

        .terminal-command {
            color: var(--accent);
        }

        .terminal-output {
            color: rgba(255, 255, 255, 0.7);
            width: 100%;
            margin-top: 0.3rem;
            padding-left: 1.5rem;
            line-height: 1.5;
        }

        body.light-theme .terminal-output {
            color: rgba(0, 0, 0, 0.7);
        }

        .terminal-toggle {
            position: fixed;
            bottom: 1rem;
            right: 1rem;
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
            box-shadow: 0 4px 15px rgba(110, 0, 255, 0.4);
            transition: all 0.3s ease;
        }

        .terminal-toggle:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 6px 20px rgba(110, 0, 255, 0.6);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(110, 0, 255, 0.4);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 6px 20px rgba(110, 0, 255, 0.6);
        }

        /* Particle Network */
        .particle-network {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.3;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .terminal {
                width: 400px;
            }
            
            .contact-container {
                gap: 2rem;
            }
        }

        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .contact-container {
                flex-direction: column;
            }
            
            .terminal {
                width: 350px;
                right: 1rem;
            }
            
            .experience-timeline {
                padding-left: 30px;
            }
            
            .experience-item::before {
                left: -30px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--darker);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                gap: 1.5rem;
                display: none;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
                backdrop-filter: blur(var(--glass-blur));
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .footer-container {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 2rem;
            }
            
            body.light-theme .nav-links {
                background: rgba(248, 249, 250, 0.95);
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                flex-direction: column-reverse;
                text-align: center;
                gap: 1rem;
                padding-top: 8rem;
            }
            
            .hero-content {
                text-align: left;
                margin: 0 50px;
                max-width: 76%;
            }
            
            .hero-image {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                width: 80%;
                margin: 0 50px;
                max-width: 50%;
            }
            
            .terminal {
                width: 100%;
                right: 0;
                border-radius: 0;
            }
            
            .experience-timeline::before {
                left: 15px;
            }
            
            .experience-item::before {
                left: -25px;
                width: 15px;
                height: 15px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .projects-container {
                grid-template-columns: 1fr;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .experience-timeline {
                padding-left: 20px;
            }
            
            .experience-item::before {
                left: -20px;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon-container {
                margin-bottom: 1rem;
            }
        }