/* ==========================================================================
   1. CYBER THEME VARIABLES & CORE CONFIGURATION
   ========================================================================== */
:root {
    --bg-deep: #03050a;
    --bg-surface: #0a0f1c;
    --bg-card: rgba(10, 15, 28, 0.7);
    --bg-card-hover: rgba(15, 25, 45, 0.85);
    
    --neon-cyan: #00f2a1;
    --neon-blue: #00c6ff;
    --neon-purple: #8b5cf6;
    --neon-alert: #ff0055;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #334155;
    
    --font-display: 'Outfit', sans-serif;
    --font-code: 'JetBrains Mono', monospace;
    
    --glass-border: rgba(0, 242, 161, 0.25);
    --glass-border-strong: rgba(0, 242, 161, 0.6);
    --glass-border-blue: rgba(0, 198, 255, 0.4);
    --glass-bg: rgba(3, 5, 10, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(0, 242, 161, 0.08);
    
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ==========================================================================
   2. GLOBAL RESET & ADVANCED SCROLLBAR
   ========================================================================== */
* {
    margin: 0; padding: 0; box-sizing: border-box;
    cursor: none; 
}

html { 
    scroll-behavior: smooth; 
    font-size: 16px; 
    overflow-x: hidden; 
}

body {
    font-family: var(--font-display);
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); border-left: 1px solid rgba(255,255,255,0.02); }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 5px; border: 2px solid var(--bg-deep); }
::-webkit-scrollbar-thumb:hover { background: var(--neon-cyan); border: 2px solid var(--bg-deep); }
::selection { background: var(--neon-cyan); color: var(--bg-deep); }

a { text-decoration: none; color: inherit; outline: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; user-select: none; }

#top-scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan));
    z-index: 999999; box-shadow: 0 0 15px var(--neon-cyan);
    transition: width 0.1s ease-out;
}

#smooth-wrapper {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    overflow: hidden; z-index: 1;
}

/* ==========================================================================
   4. BACKGROUND CANVAS & PRELOADER
   ========================================================================== */
#canvas-network {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1; opacity: 0.7; pointer-events: none;
}
.cyber-grid-floor {
    position: fixed; bottom: -50vh; left: -50vw; width: 200vw; height: 100vh;
    background-image: 
        linear-gradient(rgba(0, 242, 161, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 161, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(600px) rotateX(70deg);
    z-index: -2; pointer-events: none;
    animation: gridMove 15s linear infinite;
}
@keyframes gridMove {
    0% { transform: perspective(600px) rotateX(70deg) translateY(0); }
    100% { transform: perspective(600px) rotateX(70deg) translateY(60px); }
}
.bg-glow {
    position: fixed; width: 80vw; height: 80vw; border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.05) 0%, transparent 60%);
    top: -30%; left: -20%; z-index: -3; pointer-events: none;
}
.bg-glow-2 {
    position: fixed; width: 70vw; height: 70vw; border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 242, 161, 0.04) 0%, transparent 60%);
    bottom: -30%; right: -20%; z-index: -3; pointer-events: none;
}
#preloader {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: var(--bg-deep); z-index: 99999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.cyber-loader { width: 120px; height: 120px; position: relative; }
.cyber-loader::before, .cyber-loader::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%; border: 3px solid transparent;
}
.cyber-loader::before {
    border-top-color: var(--neon-cyan); border-bottom-color: var(--neon-cyan);
    animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}
.cyber-loader::after {
    border-left-color: var(--neon-blue); border-right-color: var(--neon-blue);
    animation: spin-reverse 0.8s linear infinite; scale: 0.7;
}
.loader-text {
    margin-top: 30px; font-family: var(--font-code); color: var(--neon-cyan);
    font-size: 1.2rem; letter-spacing: 6px; animation: pulse 1s infinite alternate;
}
.progress-bar-container {
    width: 300px; height: 2px; background: rgba(255,255,255,0.1); margin-top: 20px; position: relative; overflow: hidden;
}
.progress-bar {
    position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--neon-cyan); box-shadow: 0 0 15px var(--neon-cyan); transition: width 0.2s ease;
}

/* ==========================================================================
   5. ADVANCED CUSTOM CURSOR
   ========================================================================== */
.cursor-dot {
    position: fixed; width: 8px; height: 8px; background: var(--neon-cyan);
    border-radius: 50%; pointer-events: none; z-index: 9999999;
    transform: translate(-50%, -50%); box-shadow: 0 0 15px var(--neon-cyan);
    transition: background 0.2s, box-shadow 0.2s;
}
.cursor-ring {
    position: fixed; width: 50px; height: 50px; border: 1px solid rgba(0, 242, 161, 0.4);
    border-radius: 50%; pointer-events: none; z-index: 9999998;
    transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.1s;
}
.cursor-hover .cursor-ring {
    width: 80px; height: 80px; border-color: var(--neon-blue); 
    background: rgba(0, 198, 255, 0.05); backdrop-filter: blur(2px);
    border-style: dashed; animation: spin 4s linear infinite;
}
.cursor-hover .cursor-dot {
    background: var(--text-main); box-shadow: 0 0 20px var(--text-main);
    transform: translate(-50%, -50%) scale(1.5);
}

/* ==========================================================================
   6. UTILITIES, TYPOGRAPHY & BUTTONS
   ========================================================================== */
.container { max-width: 1440px; margin: 0 auto; padding: 0 5vw; }
.section-pad { padding: 150px 0; }

.section-header { text-align: center; margin-bottom: 100px; position: relative; }
.sec-bg-text {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: clamp(4rem, 10vw, 10rem); font-weight: 900; color: rgba(255,255,255,0.015);
    white-space: nowrap; pointer-events: none; z-index: -1; text-transform: uppercase;
    font-family: var(--font-display); letter-spacing: 10px;
}
.sec-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 15px;
    position: relative; display: inline-block;
}
.sec-title span { color: var(--neon-cyan); -webkit-text-fill-color: var(--neon-cyan); text-shadow: 0 0 30px rgba(0,242,161,0.3);}
.sec-subtitle {
    font-family: var(--font-code); color: var(--neon-blue); font-size: clamp(0.9rem, 1.5vw, 1.2rem); 
    letter-spacing: 6px; text-transform: uppercase; display: inline-block; padding: 8px 20px;
    border: 1px solid rgba(0, 198, 255, 0.2); border-radius: 4px; background: rgba(0, 198, 255, 0.05);
    box-shadow: inset 0 0 20px rgba(0,198,255,0.05);
}

.btn-cyber {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    padding: 18px 50px; font-family: var(--font-code); font-weight: 800; font-size: 1.1rem;
    color: var(--bg-deep); background: var(--neon-cyan); text-transform: uppercase;
    letter-spacing: 3px; overflow: hidden; transition: var(--transition-smooth);
    z-index: 1; border: none; clip-path: polygon(15% 0, 100% 0, 100% 70%, 85% 100%, 0 100%, 0 30%);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.5);
}
.btn-cyber::before {
    content: ''; position: absolute; top: 0; left: 0; width: 25px; height: 100%;
    background: rgba(255,255,255,0.9); transform: skewX(-15deg) translateX(-80px);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1); z-index: -1; filter: blur(3px);
}
.btn-cyber:hover {
    box-shadow: 0 0 40px rgba(0, 242, 161, 0.7); transform: translateY(-5px) scale(1.03);
    color: var(--bg-deep); background: #ffffff;
}
.btn-cyber:hover::before { transform: skewX(-15deg) translateX(350px); }

.btn-outline {
    background: transparent; color: var(--neon-cyan); border: 2px solid var(--neon-cyan);
    clip-path: none; border-radius: 6px; padding: 15px 35px; font-family: var(--font-code);
    text-transform: uppercase; letter-spacing: 2px; font-weight: 700; position: relative; overflow: hidden;
    transition: var(--transition-smooth);
}
.btn-outline::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0%;
    background: var(--neon-cyan); transition: var(--transition-smooth); z-index: -1;
}
.btn-outline:hover { color: var(--bg-deep); box-shadow: 0 0 30px rgba(0, 242, 161, 0.5); }
.btn-outline:hover::after { height: 100%; }

.glass-card {
    background: var(--bg-card); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border); border-radius: 24px;
    padding: 50px; box-shadow: var(--glass-shadow); position: relative; overflow: hidden;
    z-index: 1; transition: var(--transition-bounce);
}
.glass-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.08), transparent 40%);
    z-index: -1; transition: opacity 0.5s; opacity: 0; pointer-events: none;
}
.glass-card:hover { border-color: var(--glass-border-strong); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.5);}
.glass-card:hover::before { opacity: 1; }

/* ==========================================================================
   7. NAVIGATION
   ========================================================================== */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 30px 0; transition: var(--transition-smooth);
}
header.scrolled {
    background: rgba(3, 5, 10, 0.9); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255,255,255,0.08); padding: 15px 0;
    box-shadow: 0 10px 50px rgba(0,0,0,0.8);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.brand { font-size: 2.2rem; font-weight: 900; letter-spacing: -1px; display: flex; align-items: center; text-shadow: 0 0 20px rgba(255,255,255,0.1);}
.brand span { color: var(--neon-cyan); text-shadow: 0 0 20px rgba(0,242,161,0.4);}
.brand-dot { animation: blink 2s infinite; }

.nav-links { display: flex; gap: 40px; }
.nav-link {
    font-family: var(--font-code); font-size: 0.95rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 2px; position: relative; transition: color 0.3s;
    font-weight: 600; padding-bottom: 5px;
}
.nav-link:hover { color: var(--text-main); text-shadow: 0 0 10px rgba(255,255,255,0.3);}
.nav-link::after { 
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); 
    width: 0; height: 2px; background: var(--neon-cyan); transition: var(--transition-smooth); 
}
.nav-link:hover::after { width: 100%; box-shadow: 0 0 15px var(--neon-cyan); }

.menu-toggle { display: none; font-size: 2rem; color: var(--text-main); background: none; border: none; transition: 0.3s;}
.menu-toggle:hover { color: var(--neon-cyan); text-shadow: 0 0 15px var(--neon-cyan);}

/* ==========================================================================
   8. HERO SECTION 
   ========================================================================== */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 120px;}

.hero-grid { 
    display: grid; 
    grid-template-columns: 1.2fr 450px; 
    gap: 60px; 
    align-items: center; 
    width: 100%;
}
.hero-text-box { position: relative; z-index: 2; width: 100%;}

.terminal-box {
    display: inline-block; background: rgba(0,0,0,0.8); backdrop-filter: blur(15px); 
    border: 1px solid var(--glass-border); padding: 15px 25px; border-radius: 8px; 
    font-family: var(--font-code); font-size: 1rem; color: var(--neon-cyan); 
    margin-bottom: 35px; box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}
.terminal-box .user { color: var(--text-main); font-weight: 700;}
.terminal-box .path { color: var(--neon-blue); font-weight: 700;}

.hero-title { font-size: clamp(3rem, 5.5vw, 6rem); line-height: 1.05; margin-bottom: 25px; font-weight: 900; letter-spacing: -2px;}
.hero-title .glitch-layer { position: relative; display: inline-block; }

.glitch-layer::before, .glitch-layer::after {
    content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-deep); white-space: nowrap;
}
.glitch-layer::before { left: 3px; text-shadow: -3px 0 var(--neon-cyan); clip: rect(24px, 550px, 90px, 0); animation: glitch-anim 3s infinite linear alternate-reverse; }
.glitch-layer::after { left: -3px; text-shadow: -3px 0 var(--neon-purple); clip: rect(85px, 550px, 140px, 0); animation: glitch-anim 2.5s infinite linear alternate-reverse; }

.typewriter-wrap { font-size: clamp(1.2rem, 2vw, 2rem); color: var(--neon-blue); font-family: var(--font-code); margin-bottom: 40px; height: 45px; display: flex; align-items: center; font-weight: 700; text-shadow: 0 0 10px rgba(0,198,255,0.3);}
.hero-desc { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--text-muted); max-width: 650px; margin-bottom: 50px; line-height: 1.8; font-weight: 400;}

.hero-actions { display: flex; gap: 30px; align-items: center; }
.social-hero { display: flex; gap: 15px;}
.social-hero a { 
    width: 60px; height: 60px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); 
    display: flex; justify-content: center; align-items: center; font-size: 1.5rem; color: var(--text-main);
    transition: var(--transition-bounce); background: var(--glass-bg); backdrop-filter: blur(10px);
}
.social-hero a:hover { background: var(--neon-cyan); color: var(--bg-deep); border-color: var(--neon-cyan); transform: translateY(-8px) scale(1.1); box-shadow: 0 15px 30px rgba(0,242,161,0.4);}

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; perspective: 1200px; width: 100%;}
.profile-container {
    position: relative; width: 100%; aspect-ratio: 1; transform-style: preserve-3d;
    animation: floatHero 8s ease-in-out infinite; margin: 0 auto;
}
.profile-frame {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border: 4px dashed var(--neon-blue); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 12s ease-in-out infinite; opacity: 0.5; box-shadow: inset 0 0 30px rgba(0,198,255,0.2);
}
.profile-frame-2 {
    position: absolute; top: -20px; left: -20px; width: calc(100% + 40px); height: calc(100% + 40px);
    border: 2px solid var(--neon-cyan); border-radius: 50%; opacity: 0.3;
    animation: spin 15s linear infinite; box-shadow: 0 0 30px rgba(0,242,161,0.2);
}
.profile-frame-3 {
    position: absolute; top: -40px; left: -40px; width: calc(100% + 80px); height: calc(100% + 80px);
    border: 1px solid var(--neon-purple); border-radius: 50%; opacity: 0.15;
    animation: spin-reverse 20s linear infinite;
}
.profile-img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
    filter: grayscale(10%) contrast(115%); border: 8px solid rgba(10, 15, 28, 0.8);
    box-shadow: 0 0 80px rgba(0, 198, 255, 0.3), inset 0 0 60px rgba(0,0,0,0.9);
    position: absolute; z-index: 5; top: 0; left: 0;
}

.tech-badge {
    position: absolute; background: rgba(10, 15, 28, 0.9); backdrop-filter: blur(15px);
    border: 1px solid var(--neon-cyan); padding: 15px 30px; border-radius: 50px;
    font-family: var(--font-code); font-size: 0.95rem; color: var(--neon-cyan); font-weight: 800;
    display: flex; align-items: center; gap: 15px; z-index: 10; box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    white-space: nowrap;
}
.tech-badge i { font-size: 1.5rem; }
.badge-1 { top: 10%; right: -10%; animation: orbit1 6s ease-in-out infinite 1s; }
.badge-2 { bottom: 15%; left: -15%; animation: orbit2 7s ease-in-out infinite 2s; border-color: var(--neon-blue); color: var(--neon-blue);}
.badge-3 { top: 60%; right: -20%; animation: orbit3 8s ease-in-out infinite 3s; border-color: var(--neon-purple); color: var(--neon-purple);}

@keyframes floatHero { 0%, 100% { transform: translateY(0) rotateX(5deg) rotateY(-5deg); } 50% { transform: translateY(-30px) rotateX(-5deg) rotateY(5deg); } }
@keyframes orbit1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(20px, -20px) scale(1.05); } }
@keyframes orbit2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-25px, 15px) scale(1.05); } }
@keyframes orbit3 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(15px, 25px) scale(1.05); } }

.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 15px;
    opacity: 0.7; transition: 0.3s; cursor: pointer;
}
.scroll-indicator:hover { opacity: 1; transform: translateX(-50%) translateY(-5px); }
.mouse { width: 34px; height: 56px; border: 2px solid var(--text-muted); border-radius: 20px; position: relative;}
.wheel { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 4px; height: 10px; background: var(--neon-cyan); border-radius: 2px; animation: scrollWheel 2s infinite;}
.scroll-text { font-family: var(--font-code); font-size: 0.8rem; letter-spacing: 4px; color: var(--text-muted); text-transform: uppercase; font-weight: 700;}
@keyframes scrollWheel { 0% { top: 10px; opacity: 1; } 100% { top: 30px; opacity: 0; } }

/* ==========================================================================
   9. ABOUT & SKILLS
   ========================================================================== */
.about-section { position: relative; z-index: 10; background: linear-gradient(180deg, transparent 0%, rgba(10, 15, 28, 0.4) 100%);}
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }

.about-text p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 25px; line-height: 1.8; font-weight: 400;}
.about-text p strong { color: var(--text-main); font-weight: 700;}

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.stat-box { 
    padding: 30px 20px; background: rgba(255,255,255,0.02); border-left: 4px solid var(--neon-cyan); 
    border-radius: 0 12px 12px 0; transition: var(--transition-bounce);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.stat-box:hover { background: rgba(0,242,161,0.08); transform: translateX(15px); box-shadow: 0 15px 30px rgba(0,0,0,0.4);}
.stat-num { font-size: 3.5rem; font-weight: 900; color: var(--text-main); font-family: var(--font-code); line-height: 1; margin-bottom: 10px; text-shadow: 0 0 20px rgba(255,255,255,0.2);}
.stat-label { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; font-weight: 700;}

.skills-container { position: relative; }
.skills-header { font-size: 1.3rem; margin-bottom: 35px; font-family: var(--font-code); color: var(--neon-cyan); display: flex; align-items: center; gap: 20px; font-weight: 800;}
.skills-header::after { content: ''; flex-grow: 1; height: 1px; background: linear-gradient(90deg, rgba(0,242,161,0.4), transparent); }

.skill-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 25px; }
.skill-node {
    background: rgba(10, 15, 28, 0.8); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.08);
    padding: 25px 15px; border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 15px;
    transition: var(--transition-bounce); font-family: var(--font-code); font-size: 1rem; text-align: center; font-weight: 600;
}
.skill-node i { font-size: 3rem; color: var(--text-muted); transition: 0.4s;}
.skill-node:hover { transform: translateY(-10px) scale(1.08); border-color: var(--neon-cyan); background: rgba(0, 242, 161, 0.08); box-shadow: 0 20px 40px rgba(0, 242, 161, 0.2), inset 0 0 25px rgba(0,242,161,0.1);}
.skill-node:hover i { color: var(--text-main); transform: scale(1.1); text-shadow: 0 0 20px rgba(255,255,255,0.8);}

/* ==========================================================================
   10. EDUCATION
   ========================================================================== */
.edu-featured-card {
    background: linear-gradient(135deg, rgba(10, 15, 28, 0.9), rgba(0, 0, 0, 0.95));
    border: 1px solid var(--neon-cyan);
    border-radius: 20px;
    padding: 40px 50px;
    margin-bottom: 50px; 
    display: flex;
    align-items: center;
    gap: 35px;
    box-shadow: 0 0 40px rgba(0, 242, 161, 0.15), inset 0 0 20px rgba(0, 242, 161, 0.05);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.edu-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 242, 161, 0.3);
    background: rgba(0, 242, 161, 0.03);
}

.edu-featured-icon {
    width: 90px; height: 90px;
    background: rgba(0, 242, 161, 0.1); border-radius: 20px;
    display: flex; justify-content: center; align-items: center;
    font-size: 2.8rem; color: var(--neon-cyan);
    border: 1px solid rgba(0, 242, 161, 0.4);
    flex-shrink: 0; box-shadow: inset 0 0 20px rgba(0, 242, 161, 0.2);
}

.edu-featured-content { flex-grow: 1; }

.edu-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0, 198, 255, 0.1); border: 1px solid rgba(0, 198, 255, 0.3);
    color: var(--neon-blue); padding: 6px 15px; border-radius: 30px;
    font-size: 0.8rem; font-weight: 800; letter-spacing: 2px; margin-bottom: 15px;
}

.blink-dot { 
    width: 10px; height: 10px; background: var(--neon-cyan); border-radius: 50%; 
    display: inline-block; animation: liveGlitchBlink 1.8s infinite linear; 
}

@keyframes liveGlitchBlink {
    0%, 100% { background-color: var(--neon-cyan); box-shadow: 0 0 8px var(--neon-cyan); opacity: 1; transform: scale(1); }
    10% { background-color: #ffffff; box-shadow: 0 0 15px #ffffff, 0 0 30px var(--neon-cyan); opacity: 1; transform: scale(1.2); }
    25% { background-color: var(--neon-cyan); box-shadow: 0 0 5px var(--neon-cyan); opacity: 0.2; transform: scale(1); }
    35% { opacity: 1; transform: translateX(1px); }
    40% { background-color: #ffffff; box-shadow: 0 0 10px #ffffff; transform: translateX(-1px); }
    45% { background-color: var(--neon-cyan); box-shadow: 0 0 8px var(--neon-cyan); transform: translateX(0); }
    65% { opacity: 0.3; }
    80% { opacity: 1; }
}

.edu-featured-content h3 {
    font-size: 2.2rem; font-weight: 900; color: var(--text-main); line-height: 1.2; margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.edu-featured-content p { font-size: 1.1rem; color: var(--text-muted); }
.edu-featured-content .divider { color: var(--neon-cyan); margin: 0 10px; opacity: 0.5; }

@media (max-width: 768px) {
    .edu-featured-card { flex-direction: column; text-align: center; padding: 30px 20px; gap: 20px; }
    .edu-featured-icon { width: 70px; height: 70px; font-size: 2rem; }
    .edu-featured-content h3 { font-size: 1.6rem; }
    .edu-featured-content p { font-size: 0.95rem; }
    .edu-featured-content .divider { display: block; margin: 5px 0; color: transparent; }
}
   
.edu-section { background: var(--bg-deep); position: relative; z-index: 5;}
/* .edu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; } */
.edu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
/* .edu-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(3, 5, 10, 0.9));
    border: 1px solid rgba(0, 198, 255, 0.2); border-radius: 20px; padding: 40px 30px;
    display: flex; gap: 25px; align-items: flex-start; transition: var(--transition-bounce);
    position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
} */

.edu-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(3, 5, 10, 0.9));
    border: 1px solid rgba(0, 198, 255, 0.2); border-radius: 20px; padding: 30px 20px;
    display: flex; gap: 25px; align-items: flex-start; transition: var(--transition-bounce);
    position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.edu-card::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(transparent, rgba(0, 198, 255, 0.1), transparent 30%);
    animation: rotateGlow 4s linear infinite; pointer-events: none; opacity: 0; transition: 0.5s;
}
.edu-card:hover { transform: translateY(-10px); border-color: var(--neon-blue); box-shadow: 0 20px 50px rgba(0, 198, 255, 0.2);}
.edu-card:hover::before { opacity: 1; }

.edu-icon {
    width: 70px; height: 70px; background: rgba(0, 198, 255, 0.1); border-radius: 16px;
    display: flex; justify-content: center; align-items: center; font-size: 2rem; color: var(--neon-blue);
    border: 1px solid rgba(0, 198, 255, 0.3); flex-shrink: 0; box-shadow: inset 0 0 15px rgba(0, 198, 255, 0.2);
}
.edu-content h3 { font-size: 1.4rem; font-weight: 800; line-height: 1.3; margin-bottom: 10px; color: var(--text-main);}
.edu-content p { font-family: var(--font-code); font-size: 0.95rem; color: var(--text-muted);}

@keyframes rotateGlow { 100% { transform: rotate(1turn); } }

/* ==========================================================================
   11. CERTIFICATIONS (PREMIUM SMOOTH HOVER)
   ========================================================================== */
.cert-section { 
    background: #020408; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative; z-index: 5;
}

.cert-static-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px;
    padding: 20px 0;
}

.cert-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; 
    background: rgba(10, 15, 28, 0.6); border: 1px solid rgba(0, 242, 161, 0.15); 
    padding: 40px 20px; border-radius: 20px; 
    position: relative; overflow: hidden; 
    backdrop-filter: blur(12px); box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cert-item img { 
    width: 120px; height: 120px; object-fit: contain; 
    filter: drop-shadow(0 0 15px rgba(0,242,161,0.05)); 
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); 
}

.cert-item span { 
    font-weight: 800; font-size: 1.15rem; text-align: center; 
    color: var(--text-muted); font-family: var(--font-display); 
    line-height: 1.4;
    transition: all 0.4s ease; 
}

.cert-item:hover {
    border-color: var(--neon-cyan); 
    background: rgba(0, 242, 161, 0.05);
    box-shadow: 0 15px 40px rgba(0, 242, 161, 0.2), inset 0 0 20px rgba(0, 242, 161, 0.05);
    transform: translateY(-10px);
}

.cert-item:hover img {
    transform: scale(1.15); 
    filter: drop-shadow(0 15px 25px rgba(0,242,161,0.4)); 
}

.cert-item:hover span {
    color: var(--text-main);
    text-shadow: 0 0 15px rgba(0, 242, 161, 0.6); 
}

/* ==========================================================================
   12. EXPERIENCE TIMELINE
   ========================================================================== */
.experience-section { background: linear-gradient(180deg, var(--bg-deep) 0%, #050810 100%); position: relative;}

.timeline { position: relative; max-width: 1100px; margin: 0 auto; padding: 60px 0;}
.timeline-line {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 4px; height: 100%; background: rgba(255,255,255,0.05); border-radius: 4px;
}
.timeline-progress {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 4px; height: 0%; background: linear-gradient(to bottom, var(--neon-cyan), var(--neon-blue), var(--neon-purple));
    border-radius: 4px; box-shadow: 0 0 20px var(--neon-cyan); transition: height 0.1s ease-out;
}

.time-item { display: flex; justify-content: flex-end; padding-right: 50%; position: relative; margin-bottom: 100px; width: 100%; }
.time-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: 50%; }

.time-node {
    position: absolute; top: 40px; left: 50%; transform: translate(-50%, -50%);
    width: 28px; height: 28px; border-radius: 50%; background: var(--bg-deep);
    border: 5px solid var(--text-muted); z-index: 2; transition: var(--transition-smooth);
}
.time-item.active .time-node { border-color: var(--neon-cyan); box-shadow: 0 0 25px var(--neon-cyan); background: var(--neon-cyan);}
.time-item:nth-child(even).active .time-node { border-color: var(--neon-blue); box-shadow: 0 0 25px var(--neon-blue); background: var(--neon-blue);}

.time-content {
    width: 88%; 
    background: var(--bg-card); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; padding: 45px;
    transition: var(--transition-bounce); position: relative; overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 15px 40px rgba(0,0,0,0.5);
}
.time-content::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 40%);
    z-index: -1; opacity: 0; transition: opacity 0.5s; pointer-events: none;
}

.time-item:hover .time-content { border-color: rgba(0, 242, 161, 0.5); transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,242,161,0.15);}
.time-item:hover .time-content::before { opacity: 1; }
.time-item:nth-child(even):hover .time-content { border-color: rgba(0, 198, 255, 0.5); box-shadow: 0 30px 60px rgba(0,198,255,0.15);}

.time-content::after {
    content: ''; position: absolute; top: 35px; right: -12px; width: 24px; height: 24px;
    background: var(--bg-card); border-top: 1px solid rgba(255,255,255,0.05); border-right: 1px solid rgba(255,255,255,0.05);
    transform: rotate(45deg); z-index: -1; transition: var(--transition-smooth);
}
.time-item:nth-child(even) .time-content::after { right: auto; left: -12px; border-right: none; border-left: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); border-top: none; }
.time-item:hover .time-content::after { border-color: rgba(0, 242, 161, 0.5); }
.time-item:nth-child(even):hover .time-content::after { border-color: rgba(0, 198, 255, 0.5); }

.time-date { 
    font-family: var(--font-code); color: var(--neon-cyan); font-size: 0.95rem; margin-bottom: 20px; 
    display: inline-flex; align-items: center; gap: 10px; background: rgba(0,242,161,0.1); 
    padding: 8px 20px; border-radius: 30px; border: 1px solid rgba(0,242,161,0.2); font-weight: 800;
}
.time-item:nth-child(even) .time-date { color: var(--neon-blue); background: rgba(0,198,255,0.1); border-color: rgba(0,198,255,0.2);}

.time-role { font-size: 2rem; font-weight: 900; margin-bottom: 8px; color: var(--text-main); line-height: 1.2;}
.time-company { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 25px; font-weight: 600; font-family: var(--font-code);}

.time-desc { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8;}
.time-desc ul { margin-top: 20px; display: none; } 
.time-desc ul li { position: relative; padding-left: 30px; margin-bottom: 12px;}
.time-desc ul li::before { content: '▹'; position: absolute; left: 0; color: var(--neon-cyan); font-family: var(--font-code); font-size: 1.3rem;}
.time-item:nth-child(even) .time-desc ul li::before { color: var(--neon-blue); }

.read-more-btn { 
    background: none; border: none; color: var(--text-main); font-family: var(--font-code); 
    font-size: 0.95rem; cursor: pointer; margin-top: 25px; display: inline-flex; align-items: center; 
    gap: 10px; transition: var(--transition-fast); padding: 10px 20px; border-radius: 6px;
    border: 1px dashed rgba(255,255,255,0.2); font-weight: 700;
}
.read-more-btn:hover { background: rgba(255,255,255,0.05); color: var(--neon-cyan); border-color: var(--neon-cyan);}

/* ==========================================================================
   13. PROJECTS
   ========================================================================== */
.projects-section { position: relative; z-index: 10; background: var(--bg-deep);}
.project-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); gap: 50px; perspective: 1500px; }

.p-card {
    background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px; overflow: hidden; transform-style: preserve-3d;
    transition: border-color 0.4s; display: flex; flex-direction: column;
    position: relative;
}
.p-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(1000px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 40%);
    z-index: -1; opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.p-card:hover { border-color: var(--glass-border-strong); z-index: 10; box-shadow: 0 30px 60px rgba(0,0,0,0.8);}
.p-card:hover::before { opacity: 1; }

.p-img-wrapper { position: relative; height: 320px; overflow: hidden; transform: translateZ(50px); border-bottom: 1px solid rgba(255,255,255,0.05);}
.p-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(50%) contrast(110%); transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.p-card:hover .p-img { filter: grayscale(0%); transform: scale(1.1); }
.p-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-surface), transparent); }

.p-tags { position: absolute; top: 25px; left: 25px; display: flex; gap: 12px; flex-wrap: wrap; z-index: 2;}
.p-tag { background: rgba(0,0,0,0.8); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); padding: 6px 15px; border-radius: 30px; font-family: var(--font-code); font-size: 0.75rem; color: var(--text-main); font-weight: 800; letter-spacing: 1px;}

.p-content { padding: 45px 40px; transform: translateZ(70px); display: flex; flex-direction: column; flex-grow: 1;}
.p-title { font-size: 1.8rem; font-weight: 900; margin-bottom: 20px; line-height: 1.3;}
.p-desc { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 35px; line-height: 1.8; flex-grow: 1; font-weight: 300;}

.p-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px;}
.view-btn {
    background: none; border: none; color: var(--neon-cyan); font-family: var(--font-code);
    font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; 
    display: flex; align-items: center; gap: 12px; cursor: pointer; padding: 10px 0;
    position: relative;
}
.view-btn::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--neon-cyan); transition: var(--transition-fast);}
.view-btn i { transition: var(--transition-bounce); }
.view-btn:hover::after { width: 100%; box-shadow: 0 0 10px var(--neon-cyan);}
.view-btn:hover i { transform: translateX(10px); }

/* Fullscreen Holographic Modal */
.modal {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(3, 5, 10, 0.9); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    z-index: 999999; display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.modal.active { opacity: 1; visibility: visible; }

.modal-content {
    width: 90%; max-width: 1200px; max-height: 90vh; background: var(--bg-surface);
    border: 1px solid var(--neon-cyan); border-radius: 24px; overflow-y: auto;
    position: relative; transform: translateY(100px) scale(0.9); opacity: 0; transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 100px rgba(0, 242, 161, 0.15), inset 0 0 30px rgba(0,242,161,0.05);
}
.modal.active .modal-content { transform: translateY(0) scale(1); opacity: 1; transition-delay: 0.1s;}

.close-modal {
    position: absolute; top: 30px; right: 30px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    width: 60px; height: 60px; border-radius: 50%; color: white; font-size: 1.8rem; 
    display: flex; justify-content: center; align-items: center; transition: var(--transition-bounce); z-index: 10;
}
.close-modal:hover { background: var(--neon-cyan); color: var(--bg-deep); transform: rotate(90deg) scale(1.1); border-color: var(--neon-cyan); box-shadow: 0 0 20px var(--neon-cyan);}

.modal-body { padding: 80px; }
.m-title { font-size: 3.5rem; margin-bottom: 30px; color: var(--text-main); font-weight: 900; line-height: 1.2;}
.m-img { width: 100%; max-height: 600px; object-fit: cover; border-radius: 16px; margin-bottom: 50px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 30px 60px rgba(0,0,0,0.6);}
.m-desc { font-size: 1.2rem; color: var(--text-muted); line-height: 1.8; font-weight: 300;}
.m-desc h4 { color: var(--neon-cyan); margin: 40px 0 20px; font-size: 1.5rem; font-family: var(--font-code); font-weight: 800; text-transform: uppercase;}
.m-desc ul { list-style: none; margin-bottom: 40px;}
.m-desc ul li { position: relative; padding-left: 30px; margin-bottom: 15px;}
.m-desc ul li::before { content: '▹'; position: absolute; left: 0; color: var(--neon-cyan); font-family: var(--font-code); font-size: 1.4rem;}
.m-desc a { color: var(--text-main); font-weight: 700; text-decoration: underline; text-decoration-color: var(--neon-cyan); text-underline-offset: 6px; transition: 0.3s;}
.m-desc a:hover { color: var(--neon-cyan); background: rgba(0,242,161,0.1); padding: 5px 10px; border-radius: 6px;}

/* ==========================================================================
   14. CONTACT SECTION
   ========================================================================== */
.contact-section { background: linear-gradient(0deg, #020306 0%, var(--bg-deep) 100%); text-align: center; position: relative; overflow: hidden;}
.contact-section::before {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 100vw; height: 60vh; background: radial-gradient(ellipse at bottom, rgba(0, 198, 255, 0.05) 0%, transparent 70%); z-index: 1; pointer-events: none;
}

.terminal-contact {
    max-width: 900px; margin: 0 auto; background: rgba(5, 5, 5, 0.9); backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; text-align: left; 
    overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 40px rgba(0, 242, 161, 0.05);
    position: relative; z-index: 2;
}
.term-head { background: #111; padding: 20px 25px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.1);}
.term-dot { width: 16px; height: 16px; border-radius: 50%; }
.term-dot.r { background: #ff5f56; } .term-dot.y { background: #ffbd2e; } .term-dot.g { background: #27c93f; }
.term-title { margin-left: 15px; font-family: var(--font-code); color: var(--text-muted); font-size: 0.95rem; font-weight: 600;}

.term-body { padding: 50px; font-family: var(--font-code); font-size: 1.1rem; color: var(--text-muted); line-height: 2.2;}
.c-prompt { color: var(--neon-cyan); font-weight: 700;}
.c-cmd { color: white; }
.c-res { padding-left: 25px; margin: 20px 0 40px; color: var(--neon-blue); display: none;} 
.c-res.visible { display: block; animation: fadeIn 0.5s ease forwards; }
.c-res a { color: var(--neon-cyan); position: relative; display: inline-block; padding-bottom: 2px;}
.c-res a::after { content:''; position: absolute; bottom:0; left:0; width:100%; height:1px; background: var(--neon-cyan); transition: 0.3s; transform-origin: right; transform: scaleX(0);}
.c-res a:hover::after { transform: scaleX(1); transform-origin: left;}

/* ==========================================================================
   15. FOOTER
   ========================================================================== */
footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 60px 0; text-align: center; color: var(--text-muted); font-size: 1rem; background: #020306; position: relative; z-index: 2;}
.footer-socials { display: flex; justify-content: center; gap: 30px; margin-bottom: 30px;}
.footer-socials a { font-size: 2rem; transition: var(--transition-bounce); color: var(--text-muted);}
.footer-socials a:hover { color: var(--neon-cyan); transform: translateY(-8px) scale(1.15); filter: drop-shadow(0 0 15px var(--neon-cyan));}
.footer-text { font-family: var(--font-code); letter-spacing: 1.5px; font-weight: 600;}

/* ==========================================================================
   16. ANIMATIONS & RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes spin-reverse { 100% { transform: rotate(-360deg); } }
@keyframes pulse { 100% { opacity: 0.5; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(80px); transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 1400px) {
    .hero-title { font-size: clamp(3.5rem, 5vw, 5rem); }
}

@media (max-width: 1200px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 80px;}
    .hero-actions { justify-content: center; }
    .terminal-box { margin: 0 auto 30px; }
    .hero-desc { margin: 0 auto 50px; }
    .hero-visual { margin-top: 40px; }
    .profile-container { max-width: 450px; } 
    
    .about-grid { grid-template-columns: 1fr; gap: 60px;}
    .edu-grid { grid-template-columns: repeat(2, 1fr); }
    
    .time-item { padding-right: 0 !important; padding-left: 0 !important; padding-top: 60px; justify-content: center !important; }
    .timeline-line, .timeline-progress { left: 50%; }
    .time-node { top: 0; }
    .time-content { width: 100%; text-align: center;}
    .time-content::after { display: none; }
    .time-desc ul li { text-align: left; }
    
    .project-grid { grid-template-columns: repeat(2, 1fr); }
    .cert-item { width: calc(33.33% - 30px); }
}

@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none; } 
    * { cursor: auto !important; }
    
    .nav-links { display: none; }
    .menu-toggle { display: block; margin-left: auto; }
    
    #smooth-wrapper { position: relative; height: auto; overflow: visible; }
    #smooth-content { transform: none !important; }
    body { height: auto !important; }
    .edu-grid { grid-template-columns: 1fr; }
    .section-pad { padding: 100px 0; }
    .section-header { margin-bottom: 70px; }
    
    .hero { padding-top: 100px; }
    .hero-grid { gap: 40px; } 
    
    .hero-title { font-size: clamp(2.2rem, 8vw, 3rem) !important; line-height: 1.1; margin-bottom: 15px; }
    .typewriter-wrap { justify-content: center; font-size: 1.1rem; margin-bottom: 25px; }
    .hero-desc { font-size: 0.95rem; margin-bottom: 30px; padding: 0 15px; }
    
    .hero-actions { flex-direction: column; gap: 25px; width: 100%; }
    .btn-cyber { width: 100%; max-width: 300px; padding: 15px; font-size: 1rem; }
    
    .profile-container { max-width: 260px; margin-top: 20px; }
    
    .tech-badge { padding: 10px 15px; font-size: 0.75rem; }
    .tech-badge i { font-size: 1.2rem; }
    .badge-1 { top: 0%; right: -10%; }
    .badge-2 { bottom: 5%; left: -10%; }
    .badge-3 { top: 50%; right: -15%; }
    
    .stats-grid { grid-template-columns: 1fr; }
    .project-grid { grid-template-columns: 1fr; }
    .p-card { transform: none !important; } 
    
    .modal-content { width: 95%; margin: 20px 0; }
    .modal-body { padding: 40px 20px; }
    .m-title { font-size: 2.2rem; }
    
    .term-body { padding: 30px 20px; font-size: 0.95rem; }
    
    .cert-item { width: 100%; margin: 10px 0; }
}
/* ==========================================================================
   17. TECHNICAL EXPERTISE SECTION
   ========================================================================== */
.expertise-section { 
    position: relative; 
    z-index: 10; 
    background: var(--bg-deep); 
}

.expertise-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); /* Forces a 2-column grid */
    gap: 30px; 
}

.exp-tag {
    background: rgba(0, 198, 255, 0.05);
    border: 1px solid rgba(0, 198, 255, 0.2);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 6px;
    font-family: var(--font-code);
    font-size: 0.85rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.exp-tag:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    background: rgba(0, 242, 161, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 242, 161, 0.2);
}

/* Ensure it drops to 1 column on mobile devices */
@media (max-width: 900px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   18. AWARDS & RECOGNITION SECTION
   ========================================================================== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.award-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(3, 5, 10, 0.9));
    border: 1px solid rgba(0, 198, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1;
}

.award-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 40%);
    z-index: -1; opacity: 0; transition: opacity 0.5s; pointer-events: none;
}

.award-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 50px rgba(0, 242, 161, 0.2);
}

.award-card:hover::before { opacity: 1; }

.award-icon {
    width: 65px; height: 65px; 
    background: rgba(0, 242, 161, 0.1); 
    border-radius: 16px;
    display: flex; justify-content: center; align-items: center; 
    font-size: 1.8rem; color: var(--neon-cyan);
    border: 1px solid rgba(0, 242, 161, 0.3); 
    margin-bottom: 25px; 
    box-shadow: inset 0 0 15px rgba(0, 242, 161, 0.2);
}

.award-date {
    position: absolute; top: 35px; right: 30px; 
    font-family: var(--font-code); font-size: 0.85rem;
    color: var(--neon-blue); font-weight: 700;
    background: rgba(0, 198, 255, 0.1);
    padding: 4px 12px; border-radius: 20px;
    border: 1px solid rgba(0, 198, 255, 0.2);
}

.award-card h3 { 
    font-size: 1.5rem; font-weight: 800; color: var(--text-main); margin-bottom: 8px;
}

.award-card .award-tags { 
    font-family: var(--font-code); font-size: 0.85rem; color: var(--text-muted); 
    margin-bottom: 20px; display: block; 
    border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px;
}

.award-card p { 
    font-size: 1rem; color: var(--text-muted); line-height: 1.6; font-weight: 300;
}

/* ==========================================================================
   19. MVP HIGHLIGHT CARD
   ========================================================================== */
.mvp-highlight-card {
    margin: 100px auto 40px;
    max-width: 900px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(0, 198, 255, 0.05));
    border: 2px solid rgba(0, 198, 255, 0.3);
    border-radius: 24px;
    padding: 50px 60px;
    box-shadow: 0 20px 50px rgba(0, 198, 255, 0.15), inset 0 0 30px rgba(0, 198, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: var(--transition-bounce);
    z-index: 1;
}

.mvp-highlight-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 198, 255, 0.1), transparent 40%);
    z-index: -1; opacity: 0; transition: opacity 0.5s; pointer-events: none;
}

.mvp-highlight-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 198, 255, 0.25), inset 0 0 40px rgba(0, 198, 255, 0.1);
    border-color: var(--neon-blue);
}

.mvp-highlight-card:hover::before {
    opacity: 1;
}

.mvp-highlight-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.mvp-image-container {
    position: relative;
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mvp-logo-img {
    width: 110px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(0, 198, 255, 0.6));
    animation: floatHero 6s ease-in-out infinite;
}

.mvp-glow-ring {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 2px dashed rgba(0, 198, 255, 0.5);
    border-radius: 50%;
    animation: spin 10s linear infinite;
    z-index: 1;
}

.mvp-glow-ring::after {
    content: '';
    position: absolute;
    top: -15px; left: -15px; right: -15px; bottom: -15px;
    border: 1px solid rgba(0, 242, 161, 0.3);
    border-radius: 50%;
    animation: spin-reverse 15s linear infinite;
}

.mvp-text-content {
    flex-grow: 1;
}

.mvp-badge {
    display: inline-block;
    font-family: var(--font-code);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--neon-blue);
    background: rgba(0, 198, 255, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(0, 198, 255, 0.3);
    margin-bottom: 20px;
    box-shadow: inset 0 0 10px rgba(0, 198, 255, 0.2);
}

.mvp-text-content h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(0, 198, 255, 0.3);
}

.mvp-text-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Make it responsive for Mobile Devices */
@media (max-width: 768px) {
    .mvp-highlight-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .mvp-highlight-card {
        padding: 40px 20px;
        margin: 60px 15px 30px;
    }
    .mvp-text-content h3 {
        font-size: 2rem;
    }
    .mvp-image-container {
        width: 150px;
        height: 150px;
    }
    .mvp-logo-img {
        width: 90px;
    }
}