/* ===== CSS Variables - Cybersecurity Theme ===== */
:root {
    --primary-color: #00d4ff;
    --primary-glow: rgba(0, 212, 255, 0.5);
    --primary-dark: #00a8cc;
    --secondary-color: #c1f6ff;
    --accent-color: #badaf5;
    --bg-dark: #0d0d1a;
    --bg-darker: #06060f;
    --bg-card: rgba(13, 13, 26, 0.95);
    --bg-card-hover: rgba(0, 212, 255, 0.05);
    --text-primary: #e8f4f8;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-color: rgba(0, 212, 255, 0.3);
    --border-glow: rgba(0, 212, 255, 0.6);
    --font-main: 'Rajdhani', sans-serif;
    --font-display: 'Orbitron', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 20px var(--primary-glow), 0 0 40px rgba(0, 212, 255, 0.2);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

::selection {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* ===== Matrix Background Canvas ===== */
#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    opacity: 0.15;
}

/* ===== Particles Background ===== */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
}

/* ===== Scan Lines Effect ===== */
.scan-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    animation: scanMove 8s linear infinite;
}

@keyframes scanMove {
    0% { background-position: 0 0; }
    100% { background-position: 0 100px; }
}

/* ===== Grid Overlay ===== */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* ===== Mouse Glow ===== */
.mouse-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    filter: blur(30px);
}

.mouse-glow.active {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.25) 0%, rgba(0, 255, 255, 0.1) 50%, transparent 70%);
}

/* ===== Custom Cursor ===== */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
    transition: transform 0.1s, width 0.2s, height 0.2s;
}

.cursor.hover {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--primary-color);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
    opacity: 0.5;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--secondary-color);
    opacity: 0.8;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: 2px;
}

.logo-bracket {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
    animation: bracketPulse 2s ease-in-out infinite;
}

@keyframes bracketPulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 10px var(--primary-glow); }
    50% { opacity: 0.7; text-shadow: 0 0 20px var(--primary-glow), 0 0 30px var(--primary-color); }
}

.logo-text {
    color: var(--text-primary);
    margin: 0 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    padding: 10px 15px;
    position: relative;
    transition: var(--transition);
    letter-spacing: 1px;
}

.nav-prefix {
    color: var(--primary-color);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--primary-glow);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

.nav-link:hover::before, .nav-link.active::before {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 0 5px var(--primary-glow);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 30px 50px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    width: 100%;
}

.hero-content {
    z-index: 2;
}

/* Role Badge */
.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    margin-bottom: 20px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.2); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.4), 0 0 30px rgba(0, 255, 136, 0.2); }
}

.role-badge i {
    color: var(--primary-color);
    animation: iconSpin 4s linear infinite;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.role-badge span {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.greeting {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

/* Cyber Name Box */
.cyber-name-box {
    position: relative;
    padding: 20px 30px;
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid var(--primary-color);
    margin-bottom: 20px;
    overflow: hidden;
}

.cyber-name-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
    animation: nameScan 3s linear infinite;
}

@keyframes nameScan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    animation: scanLineMove 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary-color);
}

@keyframes scanLineMove {
    0%, 100% { top: 0; opacity: 1; }
    50% { top: 100%; opacity: 0.5; }
}

.name-glitch {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    text-shadow: 0 0 10px var(--primary-glow);
    animation: textFlicker 4s infinite;
}

@keyframes textFlicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    95% { opacity: 0.9; }
    96% { opacity: 1; }
}

.name-glitch::before,
.name-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.name-glitch::before {
    color: var(--secondary-color);
    animation: glitch1 2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.name-glitch::after {
    color: var(--accent-color);
    animation: glitch2 2s infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-1px, 1px); }
    80% { transform: translate(1px, -1px); }
}

@keyframes glitch2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
    60% { transform: translate(1px, -1px); }
    80% { transform: translate(-1px, 1px); }
}

/* Cyber Corners */
.cyber-corners .corner,
.card-corners .corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--primary-color);
    border-style: solid;
}

.corner.tl { top: -2px; left: -2px; border-width: 2px 0 0 2px; }
.corner.tr { top: -2px; right: -2px; border-width: 2px 2px 0 0; }
.corner.bl { bottom: -2px; left: -2px; border-width: 0 0 2px 2px; }
.corner.br { bottom: -2px; right: -2px; border-width: 0 2px 2px 0; }

/* Typing Container */
.typing-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.typing-text {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.typing-cursor {
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: cursorBlink 0.8s infinite;
    margin-left: 5px;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 550px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 0 30px var(--primary-glow), 0 0 60px rgba(0, 255, 136, 0.3);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
}

.stat-box {
    padding: 20px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    position: relative;
    min-width: 140px;
    text-align: center;
    transition: var(--transition);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number .count {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

.stat-number .plus {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 2px;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Hero Profile Card */
.hero-profile {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.profile-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.profile-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

.profile-image-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.profile-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ringRotate 10s linear infinite;
}

.profile-ring::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.profile-ring.ring-2 {
    width: 110%;
    height: 110%;
    border-color: rgba(0, 255, 136, 0.3);
    animation: ringRotate 15s linear infinite reverse;
}

.profile-ring.ring-3 {
    width: 120%;
    height: 120%;
    border-color: rgba(0, 255, 136, 0.1);
    border-style: dashed;
    animation: ringRotate 20s linear infinite;
}

.profile-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 30px var(--primary-glow);
    background: var(--bg-dark);
}

.profile-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.profile-title {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Profile Socials */
.profile-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-5px);
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(-5px) rotate(-5deg); }
    75% { transform: translateY(-20px) rotate(3deg); }
}

.float-icon:hover {
    animation-play-state: paused;
    box-shadow: 0 0 20px var(--primary-glow);
}

.icon-1 { top: 0; left: 0; animation-delay: 0s; }
.icon-2 { top: 10%; right: 0; animation-delay: 0.5s; }
.icon-3 { bottom: 30%; right: -10%; animation-delay: 1s; }
.icon-4 { bottom: 0; left: 10%; animation-delay: 1.5s; }
.icon-5 { top: 40%; left: -10%; animation-delay: 2s; }
.icon-6 { bottom: 10%; right: 20%; animation-delay: 2.5s; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.mouse-icon {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 1.5s ease-in-out infinite;
}

@keyframes wheelScroll {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

.scroll-indicator span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Binary Decoration */
.binary-decoration {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(0, 255, 136, 0.1);
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    animation: binaryFade 5s ease-in-out infinite;
}

@keyframes binaryFade {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.binary-decoration.left { left: 20px; top: 50%; transform: translateY(-50%); }
.binary-decoration.right { right: 20px; top: 50%; transform: translateY(-50%) rotate(180deg); }

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

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
}

.title-bracket {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* ===== About Section ===== */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Terminal Window */
.terminal-window {
    background: rgba(0, 10, 5, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    background: rgba(0, 20, 10, 0.9);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-btn.red { background: #ff5f56; box-shadow: 0 0 10px #ff5f56; }
.terminal-btn.yellow { background: #ffbd2e; box-shadow: 0 0 10px #ffbd2e; }
.terminal-btn.green { background: #27c93f; box-shadow: 0 0 10px #27c93f; }

.terminal-title {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.terminal-body {
    padding: 25px;
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.prompt {
    color: var(--primary-color);
    font-family: var(--font-mono);
    font-weight: bold;
}

.command {
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.terminal-output {
    padding: 15px;
    background: rgba(0, 255, 136, 0.03);
    border-left: 2px solid var(--primary-color);
    margin-bottom: 20px;
    margin-left: 20px;
}

.output-text {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 2;
}

.highlight {
    color: var(--primary-color);
}

.status-available {
    color: #27c93f;
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.cursor-blink {
    font-family: var(--font-mono);
    color: var(--primary-color);
    animation: cursorBlink 0.8s infinite;
}

/* Info Grid */
.about-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 25px;
    display: flex;
    gap: 15px;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
    transform: translateY(-5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.info-content p {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.info-sub {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* ===== Skills Section ===== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.skill-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    transition: var(--transition);
}

.skill-category:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.category-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

.category-header h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skill-name {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.skill-bar {
    height: 8px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s ease-out;
    position: relative;
    box-shadow: 0 0 10px var(--primary-glow);
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Tech Stack */
.tech-stack {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.tech-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
    transform: translateY(-10px);
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.tech-item span {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ===== Projects Section ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
    transform: translateY(-5px);
}

.project-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.1), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-glow {
    opacity: 1;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.project-icon {
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

.project-links {
    display: flex;
    gap: 15px;
}

.proj-link-icon {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.proj-link-icon:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
    transform: scale(1.1);
}

.project-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.project-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    color: var(--primary-color);
    border-radius: 4px;
    transition: var(--transition);
}

.project-card:hover .tech-tag {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
}

/* ===== Experience Section ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: -19px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-glow);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}

.timeline-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--border-color);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.timeline-badge.current {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.timeline-content h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content h4 i {
    margin-right: 8px;
}

.timeline-date {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.timeline-date i {
    color: var(--primary-color);
    margin-right: 8px;
}

.timeline-list {
    list-style: none;
    padding: 0;
}

.timeline-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.timeline-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-family: var(--font-mono);
}

/* ===== Education Section ===== */
.education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.education-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.education-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
    transform: translateY(-10px);
}

.education-card.featured {
    grid-column: span 1;
    border-color: var(--primary-color);
}

.education-card .card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.education-card:hover .card-glow {
    opacity: 1;
}

.education-card .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.education-card .card-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--border-color);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.education-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.education-card h4 {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.education-card h4 i {
    margin-right: 8px;
}

.education-card .institution {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.education-card .location {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.education-card .grade {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.education-card .location i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Certifications */
.certifications {
    text-align: center;
}

.cert-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.cert-title i {
    color: var(--primary-color);
    margin-right: 10px;
}

.cert-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.cert-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.cert-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.cert-item span {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== Contact Section ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.contact-details a,
.contact-details p {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 10, 5, 0.9);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
}

.form-group textarea ~ label {
    top: 20px;
    transform: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 15px;
    font-size: 0.75rem;
    background: var(--bg-card);
    padding: 0 5px;
    color: var(--primary-color);
}

.form-group label i {
    margin-right: 8px;
}

.btn-submit {
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.btn-glitch {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-submit:hover .btn-glitch {
    left: 100%;
}

/* ===== Footer ===== */
.footer {
    background: rgba(0, 5, 2, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-text {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--primary-glow);
}

.footer-binary {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(0, 255, 136, 0.2);
    letter-spacing: 3px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-profile {
        order: -1;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .education-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .education-card.featured {
        grid-column: span 2;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .name-glitch {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: stretch;
    }
    
    .stat-box {
        min-width: auto;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .about-info-grid {
        grid-template-columns: 1fr;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
    }
    
    .education-card.featured {
        grid-column: span 1;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .binary-decoration {
        display: none;
    }
    
    .floating-icons {
        display: none;
    }
    
    .cursor, .cursor-follower {
        display: none;
    }
    
    body {
        cursor: auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 15px 40px;
    }
    
    .name-glitch {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .cyber-name-box {
        padding: 15px 20px;
    }
    
    .profile-image-wrapper {
        width: 140px;
        height: 140px;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .profile-card {
        padding: 30px 20px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
