/* Anime Cyberpunk Theme - Base Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cyberpunk Sci-Fi Color Palette */
    --primary-color: #00d4ff;
    --secondary-color: #9d4edd;
    --accent-color: #00ff88;
    --neon-blue: #00bfff;
    --neon-pink: #ff1744;
    --neon-purple: #7c4dff;
    --neon-green: #00e676;
    --anime-yellow: #ffc107;
    --anime-orange: #ff5722;
    --anime-cyan: #00e5ff;
    --anime-magenta: #e91e63;
    --anime-violet: #673ab7;
    
    /* Sci-Fi Theme Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --bg-light: #0f3460;
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --text-muted: #8a96a8;
    --text-accent: #00d4ff;
    --text-highlight: #00ff88;
    --text-special: #ff1744;
    
    /* Sci-Fi Gradients */
    --shadow-cyber: 0 0 30px;
    --shadow-lg: 0 20px 40px rgba(0, 212, 255, 0.3);
    --gradient-cyber: linear-gradient(135deg, #00d4ff 0%, #9d4edd 25%, #00ff88 50%, #00bfff 75%, #ffc107 100%);
    --gradient-neon: linear-gradient(135deg, #ff1744 0%, #7c4dff 50%, #00e676 100%);
    --gradient-bg: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 30%, #16213e 60%, #0f3460 100%);
    --gradient-tech: linear-gradient(135deg, #00e5ff 0%, #673ab7 50%, #e91e63 100%);
    --font-cyber: 'Orbitron', 'Inter', monospace, sans-serif;
    
    /* Enhanced Animations */
    --cyber-pulse: cyberPulse 2s ease-in-out infinite;
    --matrix-spin: matrixSpin 4s linear infinite;
    --neon-glow: neonGlow 3s ease-in-out infinite alternate;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-cyber);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 15% 15%, #00d4ff22 0%, transparent 30%),
        radial-gradient(circle at 85% 85%, #9d4edd22 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, #00ff8822 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, #00bfff22 0%, transparent 25%),
        linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 30%, #16213e 60%, #0f3460 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    font-size: 16px;
}

/* Enhanced Cyberpunk animations */
@keyframes cyberPulse {
    0%, 100% { 
        transform: translateY(0px) scale(1) rotate(0deg); 
        filter: hue-rotate(0deg) brightness(1);
    }
    25% { 
        transform: translateY(-10px) scale(1.02) rotate(1deg); 
        filter: hue-rotate(90deg) brightness(1.1);
    }
    50% { 
        transform: translateY(-15px) scale(1.05) rotate(0deg); 
        filter: hue-rotate(180deg) brightness(1.2);
    }
    75% { 
        transform: translateY(-8px) scale(1.02) rotate(-1deg); 
        filter: hue-rotate(270deg) brightness(1.1);
    }
}

@keyframes matrixSpin {
    0% { 
        filter: hue-rotate(0deg) saturate(1.3) brightness(1.1);
        transform: rotate(0deg);
    }
    25% { 
        filter: hue-rotate(90deg) saturate(1.3) brightness(1.1);
        transform: rotate(90deg);
    }
    50% { 
        filter: hue-rotate(180deg) saturate(1.3) brightness(1.1);
        transform: rotate(180deg);
    }
    75% { 
        filter: hue-rotate(270deg) saturate(1.3) brightness(1.1);
        transform: rotate(270deg);
    }
    100% { 
        filter: hue-rotate(360deg) saturate(1.3) brightness(1.1);
        transform: rotate(360deg);
    }
}

@keyframes neonGlow {
    0% { 
        text-shadow: 0 0 10px #00d4ff, 0 0 20px #9d4edd, 0 0 30px #00ff88;
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 20px #00bfff, 0 0 30px #ffc107, 0 0 40px #ff1744;
        transform: scale(1.02);
    }
    100% { 
        text-shadow: 0 0 15px #00d4ff, 0 0 25px #9d4edd, 0 0 35px #00ff88;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.02); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(2deg); }
    50% { transform: translateY(-30px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-2deg); }
}

/* Text Styling Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-family: var(--font-cyber);
}

h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
}

h2 {
    font-size: 2.2rem;
    color: var(--text-accent);
}

h3 {
    font-size: 1.8rem;
    color: var(--text-highlight);
}

h4 {
    font-size: 1.5rem;
    color: var(--text-special);
}

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

/* Important text highlighting */
.text-highlight {
    color: var(--text-highlight);
    font-weight: 600;
    font-size: 1.15em;
}

.text-accent {
    color: var(--text-accent);
    font-weight: 600;
    font-size: 1.1em;
}

.text-special {
    color: var(--text-special);
    font-weight: 600;
    font-size: 1.1em;
}

.text-large {
    font-size: 1.3em;
    font-weight: 600;
}

.text-xl {
    font-size: 1.5em;
    font-weight: 700;
}

/* University and company names */
.institution-name {
    color: var(--anime-cyan);
    font-weight: 700;
    font-size: 1.2em;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.company-name {
    color: var(--anime-magenta);
    font-weight: 700;
    font-size: 1.15em;
    text-shadow: 0 0 10px rgba(233, 30, 99, 0.4);
}

.degree-title {
    color: var(--anime-violet);
    font-weight: 700;
    font-size: 1.3em;
    text-shadow: 0 0 10px rgba(103, 58, 183, 0.4);
}

.research-title {
    color: var(--neon-purple);
    font-weight: 700;
    font-size: 1.25em;
    text-shadow: 0 0 10px rgba(124, 77, 255, 0.4);
}

/* Cyberpunk decorative elements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.container::before {
    content: '◆';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 2rem;
    color: var(--accent-color);
    animation: var(--cyber-pulse);
    z-index: 1;
    opacity: 0.8;
}

.container::after {
    content: '◇';
    position: absolute;
    bottom: -20px;
    left: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: var(--matrix-spin);
    z-index: 1;
    opacity: 0.8;
}

/* Navigation - Enhanced Cyberpunk Style */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(25px);
    border-bottom: 4px solid transparent;
    border-image: var(--gradient-cyber) 1;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cyber);
    animation: pulse 4s infinite;
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    animation: var(--neon-glow);
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
    position: relative;
    font-family: var(--font-cyber);
    white-space: nowrap;
    overflow: visible;
}

.nav-logo a::before {
    content: '▸';
    position: absolute;
    left: -35px;
    top: 0;
    color: var(--accent-color);
    animation: var(--cyber-pulse);
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    font-family: var(--font-cyber);
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
    animation: var(--cyber-pulse) 1s ease-in-out;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--gradient-cyber);
    transition: width 0.4s ease;
    border-radius: 2px;
    box-shadow: 0 0 15px var(--secondary-color);
}

.nav-link:hover::after {
    width: 90%;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.nav-toggle::before {
    content: '≡';
    font-size: 1.8rem;
    color: var(--primary-color);
    animation: var(--cyber-pulse);
}

.bar {
    display: none;
}

/* Enhanced Hero Section */
.hero {
    padding: 140px 0 100px;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(157, 78, 221, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 30%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 120px,
            rgba(255, 193, 7, 0.03) 122px
        );
    animation: pulse 8s infinite;
}

/* Add cyberpunk decorations to hero */
.hero::after {
    content: '◆ ◇ ▸ ◂ ◊ ◈ ⬢ ⬡';
    position: absolute;
    top: 20%;
    left: 10%;
    font-size: 1.5rem;
    letter-spacing: 3rem;
    color: var(--accent-color);
    animation: float 6s ease-in-out infinite;
    opacity: 0.4;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-family: var(--font-cyber);
    white-space: nowrap;
    overflow: visible;
    word-break: keep-all;
    text-overflow: clip;
}

.highlight {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: var(--neon-glow);
    filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.5));
    position: relative;
    font-size: 1em;
    white-space: nowrap;
}

.highlight::before {
    content: '▸';
    position: absolute;
    left: -40px;
    top: 0;
    color: var(--accent-color);
    animation: var(--matrix-spin);
    font-size: 0.8em;
}

.highlight::after {
    content: '◂';
    position: absolute;
    right: -40px;
    top: 0;
    color: var(--primary-color);
    animation: var(--cyber-pulse);
    font-size: 0.8em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
}

.btn {
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    box-shadow: 0 0 30px rgba(255, 140, 200, 0.2);
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-cyber);
    color: var(--bg-primary);
    border: 3px solid var(--secondary-color);
    box-shadow: 0 0 35px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.6);
    animation: var(--cyber-pulse) 1s ease-in-out;
    letter-spacing: 3px;
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 3px solid var(--secondary-color);
    box-shadow: 0 0 35px rgba(157, 78, 221, 0.4);
}

.btn-secondary:hover {
    background: var(--gradient-cyber);
    color: var(--bg-primary);
    box-shadow: 0 0 50px rgba(157, 78, 221, 0.6);
    transform: translateY(-4px) scale(1.05);
    letter-spacing: 3px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-card {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border: 4px solid transparent;
    border-image: var(--gradient-cyber) 1;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 50px rgba(0, 212, 255, 0.3),
        0 0 100px rgba(157, 78, 221, 0.2),
        inset 0 0 50px rgba(0, 255, 136, 0.1);
    animation: float 10s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.15), transparent, rgba(157, 78, 221, 0.15), transparent);
    animation: var(--matrix-spin);
}

.floating-card i {
    font-size: 5.5rem;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: var(--neon-glow);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: var(--neon-glow);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
    font-family: var(--font-cyber);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-cyber);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

/* About Section */
.about {
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(157, 78, 221, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(0, 255, 136, 0.02) 82px
        );
    opacity: 0.8;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    line-height: 1.9;
    font-weight: 500;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 2rem;
    border: 3px solid transparent;
    border-image: var(--gradient-cyber) 1;
    border-radius: 20px;
    background: rgba(0, 212, 255, 0.08);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.2);
    transition: all 0.4s ease;
    min-width: 140px;
}

.stat:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
    animation: var(--cyber-pulse) 1s ease-in-out;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: var(--neon-glow);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.8rem;
    font-weight: 600;
}

.about-image {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 320px;
    height: 320px;
    background: var(--gradient-bg);
    border: 4px solid transparent;
    border-image: var(--gradient-cyber) 1;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 50px rgba(0, 212, 255, 0.3),
        0 0 100px rgba(157, 78, 221, 0.2),
        inset 0 0 50px rgba(0, 255, 136, 0.1);
    position: relative;
    overflow: hidden;
    animation: float 12s ease-in-out infinite;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent, rgba(157, 78, 221, 0.1), transparent);
    animation: var(--matrix-spin);
}

.image-placeholder i {
    font-size: 7rem;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: var(--neon-glow);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
}

/* Skills Section */
.skills {
    background: var(--bg-primary);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.skill-card {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    padding: 3rem;
    border-radius: 25px;
    border: 3px solid transparent;
    border-image: var(--gradient-cyber) 1;
    text-align: center;
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.skill-card::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.8s;
}

.skill-card:hover::before {
    left: 100%;
}

.skill-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 50px rgba(157, 78, 221, 0.4);
    animation: var(--cyber-pulse) 1s ease-in-out;
}

.skill-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.4);
    position: relative;
}

.skill-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
    animation: var(--matrix-spin);
}

.skill-icon i {
    font-size: 2.5rem;
    color: var(--bg-primary);
}

.skill-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.skill-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
}

/* Projects Section */
.projects {
    background: var(--bg-secondary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 3rem;
}

.project-card {
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-tertiary));
    border-radius: 25px;
    border: 3px solid transparent;
    border-image: var(--gradient-cyber) 1;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 50px rgba(157, 78, 221, 0.4);
}

.project-image {
    height: 240px;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid transparent;
    border-image: var(--gradient-cyber) 1;
    position: relative;
    overflow: hidden;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.1) 50%, transparent 70%);
    animation: var(--matrix-spin);
}

.project-placeholder {
    width: 100px;
    height: 100px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.4);
    position: relative;
    z-index: 2;
}

.project-placeholder i {
    font-size: 2.5rem;
    color: var(--bg-primary);
}

.project-content {
    padding: 2.5rem;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.project-content h3 a {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.project-content h3 a:hover {
    filter: drop-shadow(0 0 25px rgba(157, 78, 221, 0.5));
    text-shadow: 0 0 25px var(--secondary-color);
}

.project-content h3 a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-cyber);
    transition: width 0.4s ease;
    border-radius: 2px;
    box-shadow: 0 0 15px var(--secondary-color);
}

.project-content h3 a:hover::after {
    width: 100%;
}

.project-content h4 {
    font-size: 1.2rem;
    color: var(--text-accent);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.project-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 500;
}

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

.tag {
    background: var(--gradient-cyber);
    color: var(--bg-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
    transition: all 0.3s ease;
}

.tag:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.5);
}

/* Experience Timeline Styles */
.experience-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-cyber);
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.5);
    border-radius: 2px;
}

.experience-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.experience-item:nth-child(odd) {
    flex-direction: row;
}

.experience-item:nth-child(even) {
    flex-direction: row-reverse;
}

.experience-date {
    flex: 0 0 120px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.experience-date span {
    display: inline-block;
    background: var(--gradient-cyber);
    color: var(--bg-primary);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.4);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience-date::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
    z-index: -1;
}

.experience-content {
    flex: 1;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    border-image: var(--gradient-cyber) 1;
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.experience-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(157, 78, 221, 0.1), transparent);
    transition: left 0.6s;
}

.experience-content:hover::before {
    left: 100%;
}

.experience-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 35px rgba(157, 78, 221, 0.3);
    animation: var(--cyber-pulse) 1s ease-in-out;
}

.experience-content h3 {
    font-size: 1.6rem;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.experience-content h4 {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.experience-content p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.experience-content ul {
    margin: 1.2rem 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.experience-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem;
    border: 2px solid transparent;
    border-image: var(--gradient-cyber) 1;
    border-radius: 15px;
    background: rgba(157, 78, 221, 0.08);
    transition: all 0.3s ease;
}

.contact-method:hover {
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
    background: rgba(157, 78, 221, 0.12);
    transform: translateX(5px);
    animation: var(--cyber-pulse) 1s ease-in-out;
}

.contact-method i {
    width: 45px;
    height: 45px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
    font-size: 1.2rem;
}

.contact-form {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    border-image: var(--gradient-cyber) 1;
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.2);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid transparent;
    border-image: var(--gradient-cyber) 1;
    border-radius: 10px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
    background: rgba(157, 78, 221, 0.05);
    animation: var(--neon-glow) 2s ease-in-out;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 2.5rem 0;
    border-top: 4px solid transparent;
    border-image: var(--gradient-cyber) 1;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cyber);
    animation: pulse 4s infinite;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.4);
    font-size: 1.3rem;
}

.social-links a:hover {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 0 40px rgba(157, 78, 221, 0.7);
    animation: var(--cyber-pulse) 1s ease-in-out;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.nav-toggle::before {
    content: '🍔';
    font-size: 1.5rem;
    animation: var(--cyber-pulse);
}

.bar {
    display: none;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .nav-logo a {
        font-size: 1.3rem;
        white-space: nowrap;
        overflow: visible;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(30, 30, 63, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 0 35px rgba(157, 78, 221, 0.5);
        padding: 2rem 0;
        border-bottom: 4px solid transparent;
        border-image: var(--gradient-cyber) 1;
        backdrop-filter: blur(25px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.2rem;
        white-space: nowrap;
        overflow: visible;
    }

    .hero::after {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .experience-timeline::before {
        left: 25px;
    }
    
    .experience-item {
        flex-direction: column !important;
        margin-left: 50px;
        align-items: flex-start;
    }
    
    .experience-item:nth-child(even) {
        flex-direction: column !important;
    }
    
    .experience-date {
        flex: none;
        align-self: flex-start;
        margin-left: -70px;
    }
    
    .experience-date::before {
        left: 25px;
        transform: translateY(-50%);
    }

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

    .nav-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container::before,
    .container::after {
        display: none;
    }

    .highlight::before,
    .highlight::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-logo a {
        font-size: 1.1rem;
        white-space: nowrap;
        overflow: visible;
    }
    
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        white-space: nowrap;
        overflow: visible;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .skill-card,
    .project-card {
        margin: 0 1rem;
    }

    .experience-item {
        margin-left: 30px;
    }
    
    .experience-date {
        margin-left: -50px;
    }
    
    .experience-content {
        padding: 2rem;
    }

    .floating-card {
        width: 200px;
        height: 200px;
    }

    .floating-card i {
        font-size: 4rem;
    }

    .image-placeholder {
        width: 240px;
        height: 240px;
    }

    .image-placeholder i {
        font-size: 5rem;
    }

    .nav-cards {
        margin-top: 2rem;
    }

    .nav-card {
        padding: 1.5rem;
    }

    .nav-card i {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .nav-card h3 {
        font-size: 1.2rem;
    }

    .nav-card p {
        font-size: 0.9rem;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Navigation Cards - Enhanced Kawaii */
.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.nav-card {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    padding: 2.5rem;
    border-radius: 25px;
    border: 3px solid transparent;
    border-image: var(--gradient-cyber) 1;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(157, 78, 221, 0.2), transparent);
    transition: left 0.8s;
}

.nav-card:hover::before {
    left: 100%;
}

.nav-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 50px rgba(157, 78, 221, 0.5);
    color: var(--text-primary);
    animation: var(--cyber-pulse) 1s ease-in-out;
}

.nav-card i {
    font-size: 3.5rem;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    display: block;
    animation: var(--neon-glow);
    filter: drop-shadow(0 0 20px rgba(157, 78, 221, 0.5));
}

.nav-card h3 {
    font-size: 1.5rem;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.nav-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.7;
}

/* Page Header - Enhanced */
.page-header {
    padding: 140px 0 80px;
    background: var(--gradient-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(157, 78, 221, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(157, 78, 221, 0.15) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 120px,
            rgba(0, 255, 136, 0.05) 122px
        );
    animation: pulse 8s infinite;
}

.page-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: var(--neon-glow);
    filter: drop-shadow(0 0 25px rgba(157, 78, 221, 0.6));
    text-transform: uppercase;
    letter-spacing: 3px;
}

.page-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
    line-height: 1.7;
}

/* Active Navigation Link - Enhanced */
.nav-link.active {
    color: var(--primary-color);
    text-shadow: 0 0 25px var(--primary-color), 0 0 50px var(--secondary-color);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.4), rgba(0, 212, 255, 0.3));
    transform: translateY(-5px) scale(1.1);
    animation: var(--neon-glow) 2s ease-in-out infinite;
    border: 2px solid rgba(0, 212, 255, 0.5);
    box-shadow: 
        0 0 30px rgba(157, 78, 221, 0.4),
        inset 0 0 20px rgba(0, 212, 255, 0.2);
}

.nav-link.active::after {
    width: 100%;
    height: 6px;
    background: var(--gradient-cyber);
    box-shadow: 0 0 25px var(--secondary-color);
    animation: var(--cyber-pulse) 2s ease-in-out infinite;
}

/* Contact Info Enhanced */
.contact-info {
    margin-top: 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-tertiary));
    border-radius: 25px;
    border: 3px solid transparent;
    border-image: var(--gradient-cyber) 1;
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.2);
    transition: all 0.4s ease;
}

.contact-info:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 45px rgba(157, 78, 221, 0.4);
    animation: var(--cyber-pulse) 1s ease-in-out;
}

.contact-info h3 {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 1.4rem;
}

/* About Page Text Enhanced */
.about-text h2 {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    margin: 3rem 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    font-weight: 700;
    animation: var(--neon-glow);
    filter: drop-shadow(0 0 15px rgba(157, 78, 221, 0.4));
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-cyber);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.6);
}

/* Enhanced Kawaii Scrollbar */
::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-cyber);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
}

::-webkit-scrollbar-thumb:hover {
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.6);
    animation: var(--neon-glow) 1s ease-in-out;
}

/* Selection Styling */
::selection {
    background: rgba(157, 78, 221, 0.4);
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.8);
}

/* Extra small screens - for very small devices */
@media (max-width: 360px) {
    .nav-logo a {
        font-size: 1.0rem;
        white-space: nowrap;
        overflow: visible;
    }
    
    .hero-title {
        font-size: 1.8rem;
        white-space: nowrap;
        overflow: visible;
        word-break: keep-all;
    }
}

/* Profile Photo Styles */
.profile-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 10s ease-in-out infinite;
}

.profile-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 
        0 0 30px var(--primary-color),
        0 0 60px var(--secondary-color),
        0 0 90px var(--accent-color);
    animation: var(--neon-glow);
    transition: all 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 
        0 0 40px var(--accent-color),
        0 0 80px var(--primary-color),
        0 0 120px var(--secondary-color);
}

.profile-photo-about {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.profile-img-about {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 
        0 0 25px var(--primary-color),
        0 0 50px var(--secondary-color);
    animation: var(--cyber-pulse);
    transition: all 0.3s ease;
}

.profile-img-about:hover {
    transform: scale(1.02) rotate(2deg);
    border-color: var(--accent-color);
    box-shadow: 
        0 0 35px var(--accent-color),
        0 0 70px var(--primary-color);
}

@media (max-width: 768px) {
    .profile-img {
        width: 200px;
        height: 200px;
    }
    
    .profile-img-about {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .profile-img {
        width: 150px;
        height: 150px;
    }
    
    .profile-img-about {
        width: 140px;
        height: 140px;
    }
} 