/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Original Theme Variables */
    --primary-dark: #0a0e1a;
    --secondary-dark: #0f1419;
    --tertiary-dark: #1a1f2e;
    --accent-blue: #00d9ff;
    --accent-purple: #7b2cbf;
    --accent-red: #ff006e;
    --accent-green: #00ff41;
    --neon-primary: #00ff88;
    --neon-secondary: #ff00ff;
    --neon-accent: #00ffff;
    --neon-blue: #00d9ff;
    --neon-purple: #9d4edd;
    --neon-red: #ff006e;
    --neon-green: #00ff41;
    --neon-orange: #ff9e00;
    --neon-cyan: #00f5d4;
    --cyber-green: #00ff41;
    --matrix-green: #00ff00;
    --neural-blue: #00d9ff;
    --tech-purple: #9d4edd;
    --secure-red: #ff006e;
    --circuit-gold: #ffd60a;
    --text-primary-light: #ffffff;
    --text-secondary-light: #b8bcc8;
    --text-muted-light: #6c757d;
    
    /* Modern Gradients */
    --gradient-1: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    --gradient-2: linear-gradient(135deg, var(--accent-red), var(--accent-green));
    --gradient-3: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    --gradient-4: linear-gradient(135deg, var(--neon-red), var(--neon-green));
    --gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-6: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-card: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.6));
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Professional Shadows */
    --shadow-light: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-medium: 0 12px 40px rgba(0, 0, 0, 0.25);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-neon: 0 0 30px rgba(0, 212, 255, 0.3);
    --shadow-neon-green: 0 0 30px rgba(0, 255, 136, 0.3);
    --shadow-neon-pink: 0 0 30px rgba(255, 0, 255, 0.3);
    --shadow-neon-cyan: 0 0 30px rgba(0, 255, 255, 0.3);
    
    /* Border Radius */
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

[data-theme="light"] {
    --primary: #f7fafc;
    --secondary: #edf2f7;
    --tertiary: #e2e8f0;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border: #e2e8f0;
    --shadow: rgba(0,0,0,0.1);
    --shadow-lg: rgba(0,0,0,0.15);
}

[data-theme="dark"] {
    --primary: #0f0f23;
    --secondary: #1a1a2e;
    --tertiary: #16213e;
    --text-primary: #f7fafc;
    --text-secondary: #e2e8f0;
    --text-muted: #a0aec0;
    --border: #2d3748;
    --shadow: rgba(0,0,0,0.5);
    --shadow-lg: rgba(0,0,0,0.7);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-dark);
    color: var(--text-primary-light);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    /* Enhanced text rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Enhanced Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(57, 255, 20, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    animation: bgPulse 12s ease-in-out infinite;
}

/* Enhanced Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neural-blue), var(--tech-purple));
    filter: blur(40px);
    opacity: 0.4;
    animation: float 20s infinite linear, neuralPulse 6s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(0, 217, 255, 0.3);
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    background: linear-gradient(135deg, var(--neural-blue), var(--neon-cyan));
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 70%;
    background: linear-gradient(135deg, var(--tech-purple), var(--secure-red));
    animation-delay: -5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    background: linear-gradient(135deg, var(--cyber-green), var(--matrix-green));
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 80%;
    background: linear-gradient(135deg, var(--circuit-gold), var(--neon-orange));
    animation-delay: -15s;
}

.shape-6 {
    width: 90px;
    height: 90px;
    top: 10%;
    left: 60%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neural-blue));
    animation-delay: -8s;
}

.shape-7 {
    width: 110px;
    height: 110px;
    top: 50%;
    left: 90%;
    background: linear-gradient(135deg, var(--secure-red), var(--neon-orange));
    animation-delay: -12s;
}

/* Neural Network Connection Lines */
.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.neural-line {
    stroke: rgba(0, 217, 255, 0.3);
    stroke-width: 1;
    stroke-dasharray: 5, 5;
    animation: dashMove 20s linear infinite;
}

.neural-line-1 {
    stroke: rgba(0, 217, 255, 0.4);
    animation-delay: 0s;
}

.neural-line-2 {
    stroke: rgba(0, 255, 65, 0.4);
    animation-delay: -5s;
}

.neural-line-3 {
    stroke: rgba(157, 78, 221, 0.4);
    animation-delay: -10s;
}

.neural-line-4 {
    stroke: rgba(255, 157, 0, 0.4);
    animation-delay: -15s;
}

@keyframes dashMove {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 100; }
}

.neural-node {
    fill: rgba(0, 217, 255, 0.8);
    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.8));
    animation: nodePulse 3s ease-in-out infinite;
}

.neural-node-1 {
    fill: rgba(0, 217, 255, 0.9);
    animation-delay: 0s;
}

.neural-node-2 {
    fill: rgba(0, 255, 65, 0.9);
    animation-delay: 0.6s;
}

.neural-node-3 {
    fill: rgba(157, 78, 221, 0.9);
    animation-delay: 1.2s;
}

.neural-node-4 {
    fill: rgba(255, 157, 0, 0.9);
    animation-delay: 1.8s;
}

.neural-node-5 {
    fill: rgba(255, 0, 110, 0.9);
    animation-delay: 2.4s;
}

@keyframes nodePulse {
    0%, 100% {
        r: 4;
        opacity: 0.6;
    }
    50% {
        r: 6;
        opacity: 1;
    }
}



.loader-ring {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
    border: 3px solid rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    animation: rotate 2s linear infinite;
}

.loader-ring-light {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 80px;
    height: 80px;
    border: 3px solid transparent;
    border-top: 3px solid var(--neon-blue);
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

.loader-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: textPulse 2s ease-in-out infinite;
}

.loader-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.loading-progress {
    width: 200px;
    height: 3px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-bar {
    height: 100%;
    background: var(--gradient-3);
    width: 0%;
    animation: loadingProgress 3s ease-in-out infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes textPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--neon-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: all 0.1s ease;
    opacity: 0;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.2s ease;
    opacity: 0;
}

.custom-cursor.active,
.cursor-follower.active {
    opacity: 1;
}

/* Particles Container */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-blue);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    background: var(--gradient-3);
    top: 80%;
    left: 30%;
    animation-delay: 2s;
}

.shape-4 {
    width: 70px;
    height: 70px;
    background: var(--gradient-4);
    top: 40%;
    right: 40%;
    animation-delay: 3s;
}

.shape-5 {
    width: 50px;
    height: 50px;
    background: var(--neon-blue);
    top: 15%;
    right: 25%;
    animation-delay: 4s;
    border-radius: 20% 40% 60% 80%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* Enhanced Navigation with Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 3s ease-in-out infinite alternate;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-logo .logo-text:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

@keyframes logoGlow {
    0% { 
        filter: brightness(1) drop-shadow(0 0 5px rgba(0, 212, 255, 0.2));
    }
    100% { 
        filter: brightness(1.3) drop-shadow(0 0 15px rgba(0, 212, 255, 0.4));
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 16px;
    border-radius: var(--border-radius);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-bg);
    border-radius: var(--border-radius);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-link:hover::before {
    width: 70%;
}

.nav-link:hover::after {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 80px;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 217, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(157, 78, 221, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 65, 0.08) 0%, transparent 70%);
    overflow: hidden;
}

/* Neural network connection lines effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 217, 255, 0.03) 2px, rgba(0, 217, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(157, 78, 221, 0.03) 2px, rgba(157, 78, 221, 0.03) 4px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    opacity: 0.5;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    justify-items: center;
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.hero-text {
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform: translateY(30px);
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.student-name {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 4s ease-in-out infinite;
    position: relative;
}

.student-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-3);
    border-radius: 2px;
    opacity: 0.6;
    animation: underlineGlow 4s ease-in-out infinite;
}

.profile-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: profileFloat 8s ease-in-out infinite;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.profile-image {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(157, 78, 221, 0.2));
    backdrop-filter: blur(20px);
    border: 3px solid rgba(0, 217, 255, 0.3);
    box-shadow: 
        0 0 40px rgba(0, 217, 255, 0.4),
        0 0 60px rgba(157, 78, 221, 0.3),
        inset 0 0 30px rgba(0, 255, 65, 0.1);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add pulsing neural network effect */
.profile-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
    animation: neuralPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes neuralPulse {
    0%, 100% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.profile-image:hover {
    transform: scale(1.08);
    border-color: rgba(0, 255, 65, 0.5);
    box-shadow: 
        0 0 50px rgba(0, 217, 255, 0.6),
        0 0 80px rgba(157, 78, 221, 0.4),
        0 0 100px rgba(0, 255, 65, 0.3),
        inset 0 0 40px rgba(255, 255, 255, 0.15);
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

@keyframes profileFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.floating-icons {
    position: absolute;
    width: 450px;
    height: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: iconsRotate 30s linear infinite;
}

@keyframes iconsRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.floating-icons i {
    position: absolute;
    font-size: 2.2rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(0, 14, 26, 0.9), rgba(15, 20, 25, 0.95));
    padding: 18px;
    border-radius: 50%;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 217, 255, 0.25);
    transition: all 0.3s ease;
    animation: iconFloat 4s ease-in-out infinite, counterRotate 30s linear infinite;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 217, 255, 0.3);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes counterRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.floating-icons i:hover {
    transform: scale(1.3) rotate(0deg);
    box-shadow: 
        0 15px 40px rgba(0, 217, 255, 0.6),
        0 0 30px rgba(0, 255, 65, 0.4);
    border-color: rgba(0, 255, 65, 0.5);
    z-index: 10;
}

/* Positioning icons in a perfect circle around the photo */
.icon-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--neural-blue);
    animation-delay: 0s;
}

.icon-2 {
    top: 25%;
    right: 0;
    transform: translateY(-50%);
    color: var(--cyber-green);
    animation-delay: 0.7s;
}

.icon-3 {
    bottom: 25%;
    right: 0;
    transform: translateY(50%);
    color: var(--secure-red);
    animation-delay: 1.4s;
}

.icon-4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--tech-purple);
    animation-delay: 2.1s;
}

.icon-5 {
    bottom: 25%;
    left: 0;
    transform: translateY(50%);
    color: var(--circuit-gold);
    animation-delay: 2.8s;
}

.icon-6 {
    top: 25%;
    left: 0;
    transform: translateY(-50%);
    color: var(--neon-cyan);
    animation-delay: 3.5s;
}

@keyframes textGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.5) drop-shadow(0 0 20px rgba(0, 212, 255, 0.5)); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--neon-purple);
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    opacity: 0;
}

.highlight-text {
    color: var(--neon-cyan);
    font-weight: 600;
}

.aspiration-text {
    color: var(--neon-purple);
    font-style: italic;
    font-size: 1rem;
    padding: 1rem;
    background: rgba(179, 71, 217, 0.1);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--neon-purple);
    margin-top: 1rem;
    display: block;
}

.aspiration-text i {
    color: var(--neon-orange);
    margin-right: 0.5rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
    opacity: 0;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    min-width: 80px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Enhanced Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
    opacity: 0;
    margin-top: 2rem;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: var(--border-radius-lg);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    min-width: 160px;
    text-align: center;
}

.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: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neural-blue), var(--tech-purple));
    color: var(--text-primary);
    box-shadow: 
        var(--shadow-medium),
        0 0 20px rgba(0, 217, 255, 0.3);
    border: 1px solid rgba(0, 217, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        var(--shadow-heavy),
        0 0 40px rgba(0, 217, 255, 0.5),
        0 0 60px rgba(0, 255, 65, 0.3);
    filter: brightness(1.2);
    border-color: rgba(0, 255, 65, 0.6);
}

.btn-secondary {
    background: rgba(15, 20, 25, 0.7);
    color: var(--text-primary);
    border: 2px solid var(--cyber-green);
    box-shadow: 
        var(--shadow-light),
        0 0 15px rgba(0, 255, 65, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.2), rgba(157, 78, 221, 0.2));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        var(--shadow-medium),
        0 0 30px rgba(0, 255, 65, 0.5);
    border-color: var(--matrix-green);
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.image-container {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 20s linear infinite;
}

.floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    font-size: 3rem;
    color: var(--text-primary);
    animation: iconFloat 4s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 20%;
    color: var(--neon-blue);
    animation-delay: 0s;
}

.icon-2 {
    top: 20%;
    right: 20%;
    color: var(--neon-purple);
    animation-delay: 1s;
}

.icon-3 {
    bottom: 20%;
    left: 20%;
    color: var(--neon-red);
    animation-delay: 2s;
}

.icon-4 {
    bottom: 20%;
    right: 20%;
    color: var(--neon-green);
    animation-delay: 3s;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-6px) scale(1.02);
    }
}

/* Ensure proper spacing and prevent overlap */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
    min-height: 500px;
    position: relative;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--neon-blue);
    border-bottom: 2px solid var(--neon-blue);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--neural-blue), var(--tech-purple), var(--cyber-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3) drop-shadow(0 0 15px rgba(0, 217, 255, 0.5)); }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--neural-blue), var(--tech-purple), var(--cyber-green));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* Skills Marquee Section */
.skills-marquee {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 14, 26, 0.95), rgba(15, 20, 25, 0.95));
    overflow: hidden;
    position: relative;
    border-top: 2px solid rgba(0, 217, 255, 0.5);
    border-bottom: 2px solid rgba(0, 255, 65, 0.5);
    z-index: 10;
    min-height: 120px;
    box-shadow: 
        0 0 30px rgba(0, 217, 255, 0.3),
        inset 0 0 50px rgba(157, 78, 221, 0.1);
}

.skills-marquee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(0, 212, 255, 0.05) 0%, 
        rgba(179, 71, 217, 0.05) 25%,
        rgba(255, 7, 58, 0.05) 50%,
        rgba(57, 255, 20, 0.05) 75%,
        rgba(0, 212, 255, 0.05) 100%);
    animation: marqueeGlow 10s ease-in-out infinite;
    z-index: 0;
}

@keyframes marqueeGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.marquee-content {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
    z-index: 20;
    position: relative;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    margin: 0 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 15;
}

.marquee-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.marquee-item:hover::before {
    left: 100%;
}

.marquee-item:hover {
    transform: scale(1.05);
    border: 1px solid var(--neon-blue);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.marquee-item i {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    transition: all 0.3s ease;
}

.marquee-item:hover i {
    color: var(--neon-blue);
    transform: scale(1.2);
}

.marquee-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

/* Pause animation on hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.5);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--neon-purple);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.skill-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.skill-item i {
    font-size: 1.5rem;
    color: var(--neon-blue);
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-1);
    border-radius: 15px;
    transition: all 0.3s ease;
    animation: statPulse 3s ease-in-out infinite;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

@keyframes statPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Education Section */
.education {
    padding: 100px 0;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.5);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    border: 1px solid var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-link:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.3rem;
    color: var(--neon-purple);
    margin-bottom: 1rem;
}

.project-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: var(--gradient-1);
    color: var(--text-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Skills Section */
.skills-section {
    padding: 100px 0;
}

.skills-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.skill-category h3 {
    font-size: 1.8rem;
    color: var(--neon-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-bar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.skill-info span:first-child {
    color: var(--text-primary);
}

.skill-info span:last-child {
    color: var(--neon-green);
}

.skill-progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: var(--gradient-3);
    border-radius: 4px;
    width: 0;
    transition: width 2s ease;
    animation: skillGlow 3s ease-in-out infinite alternate;
}

@keyframes skillGlow {
    0% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.5); }
    100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.8); }
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-3);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--neon-blue);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 212, 255, 0);
    }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    width: 45%;
    border-left: 4px solid var(--neon-purple);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.timeline-item:nth-child(odd) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--neon-red);
}

.timeline-content:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.1);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--neon-purple);
    margin-bottom: 0.5rem;
}

.timeline-date {
    color: var(--neon-red);
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin: 1rem 0;
    line-height: 1.6;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
}

.timeline-content li {
    color: var(--text-secondary);
    margin: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.timeline-content li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--neon-green);
}

/* Achievements Section */
.achievements {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.5);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.achievement-card:hover::before {
    left: 100%;
}

.achievement-card:hover {
    transform: translateY(-10px);
    border: 1px solid var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: iconRotate 4s ease-in-out infinite;
}

@keyframes iconRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

.achievement-icon i {
    font-size: 2rem;
    color: var(--text-primary);
}

.achievement-card h3 {
    font-size: 1.3rem;
    color: var(--neon-purple);
    margin-bottom: 1rem;
}

.achievement-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Corporate Readiness Section */
.corporate-readiness {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.corporate-readiness::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 212, 255, 0.05) 0%, 
        rgba(179, 71, 217, 0.05) 25%,
        rgba(255, 7, 58, 0.05) 50%,
        rgba(57, 255, 20, 0.05) 75%,
        rgba(0, 212, 255, 0.05) 100%);
    animation: corporateGlow 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes corporateGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.corporate-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.corporate-title i {
    color: var(--neon-orange);
    margin-right: 0.5rem;
    animation: rocketBoost 2s ease-in-out infinite;
}

@keyframes rocketBoost {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.readiness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.readiness-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.readiness-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-green));
    transition: left 0.5s ease;
}

.readiness-item:hover::before {
    left: 100%;
}

.readiness-item:hover {
    transform: translateY(-5px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.readiness-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.readiness-item:hover .readiness-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.readiness-icon i {
    font-size: 1.3rem;
    color: var(--text-primary);
}

.readiness-item h4 {
    font-size: 1.1rem;
    color: var(--neon-cyan);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.readiness-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Vision Section */
.vision {
    padding: 100px 0;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-text h3 {
    font-size: 2.5rem;
    background: var(--gradient-4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.vision-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.vision-goals {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.goal-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--neon-green);
}

.goal-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

.goal-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-green);
    min-width: 60px;
}

.goal-item h4 {
    font-size: 1.3rem;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
}

.goal-item p {
    color: var(--text-secondary);
}

/* Text Marquee Section */
.text-marquee-section {
    padding: 50px 0;
    background: rgba(0, 0, 0, 0.95);
    overflow: hidden;
    position: relative;
    border-top: 3px solid var(--neon-blue);
    border-bottom: 3px solid var(--neon-purple);
    z-index: 10;
    min-height: 100px;
    /* Debug: Add visible outline */
    box-shadow: 0 0 20px rgba(179, 71, 217, 0.3);
}

.text-marquee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(179, 71, 217, 0.1) 25%,
        rgba(255, 7, 58, 0.1) 50%,
        rgba(57, 255, 20, 0.1) 75%,
        rgba(0, 212, 255, 0.1) 100%);
    animation: textMarqueeGlow 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes textMarqueeGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.text-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.text-marquee-content {
    display: flex;
    align-items: center;
    animation: textMarqueeScroll 40s linear infinite;
    white-space: nowrap;
    z-index: 20;
    position: relative;
}

@keyframes textMarqueeScroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.marquee-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 2rem;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    letter-spacing: 1px;
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        filter: brightness(1);
        transform: scale(1);
    }
    50% {
        filter: brightness(1.2);
        transform: scale(1.02);
    }
}

.marquee-separator {
    font-size: 1.8rem;
    color: var(--neon-orange);
    margin: 0 2rem;
    animation: separatorPulse 2s ease-in-out infinite;
}

@keyframes separatorPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* Pause text marquee animation on hover */
.text-marquee-container:hover .text-marquee-content {
    animation-play-state: paused;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.5);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--neon-purple);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* CEO Message */
.ceo-message {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--neon-purple);
    margin: 2rem 0;
    position: relative;
    backdrop-filter: blur(10px);
}

.ceo-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(179, 71, 217, 0.03) 0%, 
        rgba(0, 212, 255, 0.03) 100%);
    border-radius: var(--border-radius);
    z-index: -1;
}

.ceo-message i {
    color: var(--neon-purple);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.ceo-message p {
    color: var(--text-primary);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ceo-message span {
    color: var(--neon-cyan);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    text-align: right;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.contact-method i {
    color: var(--neon-blue);
    font-size: 1.2rem;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: var(--text-secondary);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 1rem;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin: 0 auto;
    }

    .profile-container {
        width: 320px;
        height: 320px;
        margin: 0 auto;
    }

    .profile-image {
        width: 220px;
        height: 220px;
    }

    .floating-icons {
        width: 350px;
        height: 350px;
    }

    .floating-icons i {
        font-size: 1.8rem;
        padding: 14px;
        width: 50px;
        height: 50px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .skills-marquee {
        padding: 20px 0;
    }
    
    .marquee-item {
        min-width: 150px;
        padding: 0.8rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .marquee-item i {
        font-size: 1.2rem;
    }
    
    .marquee-item span {
        font-size: 0.9rem;
    }
    
    .text-marquee-section {
        padding: 15px 0;
    }
    
    .marquee-text {
        font-size: 1.1rem;
        margin: 0 1rem;
    }
    
    .marquee-separator {
        font-size: 1.3rem;
        margin: 0 1rem;
    }
    
    .corporate-readiness {
        margin-top: 2rem;
        padding: 2rem 1rem;
    }
    
    .corporate-title {
        font-size: 1.5rem;
    }
    
    .readiness-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .about-content,
    .projects-grid,
    .achievements-grid,
    .skills-container {
        padding: 0 1rem;
    }
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .skills-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    }

    .floating-icons i {
        font-size: 1.8rem;
        padding: 14px;
        width: 50px;
        height: 50px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 40px;
    }

    .timeline-item:nth-child(odd) {
        flex-direction: column;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-content {
        width: 100%;
        margin-left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        border-right: none;
        border-left: 4px solid var(--neon-purple);
        margin-left: 20px;
    }

    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .profile-container {
        width: 280px;
        height: 280px;
    }

    .profile-image {
        width: 180px;
        height: 180px;
    }

    .floating-icons {
        width: 280px;
        height: 280px;
    }

    .floating-icons i {
        font-size: 1.4rem;
        padding: 10px;
        width: 40px;
        height: 40px;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .goal-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Enhanced Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Advanced Animation Keyframes */
@keyframes underlineGlow {
    0%, 100% { 
        transform: scaleX(1);
        opacity: 0.6;
    }
    50% { 
        transform: scaleX(1.05);
        opacity: 1;
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

@keyframes bgPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes profileFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

/* Utility Classes for Enhanced UI */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.neon-glow {
    box-shadow: 
        0 0 10px rgba(0, 212, 255, 0.3),
        0 0 20px rgba(0, 212, 255, 0.2),
        0 0 30px rgba(0, 212, 255, 0.1);
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Enhanced Project Cards with 3D Tilt Effect */
.project-card {
    background: var(--gradient-card);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(179, 71, 217, 0.1));
    border-radius: var(--border-radius-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 212, 255, 0.2);
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.8));
}

.project-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--secondary-dark), var(--tertiary-dark));
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.8) contrast(1.1);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}


    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.project-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--neon-blue);
    position: relative;
}

.project-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.tech-tag {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.tech-tag:hover::before {
    left: 100%;
}

.tech-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

/* 3D Tilt Effect Variables */
.project-card[data-tilt] {
    transform-style: preserve-3d;
}

.project-card[data-tilt] .project-image,
.project-card[data-tilt] .project-content {
    transform-style: preserve-3d;
}

/* Projects Grid Layout */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Enhanced Stats Animation */
.about-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 20px;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Achievement Cards Enhancement */
.achievement-card {
    background: var(--gradient-card);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(179, 71, 217, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 212, 255, 0.1);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.achievement-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--neon-blue);
}

.achievement-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Tech Stack Visualization Enhancement */
.skill-bars {
    margin-top: 20px;
}

.skill-bar {
    margin-bottom: 25px;
    position: relative;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 500;
}

.skill-info span:first-child {
    color: var(--text-primary);
}

.skill-info span:last-child {
    color: var(--neon-blue);
    font-weight: 600;
}

.skill-progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    border-radius: 4px;
    width: 0;
    transition: width 1s ease;
    position: relative;
    overflow: hidden;
}

.skill-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Contact Form Enhancement */
.contact-form {
    background: var(--gradient-card);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design Improvements */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card {
        padding: 20px;
    }

    .about-stats {
        justify-content: center;
    }

    .stat-item {
        min-width: 120px;
    }

    .achievement-card {
        padding: 25px;
    }
}

/* Loading Animation Enhancement */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 212, 255, 0.1);
    border-top: 3px solid var(--neon-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fade-out {
    opacity: 0;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 500;
    z-index: 1000;
    animation: slideIn 0.3s ease;
    backdrop-filter: blur(10px);
}

.notification.success {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.notification.error {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.notification.info {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Enhanced Counter Animation */
@keyframes counterPulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.8), 0 0 40px rgba(0, 212, 255, 0.4);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }
}

/* Testimonials Section */
.testimonials {
    background: var(--gradient-card);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    width: 100%;
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text i {
    font-size: 3rem;
    color: var(--neon-blue);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text i:first-child {
    top: -10px;
    left: -10px;
}

.testimonial-text i:last-child {
    bottom: -10px;
    right: -10px;
    transform: rotate(180deg);
}

.testimonial-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    padding: 0 40px;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--neon-blue);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--neon-blue);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 2px 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: var(--neon-blue);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.testimonial-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--neon-blue);
    transform: scale(1.3);
}

/* Enhanced responsive design for testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 25px;
        height: 350px;
    }

    .testimonial-text p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .author-info {
        text-align: center;
    }
}

/* Tech Stack Visualization Section */
.tech-stack-section {
    background: var(--gradient-card);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tech-stack-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 212, 255, 0.1);
}

.tech-category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--neon-blue);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-category-title i {
    font-size: 1.5rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.05);
}

.tech-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.tech-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: block;
}

.tech-level {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.tech-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    border-radius: 3px;
    width: var(--progress);
    transition: width 1.5s ease;
    position: relative;
}

.tech-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: techShimmer 2s infinite;
}

@keyframes techShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

/* Tech Cloud */
.tech-cloud {
    text-align: center;
    margin-top: 60px;
}

.tech-cloud h3 {
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-bottom: 30px;
}

.cloud-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    min-height: 200px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cloud-tag {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: cloudFadeIn 0.6s ease forwards;
    animation-delay: var(--delay);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cloud-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
}

@keyframes cloudFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Tech Stack */
@media (max-width: 768px) {
    .tech-categories {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tech-category {
        padding: 25px;
    }

    .cloud-container {
        gap: 10px;
        padding: 15px;
    }

    .cloud-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Original Theme Switcher */
.theme-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
}

.theme-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-btn.light {
    background: linear-gradient(135deg, #f7fafc, #e2e8f0);
}

.theme-btn.dark {
    background: linear-gradient(135deg, #1a202c, #2d3748);
}

.theme-btn.cyberpunk {
    background: linear-gradient(135deg, #0a0a0a, #1a0a1a);
    border-color: var(--neon-primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.theme-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.theme-btn.cyberpunk:hover {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.theme-btn.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.theme-btn.cyberpunk.active::after {
    color: var(--neon-primary);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

/* Mobile Responsive Theme Switcher */
@media (max-width: 768px) {
    .theme-switcher {
        top: 10px;
        right: 10px;
        padding: 8px;
        gap: 8px;
    }
    
    .theme-btn {
        width: 35px;
        height: 35px;
    }
    
    .theme-btn.active::after {
        font-size: 12px;
    }
}

/* Enhanced Cyberpunk Effects */
[data-theme="cyberpunk"] {
    --primary: #0a0a0a;
    --secondary: #1a0a1a;
    --tertiary: #2a0a2a;
    --text-primary: #00ff88;
    --text-secondary: #ff00ff;
    --text-muted: #00ffff;
    --border: #ff00ff;
    --shadow: rgba(0,255,136,0.3);
    --shadow-lg: rgba(255,0,255,0.4);
}

[data-theme="cyberpunk"] .hero-text h1 {
    background: linear-gradient(45deg, #00ff88, #ff00ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    animation: cyberpunkGlow 2s ease-in-out infinite alternate;
}

@keyframes cyberpunkGlow {
    0% { filter: brightness(1) hue-rotate(0deg); }
    50% { filter: brightness(1.2) hue-rotate(180deg); }
    100% { filter: brightness(1) hue-rotate(360deg); }
}

[data-theme="cyberpunk"] .nav-link {
    color: var(--text-secondary);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

[data-theme="cyberpunk"] .nav-link:hover {
    color: var(--neon-primary);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
}

[data-theme="cyberpunk"] .card {
    border: 1px solid var(--neon-primary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

[data-theme="cyberpunk"] .card:hover {
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.4);
}

/* Mobile Responsive Theme Switcher */
@media (max-width: 768px) {
    .theme-switcher {
        top: 10px;
        right: 10px;
        padding: 8px;
        gap: 8px;
    }
    
    .theme-btn {
        width: 35px;
        height: 35px;
    }
    
    .theme-btn.active::after {
        font-size: 12px;
    }
}

/* Professional Project Cards */
.major-project {
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    background: var(--gradient-card);
}

.major-project::before {
    content: '🚀';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    z-index: 10;
}

.major-project:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-indigo);
}

.minor-project {
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    background: var(--gradient-card);
}

.minor-project::before {
    content: '�';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    z-index: 10;
}

.minor-project:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Professional Category Titles */
.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Resume Section Styles */
.resume-section {
    padding: 80px 0;
    background: var(--primary);
}

.resume-container {
    margin-top: 50px;
}

.resume-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.resume-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.resume-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
}

.resume-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.resume-actions .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.resume-actions .btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
}

.resume-actions .btn-secondary {
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
}

.resume-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.resume-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--accent-blue);
}

.highlight-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.resume-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.preview-card:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.preview-header {
    background: linear-gradient(135deg, var(--sidebar-bg), #2a3441);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.preview-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.preview-title h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.preview-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.preview-content {
    padding: 30px;
}

.preview-section {
    margin-bottom: 25px;
}

.preview-section h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tags span {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.preview-section ul {
    list-style: none;
    padding: 0;
}

.preview-section li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.preview-section li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-size: 0.7rem;
}

/* Responsive Design for Resume Section */
@media (max-width: 768px) {
    .resume-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .resume-info h3 {
        font-size: 2rem;
    }
    
    .resume-actions {
        justify-content: center;
    }
    
    .resume-highlights {
        grid-template-columns: 1fr;
    }
    
    .preview-card {
        transform: none;
    }
    
    .preview-card:hover {
        transform: translateY(-5px);
    }
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Responsive Project Categories */
@media (max-width: 768px) {
    .category-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .projects-category {
        margin-bottom: 40px;
    }
    
    .major-project,
    .minor-project {
        transform: scale(1);
    }
    
    .major-project:hover,
    .minor-project:hover {
        transform: translateY(-3px);
    }
}
