/* ===== ADVANCED CSS VARIABLES ===== */
:root {
    /* Enhanced Color Palette */
    --primary-color: #6366f1;
    --primary-dark: #4338ca;
    --primary-light: #a5b4fc;
    --secondary-color: #ec4899;
    --accent-color: #06b6d4;
    --accent-warm: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    
    /* Neon & Glow Colors */
    --neon-blue: #00d4ff;
    --neon-purple: #a855f7;
    --neon-pink: #ec4899;
    --neon-green: #00ff88;
    --neon-orange: #ff6b35;
    
    /* Advanced Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-rainbow: linear-gradient(45deg, #ff0080, #ff8c00, #40e0d0, #ff0080);
    --gradient-cosmic: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-holographic: linear-gradient(45deg, #ff0080, #ff8c00, #40e0d0, #ff0080, #ff0080);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Inter', sans-serif;
    
    /* Spacing & Sizing */
    --section-padding: 8rem;
    --container-padding: 2rem;
    --border-radius: 1rem;
    --border-radius-xl: 2rem;
    
    /* Advanced Shadows & Effects */
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.3);
    --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.5);
    --shadow-magical: 0 15px 35px rgba(99, 102, 241, 0.1), 0 3px 10px rgba(99, 102, 241, 0.2);
    --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.37);
    
    /* Animation Durations */
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
    --duration-very-slow: 1.2s;
    
    /* Z-indexes */
    --z-particles: 1;
    --z-content: 10;
    --z-overlay: 100;
    --z-modal: 1000;
    --z-fixed: 1030;
}

/* Dark Theme - Single Theme Only */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #1a1a2e;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-light: #a1a1aa;
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Neon Colors */
    --neon-cyan: #00d4ff;
    --neon-blue: #00d4ff;
    --neon-purple: #a855f7;
    --neon-pink: #ec4899;
    --neon-green: #00ff88;
    --neon-orange: #ff6b35;
}

/* ===== ADVANCED RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    cursor: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ===== CUSTOM CURSOR ===== */
.mouse-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--gradient-rainbow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    animation: cursorPulse 2s infinite;
}

@keyframes cursorPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ===== MAGICAL LOADING SCREEN ===== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-cosmic);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: var(--z-modal);
    transition: all 1s ease-out;
}

#loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.loader-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: spinLoader 2s linear infinite;
}

.loader-inner::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: var(--gradient-cosmic);
    border-radius: 50%;
}

@keyframes spinLoader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== ENHANCED NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: var(--z-fixed);
    transition: all var(--duration-normal);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5)); }
    100% { filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.8)); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    overflow: hidden;
    font-size: 0.95rem;
    display: block;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.5s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.cv-download {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple)) !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 0.8rem 1.8rem !important;
    border-radius: 25px !important;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3) !important;
    animation: pulseGlow 2s infinite !important;
}

.cv-download:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 25px rgba(0, 212, 255, 0.5) !important;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.6); }
}

.theme-toggle {
    display: none; /* Theme toggle completely hidden */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

/* ===== SPECTACULAR HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%),
                linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    overflow: hidden;
}

/* Animated Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-particles);
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50% 0 50% 50%;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 120px;
    height: 120px;
    background: var(--neon-blue);
    border-radius: 20px;
    top: 40%;
    left: 80%;
    animation-delay: 10s;
    transform: rotate(45deg);
}

.shape-4 {
    width: 60px;
    height: 60px;
    background: var(--neon-pink);
    border-radius: 50%;
    top: 10%;
    right: 30%;
    animation-delay: 15s;
}

.shape-5 {
    width: 90px;
    height: 90px;
    background: var(--neon-green);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    bottom: 20%;
    left: 5%;
    animation-delay: 20s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(90deg); }
    50% { transform: translateY(-60px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    animation: orbFloat 15s infinite ease-in-out;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 70%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* Hero Content */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: var(--z-content);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    position: relative;
    animation: badgeGlow 2s ease-in-out infinite alternate;
    color: #ffffff;
    font-size: 0.9rem;
}

@keyframes badgeGlow {
    0% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.3); }
    100% { box-shadow: 0 0 40px rgba(168, 85, 247, 0.5); }
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
}

.title-line {
    display: block;
    position: relative;
    opacity: 0;
    transform: translateY(100px);
    animation: heroSlideUp 1s ease-out forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.glitch:hover::before {
    animation: glitch-1 0.3s infinite;
    color: var(--neon-blue);
    z-index: -1;
}

.glitch:hover::after {
    animation: glitch-2 0.3s infinite;
    color: var(--neon-pink);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 14%, 15%, 49%, 50%, 99%, 100% { transform: translateX(0); }
    15%, 49% { transform: translateX(-2px); }
}

@keyframes glitch-2 {
    0%, 20%, 21%, 62%, 63%, 99%, 100% { transform: translateX(0); }
    21%, 62% { transform: translateX(2px); }
}

.gradient-text {
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-name {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-pink)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline-block !important;
    font-weight: 800 !important;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8) !important;
}

.neon-glow {
    text-shadow: 0 0 10px currentColor,
                 0 0 20px currentColor,
                 0 0 40px currentColor;
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    0% { text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 40px currentColor; }
    100% { text-shadow: 0 0 20px currentColor, 0 0 30px currentColor, 0 0 60px currentColor; }
}

.title-underline {
    height: 4px;
    background: var(--gradient-rainbow);
    margin-top: 1rem;
    border-radius: 2px;
    width: 0;
    animation: expandLine 1s ease-out 0.8s forwards;
}

@keyframes expandLine {
    0% { width: 0; }
    100% { width: 100%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #a1a1aa;
    margin-bottom: 2rem;
    height: 2em;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.typing-text {
    color: var(--neon-blue);
    font-weight: 600;
    min-height: 1.5em;
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.neon-cursor {
    color: var(--neon-blue);
    text-shadow: 0 0 10px currentColor;
    animation: cursorBlink 1s infinite;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.reveal-animation {
    opacity: 0;
    transform: translateY(30px);
    animation: heroSlideUp 1s ease-out 1s forwards;
    font-size: 1.2rem;
    color: #a1a1aa;
    line-height: 1.8;
}

.highlight-text {
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 600;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-rainbow);
    transform: scaleX(0);
    animation: expandHighlight 1s ease-out 1.5s forwards;
}

@keyframes expandHighlight {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

/* Magical Buttons */
.magic-buttons {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: heroSlideUp 1s ease-out 1.2s forwards;
    justify-content: center;
    align-items: center;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--duration-normal);
    border: none;
    cursor: none;
    overflow: hidden;
}

.btn-content {
    position: relative;
    z-index: 2;
}

.btn-glow {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    position: relative;
}

.btn-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

.btn-glow::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.6s;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-3d {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    transform-style: preserve-3d;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50px;
    transform: translateZ(-10px) translateY(10px);
    transition: all var(--duration-normal);
    opacity: 0.3;
}

.btn-3d:hover {
    transform: translateY(-10px);
    color: white;
    background: var(--gradient-primary);
}

.btn-3d:hover::before {
    transform: translateZ(-10px) translateY(20px);
}

/* Floating Social Links */
.floating-social {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: heroSlideUp 1s ease-out 1.4s forwards;
}

.social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #a1a1aa;
    text-decoration: none;
    transition: all var(--duration-normal);
    overflow: hidden;
}

.social-bounce:hover {
    transform: translateY(-10px) scale(1.1);
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

.social-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.social-link:hover .social-ripple {
    width: 100px;
    height: 100px;
}

/* Magical Image */
.magical-image {
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8) rotateY(180deg);
    animation: heroImageReveal 1.5s ease-out 0.5s forwards;
}

@keyframes heroImageReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) rotateY(180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }
}

.image-frame {
    position: relative;
    width: 400px;
    height: 400px;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid transparent;
    background: var(--gradient-rainbow);
    padding: 4px;
    position: relative;
    z-index: 2;
    transition: all var(--duration-slow);
}

.profile-image:hover {
    transform: scale(1.05) rotate(5deg);
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-rainbow);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.3;
    animation: imageGlow 4s ease-in-out infinite alternate;
    filter: blur(20px);
}

@keyframes imageGlow {
    0% { transform: scale(0.9); opacity: 0.3; }
    100% { transform: scale(1.1); opacity: 0.6; }
}

.rotating-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--neon-blue);
    border-right: 2px solid var(--neon-pink);
    border-radius: 50%;
    animation: rotateBorder 4s linear infinite;
    z-index: 1;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    animation: floatIcon 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) { top: 10%; left: 80%; }
.floating-icon:nth-child(2) { top: 30%; right: 90%; }
.floating-icon:nth-child(3) { bottom: 30%; right: 85%; }
.floating-icon:nth-child(4) { bottom: 10%; left: 85%; }
.floating-icon:nth-child(5) { top: 50%; left: 90%; }
.floating-icon:nth-child(6) { bottom: 50%; right: 95%; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
    75% { transform: translateY(-20px) rotate(270deg); }
}

.holographic-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-holographic);
    border-radius: 50%;
    opacity: 0.1;
    animation: holographicShift 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes holographicShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Magical Scroll Indicator */
.magical-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: heroSlideUp 1s ease-out 2s forwards;
}

.pulsing-arrow {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: none;
    margin-bottom: 1rem;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateY(0); box-shadow: 0 0 20px rgba(99, 102, 241, 0.3); }
    50% { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5); }
}

.arrow-trail {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    transform: translateX(-50%);
    animation: trailMove 2s ease-in-out infinite;
}

@keyframes trailMove {
    0% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

.scroll-text {
    color: #a1a1aa;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { color: #a1a1aa; }
    100% { color: var(--primary-color); text-shadow: 0 0 10px currentColor; }
}

@keyframes heroSlideUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ENHANCED ABOUT SECTION ===== */
.about {
    padding: var(--section-padding) 0;
    background: radial-gradient(ellipse at top, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-particles);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: floatElement 20s ease-in-out infinite;
    animation-delay: var(--delay);
}

.float-element:nth-child(1) { top: 20%; left: 10%; }
.float-element:nth-child(2) { top: 60%; right: 15%; }
.float-element:nth-child(3) { bottom: 30%; left: 20%; }
.float-element:nth-child(4) { top: 40%; right: 25%; }

@keyframes floatElement {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-50px) rotate(90deg); }
    50% { transform: translateY(-100px) rotate(180deg); }
    75% { transform: translateY(-50px) rotate(270deg); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.magical-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.split-text {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.title-decoration {
    width: 100px;
    height: 4px;
    background: var(--gradient-rainbow);
    margin: 2rem auto;
    border-radius: 2px;
    position: relative;
}

.title-decoration::before,
.title-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translateY(-50%);
}

.title-decoration::before { left: -30px; }
.title-decoration::after { right: -30px; }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.text-reveal {
    margin-bottom: 3rem;
}

.typing-reveal {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #a1a1aa;
    margin-bottom: 2rem;
    position: relative;
}

.highlight-gradient {
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
}

/* Glass Cards Stats */
.glass-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--duration-normal);
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.magical-counter {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
}

.stat-label {
    font-size: 0.9rem;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.stat-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    border-radius: var(--border-radius-xl);
    transition: opacity var(--duration-normal);
    z-index: -1;
}

.glass-card:hover .stat-glow {
    opacity: 0.1;
}

/* Holographic Education Card */
.holographic-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    animation: rotateGlow 10s linear infinite;
    z-index: -1;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.education-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.education-header h3 {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.header-line {
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.education-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.floating-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    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);
    padding: 2rem;
    transition: all var(--duration-normal);
    overflow: hidden;
}

.floating-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.education-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.education-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.education-content p {
    color: #a1a1aa;
    margin-bottom: 0.5rem;
}

.glowing-year {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid var(--primary-color);
}

.item-shine {
    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.6s;
}

.floating-card:hover .item-shine {
    left: 100%;
}

.card-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%236366f1" opacity="0.3"/><circle cx="80" cy="40" r="0.5" fill="%23ec4899" opacity="0.4"/><circle cx="40" cy="80" r="1.5" fill="%2306b6d4" opacity="0.2"/></svg>');
    opacity: 0.3;
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .glass-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .image-frame {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding: 2rem;
        transition: left var(--duration-normal);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: none;
        gap: 4px;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: #ffffff;
        transition: var(--duration-normal);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .magic-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .glass-cards {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 4rem;
        --container-padding: 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .image-frame {
        width: 250px;
        height: 250px;
    }
    
    .floating-card {
        padding: 1.5rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center !important;
}

/* ===== SECTION HEADER FORCE CENTER ===== */
.section-header {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 auto 4rem auto !important;
}

.section-header .section-title {
    text-align: center !important;
    margin: 0 auto !important;
}

.section-header .section-subtitle {
    text-align: center !important;
    margin: 0 auto !important;
}

.section-header .section-badge {
    margin: 0 auto 2rem auto !important;
}

.text-gradient {
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-effect {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== LOADING ANIMATIONS ===== */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 2s infinite;
}

/* ===== EXPERIENCE SECTION ===== */
.experience {
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(20, 184, 166, 0.05) 0%, 
        rgba(99, 102, 241, 0.05) 50%, 
        rgba(236, 72, 153, 0.05) 100%);
}

.experience-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    animation: pulse 2s infinite;
}

.timeline-item:last-child::before {
    bottom: 50%;
}

.timeline-dot {
    position: absolute;
    left: 10px;
    top: 30px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    box-shadow: 0 0 20px var(--neon-blue);
    animation: glow 2s infinite alternate;
}

.timeline-content {
    margin-left: 20px;
}

.timeline-header h3 {
    color: var(--neon-blue);
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.company {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    display: inline-block;
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.3);
}

.glowing-year {
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.3);
    display: inline-block;
    animation: glow 2s infinite alternate;
}

.timeline-description {
    list-style: none;
    padding: 0;
}

.timeline-description li {
    color: #a1a1aa;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.timeline-description li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    animation: pulse 2s infinite;
}

/* ===== SKILLS SECTION ===== */
.skills {
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.05) 0%, 
        rgba(59, 130, 246, 0.05) 50%, 
        rgba(34, 197, 94, 0.05) 100%);
}

.skills-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.skill-category {
    position: relative;
    padding: 30px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 1.3rem;
}

.category-title i {
    font-size: 1.5rem;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.skill-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.glowing-tag {
    animation: glowingFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.glowing-tag:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.skill-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
}

@keyframes glowingFloat {
    0%, 100% { 
        transform: translateY(0);
        box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
    }
    50% { 
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    }
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.skill-name {
    min-width: 120px;
    color: #a1a1aa;
    font-weight: 500;
}

.skill-bar {
    flex: 1;
    height: 8px;
    background: rgba(55, 65, 81, 0.5);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    border-radius: 10px;
    width: 0;
    transition: width 2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.magical-progress {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    position: relative;
    overflow: hidden;
    animation: progressGlow 2s infinite alternate;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

.skill-percentage {
    min-width: 45px;
    text-align: right;
    color: var(--neon-blue);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

@keyframes progressGlow {
    0% {
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(236, 72, 153, 0.8);
    }
}

/* ===== PROJECTS SECTION ===== */
.projects {
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%, 
        rgba(34, 197, 94, 0.05) 50%, 
        rgba(251, 191, 36, 0.05) 100%);
}

.projects-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.project-image {
    height: 250px;
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink), var(--neon-blue));
    position: relative;
    overflow: hidden;
}

.project-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.8) 0%, 
        rgba(236, 72, 153, 0.8) 50%, 
        rgba(0, 212, 255, 0.8) 100%);
    opacity: 0.9;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 20px;
}

.project-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.project-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.project-content {
    padding: 30px;
}

.project-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--neon-blue);
}

.project-description {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.neon-tag {
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
    transition: all 0.3s ease;
}

.neon-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.5);
}

/* ===== CONTACT SECTION ===== */
.contact {
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.05) 0%, 
        rgba(239, 68, 68, 0.05) 50%, 
        rgba(139, 92, 246, 0.05) 100%);
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.contact-details h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-details p {
    color: #a1a1aa;
    margin: 0;
}

.contact-form {
    padding: 40px;
    border-radius: 20px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-header p {
    color: #a1a1aa;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(55, 65, 81, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    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);
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    opacity: 0;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    z-index: -1;
    transition: opacity 0.3s ease;
}

.form-group input:focus + .input-glow,
.form-group textarea:focus + .input-glow {
    opacity: 0.1;
}

.btn-glow {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%, 
        rgba(30, 41, 59, 0.95) 100%);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .footer {
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 0.95) 0%, 
        rgba(241, 245, 249, 0.95) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple));
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

[data-theme="light"] .social-link {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
}

[data-theme="light"] .social-link:hover {
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple));
    color: white;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
    .timeline-item {
        padding-left: 40px;
    }
    
    .timeline-item::before {
        left: 15px;
    }
    
    .timeline-dot {
        left: 5px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .skill-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .skill-name {
        min-width: auto;
    }
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%, 
        rgba(30, 41, 59, 0.95) 100%);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .footer {
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 0.95) 0%, 
        rgba(241, 245, 249, 0.95) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple));
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

[data-theme="light"] .social-link {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
}

[data-theme="light"] .social-link:hover {
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple));
    color: white;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}