/* CSS Design System & Variables */
:root {
    --bg-primary: #06030c; /* Deep Midnight Purple */
    --bg-secondary: #0c0817; /* Dark Nebula Background */
    --bg-card: rgba(12, 8, 23, 0.65);
    --bg-card-hover: rgba(23, 16, 43, 0.85);
    
    --accent-violet: #818cf8; /* Aurora Indigo */
    --accent-pink: #06b6d4; /* Electric Cyan */
    --accent-gold: #cbd5e1; /* Metallic Silver/Platinum */
    --accent-cyan: #22d3ee; /* Bright Cyan */
    --accent-orange: #f97316; /* Neon Orange (for multi-colored project SVGs) */
    
    /* Semantic mapping to maintain compatibility with existing selectors */
    --accent-blue: #818cf8;
    --accent-purple: #a78bfa; /* Purple (for multi-colored project SVGs) */
    --accent-emerald: #34d399; /* Vibrant Mint/Emerald (for multi-colored project SVGs) */
    
    --gradient-primary: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-pink) 50%, var(--accent-gold) 100%);
    --gradient-purple: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-pink) 100%);
    --gradient-sunset: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-gold) 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    --gradient-border: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(6, 182, 212, 0.35);
    
    --font-sans: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-neon: 0 0 25px rgba(6, 182, 212, 0.35);
    --shadow-purple: 0 0 25px rgba(129, 140, 248, 0.4);
    --shadow-pink: 0 0 25px rgba(203, 213, 225, 0.25);
    --card-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.85);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/*
=== BACKUP: QUANTUM GOLD & OBSIDIAN ===
:root {
    --bg-primary: #050505;
    --bg-secondary: #0b0b0d;
    --bg-card: rgba(15, 15, 18, 0.7);
    --bg-card-hover: rgba(25, 25, 30, 0.9);
    --accent-violet: #c5a880;
    --accent-pink: #b8935c;
    --accent-gold: #f5e6cf;
    --accent-cyan: #d9c39e;
    --accent-orange: #9a7f56;
    --accent-blue: #c5a880;
    --accent-purple: #f5e6cf;
    --accent-emerald: #b8935c;
    --border-hover: rgba(184, 147, 92, 0.35);
    --shadow-neon: 0 0 25px rgba(184, 147, 92, 0.25);
    --shadow-purple: 0 0 25px rgba(197, 168, 128, 0.3);
    --shadow-pink: 0 0 25px rgba(245, 230, 207, 0.2);
}
*/

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-violet) var(--bg-primary);
}

body {
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.06) 0%, transparent 60%),
        radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(6, 182, 212, 0.08) 0%, rgba(99, 102, 241, 0.02) 50%, transparent 80%),
        linear-gradient(rgba(99, 102, 241, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.015) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
body::-webkit-scrollbar {
    width: 8px;
}
body::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
body::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
body::-webkit-scrollbar-thumb:hover {
    background: var(--accent-pink);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.section-padding {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
}

/* Abstract Glass Blobs Background */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
    background-color: var(--bg-primary);
}

.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.28;
    mix-blend-mode: screen;
    will-change: transform, border-radius;
}

/* Blob 1: Aurora Indigo */
.glow-1 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.4) 0%, transparent 80%);
    top: -15%;
    right: -10%;
    animation: drift-blob-1 25s infinite alternate ease-in-out, morph-blob 18s infinite alternate ease-in-out;
}

/* Blob 2: Electric Cyan */
.glow-2 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 80%);
    top: 30%;
    left: -15%;
    animation: drift-blob-2 30s infinite alternate ease-in-out, morph-blob 22s infinite alternate ease-in-out;
}

/* Blob 3: Soft Silver / Indigo */
.glow-3 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 80%);
    bottom: -10%;
    right: 15%;
    animation: drift-blob-3 28s infinite alternate ease-in-out, morph-blob 20s infinite alternate ease-in-out;
}

@keyframes drift-blob-1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10vw, 15vh) scale(1.15); }
    100% { transform: translate(5vw, -5vh) scale(0.9); }
}

@keyframes drift-blob-2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15vw, -10vh) scale(0.85); }
    100% { transform: translate(-5vw, 15vh) scale(1.1); }
}

@keyframes drift-blob-3 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15vw, -15vh) scale(1.2); }
    100% { transform: translate(10vw, 5vh) scale(0.95); }
}

@keyframes morph-blob {
    0% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; }
    50% { border-radius: 70% 30% 52% 48% / 60% 40% 60% 40%; }
    100% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; }
}

/* Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: none; /* Shown dynamically via JS when cursor moves */
}

/* Rotating Geometric Orbits */
.orbit-bg-ring {
    position: absolute;
    border: 1px solid rgba(6, 182, 212, 0.04); /* Very faint cyan outline */
    border-radius: 50%;
    pointer-events: none;
    transform-origin: center;
    z-index: -1;
}

.orbit-ring-1 {
    width: 600px;
    height: 600px;
    top: -150px;
    right: -150px;
    border-style: dashed;
    border-width: 1px;
    animation: rotateOrbit-clockwise 90s infinite linear;
}

.orbit-ring-2 {
    width: 950px;
    height: 950px;
    top: 15vh;
    left: -350px;
    border-style: double;
    border-width: 3px;
    animation: rotateOrbit-counter 120s infinite linear;
}

.orbit-ring-3 {
    width: 500px;
    height: 500px;
    bottom: 5vh;
    right: -100px;
    border-style: dotted;
    border-width: 2px;
    animation: rotateOrbit-clockwise 70s infinite linear;
}

@keyframes rotateOrbit-clockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateOrbit-counter {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}



/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px -10px rgba(139, 92, 246, 0.15);
}

/* Button UI Components */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: #000;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.25);
    transition: var(--transition-smooth);
    font-family: var(--font-sans);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: var(--transition-smooth);
    animation: shine 4s infinite linear;
}

@keyframes shine {
    0% { transform: translate(-30%, -30%) rotate(30deg); }
    100% { transform: translate(100%, 100%) rotate(30deg); }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-sans);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    color: var(--accent-cyan);
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-text-link:hover {
    color: var(--accent-blue);
}

.btn-text-link i {
    transition: var(--transition-fast);
}

.btn-text-link:hover i {
    transform: translateX(3px);
}

/* Header & Sticky Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 10, 19, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(7, 10, 19, 0.9);
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

/* Logo Stacked Brand & Monogram */
.logo-stacked-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.logo-stacked-wrapper:hover {
    transform: translateY(-1px);
}

.logo-svg {
    display: block;
    overflow: visible;
    transition: var(--transition-smooth);
}

.logo-stacked-wrapper:hover .logo-svg {
    filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.7));
    transform: scale(1.05);
}



.logo-text-stacked {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
}

.logo-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.logo-subtitle {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.72rem;
    color: var(--accent-pink);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.1rem;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section Styles */
.hero-section {
    padding-top: 10rem;
    padding-bottom: 5rem;
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge-container {
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(16, 185, 129, 0.08);
    color: var(--accent-emerald);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-emerald);
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--accent-emerald);
    animation: dotPulse 1.8s infinite ease-in-out;
}

@keyframes dotPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.4); opacity: 0; }
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
}

.social-icon:hover {
    color: var(--accent-pink);
    border-color: var(--accent-pink);
    background: rgba(236, 72, 153, 0.05);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.2);
    transform: translateY(-2px);
}

/* Visual Editor Card in Hero & Avatar Orbit Showcase */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 480px;
}

.card-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Neon Orbiting Rings */
.neon-orbit-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.neon-orbit-ring.ring-1 {
    width: 320px;
    height: 320px;
    border: 2px dashed rgba(236, 72, 153, 0.4);
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.05);
    animation: rotateClockwise 25s linear infinite;
}

.neon-orbit-ring.ring-2 {
    width: 280px;
    height: 280px;
    border: 1px dotted rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.05);
    animation: rotateCounterClockwise 20s linear infinite;
}

.neon-orbit-ring.ring-3 {
    width: 350px;
    height: 350px;
    border: 1.5px solid rgba(245, 158, 11, 0.2);
    animation: pulseScale 8s infinite alternate ease-in-out;
}

@keyframes rotateClockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateCounterClockwise {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes pulseScale {
    0% { transform: scale(0.95); opacity: 0.3; }
    100% { transform: scale(1.05); opacity: 0.6; }
}

/* Coding Editor Card (Main Visual) */
.hero-code-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 360px;
    background: rgba(10, 12, 23, 0.75);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 242, 254, 0.05);
    transform: translateY(0px) rotate(1deg);
    transition: var(--transition-smooth);
}

.hero-code-card:hover {
    transform: translateY(-8px) rotate(0deg) scale(1.03);
    border-color: var(--accent-cyan);
    box-shadow: 0 25px 45px rgba(0, 242, 254, 0.15), 0 0 15px rgba(0, 242, 254, 0.1);
}

.main-visual-card {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.card-header-bar {
    background: rgba(18, 23, 41, 0.85);
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.card-header-bar .dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
}

.card-header-bar .red { background-color: #ef4444; }
.card-header-bar .yellow { background-color: #f59e0b; }
.card-header-bar .green { background-color: #10b981; }

.card-title-text {
    margin-left: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.code-editor {
    padding: 1.2rem 1.5rem;
    font-family: monospace;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #cbd5e1;
    display: flex;
    flex-direction: column;
}

.code-line {
    white-space: nowrap;
}

.c-keyword { color: var(--accent-pink); }
.c-class { color: var(--accent-cyan); }
.c-func { color: #c084fc; }
.c-string { color: var(--accent-emerald); }
.c-comment { color: var(--text-muted); }

/* Float Cards */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: rgba(20, 26, 48, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.float-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.f-ai { background: var(--gradient-purple); }
.f-dev { background: var(--gradient-primary); }

.float-details {
    display: flex;
    flex-direction: column;
}

.float-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.float-subtitle {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.float-1 {
    top: -20px;
    right: -25px;
    animation: floatAnim 6s infinite alternate ease-in-out;
}

.float-2 {
    bottom: -15px;
    left: -25px;
    animation: floatAnim 6s infinite alternate-reverse ease-in-out 1s;
}

@keyframes floatAnim {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}

/* Stats Bar */
.stats-bar-wrapper {
    margin-top: 5rem;
    width: 100%;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(13, 18, 36, 0.4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border-color);
    margin: auto 0;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.align-left {
    text-align: left;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent-pink);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    display: inline-block;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.header-underline {
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.section-header.align-left .header-underline {
    margin-left: 0;
}

/* About / Professional Summary */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.2rem;
    align-items: stretch;
}

.about-text-card {
    padding: 3rem;
    height: 100%;
}

/* Removed duplicate logo rules to prevent override */

/* About Section Focus Areas capabilities */
.focus-areas-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.focus-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    color: var(--text-primary);
    position: relative;
    padding-left: 0.8rem;
    border-left: 3px solid var(--accent-purple);
}

.focus-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.focus-card {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid var(--border-color);
    background: rgba(12, 12, 16, 0.45);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.focus-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -10px rgba(139, 92, 246, 0.2);
}

.focus-card:nth-child(even):hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 25px -10px rgba(6, 182, 212, 0.2);
}

.focus-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
}

.focus-icon-wrapper i {
    width: 20px;
    height: 20px;
}

.f-ai { background: rgba(139, 92, 246, 0.1); color: var(--accent-violet); border: 1px solid rgba(139, 92, 246, 0.25); }
.f-ml { background: rgba(245, 158, 11, 0.1); color: var(--accent-gold); border: 1px solid rgba(245, 158, 11, 0.25); }
.f-flutter { background: rgba(236, 72, 153, 0.1); color: var(--accent-pink); border: 1px solid rgba(236, 72, 153, 0.25); }
.f-dev { background: rgba(6, 182, 212, 0.1); color: var(--accent-cyan); border: 1px solid rgba(6, 182, 212, 0.25); }

.focus-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.focus-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.focus-card-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.summary-paragraph {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.summary-paragraph strong {
    color: var(--text-primary);
    font-weight: 500;
}

.personal-info-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
}

.info-value {
    color: var(--text-primary);
    font-size: 1.05rem;
}

.info-value a {
    color: var(--accent-cyan);
}
.info-value a:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

/* Skills Matrix - Circular Gauges */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.skills-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.skills-icon-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.skills-icon-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.skill-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-lang { background: rgba(6, 182, 212, 0.08); color: var(--accent-cyan); }
.s-stack { background: rgba(139, 92, 246, 0.08); color: var(--accent-violet); }
.s-db { background: rgba(236, 72, 153, 0.08); color: var(--accent-pink); }
.s-tools { background: rgba(245, 158, 11, 0.08); color: var(--accent-gold); }

.skills-circle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem 0.5rem;
    justify-items: center;
}

.skill-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 100%;
}

.skill-circle-item:hover {
    transform: translateY(-3px);
}

.skill-circle-box {
    position: relative;
    width: 68px;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.skill-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.skill-bg-circle {
    fill: none;
    stroke: rgba(255, 255, 255, 0.03);
    stroke-width: 5.5;
}

.skill-progress-circle {
    fill: none;
    stroke-width: 5.5;
    stroke-linecap: round;
    stroke-dasharray: 213.6;
    stroke-dashoffset: 213.6; /* Animated in JS */
    transition: stroke-dashoffset 1.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Category Stroke Colors with Glows */
.skills-card:nth-child(1) .skill-progress-circle {
    stroke: var(--accent-cyan);
    filter: drop-shadow(0 0 4px rgba(6, 182, 212, 0.6));
}

.skills-card:nth-child(2) .skill-progress-circle {
    stroke: var(--accent-violet);
    filter: drop-shadow(0 0 4px rgba(139, 92, 246, 0.6));
}

.skills-card:nth-child(3) .skill-progress-circle {
    stroke: var(--accent-pink);
    filter: drop-shadow(0 0 4px rgba(236, 72, 153, 0.6));
}

.skills-card:nth-child(4) .skill-progress-circle {
    stroke: var(--accent-gold);
    filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.6));
}

.skill-value-text {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.skill-circle-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    white-space: normal;
    word-break: break-word;
    line-height: 1.2;
    transition: var(--transition-fast);
}

.skill-circle-item:hover .skill-circle-label {
    color: var(--text-primary);
}

/* Timeline Experience */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-violet) 0%, var(--accent-pink) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 31px;
    top: 24px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 4px solid var(--accent-violet);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
    z-index: 2;
}

.timeline-date {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-pink);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-content {
    padding: 2.2rem;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
    gap: 1rem;
}

.role-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.company-name {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.experience-badge {
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(127, 0, 255, 0.15);
    color: #c084fc;
    border: 1px solid rgba(127, 0, 255, 0.3);
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.experience-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.experience-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding-left: 1.2rem;
}

.experience-bullets li {
    list-style-type: disc;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.experience-bullets strong {
    color: var(--text-primary);
}

/* Projects Hub Filters */
.projects-filters {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: #000;
    font-weight: 600;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}

/* Project Cards Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.project-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.project-card:hover .project-card-image {
    transform: scale(1.06);
}

.project-badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    text-transform: uppercase;
    margin-left: auto; /* Push badge to the right side of the flex row */
}

.status-in-progress {
    background: rgba(245, 158, 11, 0.12);
    color: var(--accent-orange);
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.status-completed {
    background: rgba(236, 72, 153, 0.12);
    color: var(--accent-pink);
    border: 1px solid rgba(236, 72, 153, 0.25);
}

.status-fyp {
    background: rgba(139, 92, 246, 0.12);
    color: var(--accent-violet);
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.project-content {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-icon-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.2rem;
}

.project-main-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-cyan);
}

.project-tech-stack-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.project-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.8rem;
}

.project-tags span {
    font-size: 0.72rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1.2rem;
}

.project-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.project-link-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.project-link-icon:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    background: rgba(0, 242, 254, 0.05);
}

/* Research Paper Section */
.research-showcase {
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.research-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: #000;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.research-title-text {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.research-authors {
    color: var(--accent-cyan);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2.2rem;
}

.research-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
}

.sub-header-research {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.research-details p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.research-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    padding-left: 1.2rem;
}

.research-bullets li {
    list-style-type: disc;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.research-bullets strong {
    color: var(--text-primary);
}

.research-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.research-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.paper-page-preview {
    width: 100%;
    max-width: 280px;
    height: 380px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.paper-page-preview:hover {
    transform: translateY(-8px) rotate(1deg);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.15);
}

.paper-logo {
    width: 44px;
    height: 44px;
    background: rgba(0, 242, 254, 0.08);
    color: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.med-pulse {
    animation: pulseGlow 2.5s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.paper-meta {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.paper-title-sim {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.paper-lines {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
}

.p-line {
    height: 6px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    width: 100%;
}

.p-line.short {
    width: 60%;
}

.accuracy-badge-glow {
    position: absolute;
    bottom: 2rem;
    right: -10px;
    background: var(--gradient-primary);
    color: #000;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.35);
    transform: rotate(-5deg);
}

.acc-val {
    font-size: 1rem;
    line-height: 1;
}

.acc-lbl {
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* /* Cyber-Academic Dashboard */
.academic-dashboard {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

/* Left Panel: Holographic ID Badge */
.academic-id-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid var(--border-color);
    padding-right: 2.5rem;
    justify-content: space-between;
    min-height: 290px;
}

.academic-badge-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
}

.student-avatar-glow {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(129, 140, 248, 0.08);
    border: 2px solid rgba(129, 140, 248, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(129, 140, 248, 0.15);
    position: relative;
}

.student-avatar-glow i {
    width: 28px;
    height: 28px;
    color: var(--accent-violet);
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(34, 211, 238, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
    }
}

.academic-id-panel .edu-degree {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0.2rem;
}

.academic-id-panel .edu-institute {
    color: var(--text-secondary);
    font-size: 0.82rem;
    margin-bottom: 0;
}

/* CGPA Radial Meter */
.cgpa-radial-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin: 1rem 0;
    width: 100%;
}

.cgpa-radial-meter {
    width: 90px;
    height: 90px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cgpa-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.cgpa-bg-circle {
    stroke: rgba(255, 255, 255, 0.03);
    stroke-width: 6;
    fill: none;
}

.cgpa-active-circle {
    stroke-width: 6;
    fill: none;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cgpa-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cgpa-score {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cgpa-max {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: -2px;
}

.cgpa-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.academic-timeline-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.7rem;
    border-radius: 8px;
}

.academic-timeline-pill i {
    width: 13px;
    height: 13px;
    color: var(--accent-violet);
}

/* Right Panel: Explorer Panel */
.academic-explorer-panel {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
}

.academic-tabs-header {
    display: flex;
    gap: 0.4rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.4rem;
    width: 100%;
}

.academic-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.5rem 0.8rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.academic-tab-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}

.academic-tab-btn.active {
    color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.15);
}

.academic-tab-btn i {
    width: 15px;
    height: 15px;
}

.academic-tabs-content {
    flex-grow: 1;
}

.academic-tab-panel {
    display: none;
    width: 100%;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.academic-tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Coursework Styles */
.coursework-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

@media (max-width: 1200px) {
    .coursework-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .coursework-grid {
        grid-template-columns: 1fr;
    }
}

.course-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-color);
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    transition: var(--transition-fast);
}

.course-pill:hover {
    border-color: var(--border-hover);
    background: rgba(6, 182, 212, 0.03);
    transform: translateY(-2px);
}

.course-pill i {
    width: 16px;
    height: 16px;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.course-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Mentorship Styles */
.mentorship-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.explorer-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.explorer-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.mentorship-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin: 0.3rem 0;
}

.m-stat {
    background: rgba(129, 140, 248, 0.03);
    border: 1px solid rgba(129, 140, 248, 0.08);
    padding: 0.6rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.m-stat-val {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-violet);
}

.m-stat-lbl {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0.1rem;
}

.explorer-bullets {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.explorer-bullets li {
    font-size: 0.78rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 0.9rem;
    line-height: 1.4;
}

.explorer-bullets li::before {
    content: "•";
    color: var(--accent-cyan);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Honors Styles */
.awards-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.award-item {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.award-item:hover {
    border-color: var(--border-hover);
    background: rgba(6, 182, 212, 0.02);
    transform: translateY(-1.5px);
}

.award-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(203, 213, 225, 0.04);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.award-icon i {
    width: 16px;
    height: 16px;
}

.award-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.award-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
}

.award-desc {
    font-size: 0.74rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

/* Responsive adjustments for Academic Dashboard */
@media (max-width: 768px) {
    .academic-dashboard {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .academic-id-panel {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 1.5rem;
        width: 100%;
        gap: 1rem;
        min-height: auto;
    }
}

/* Separated Certifications Section */
.certifications-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    margin-top: 1.5rem;
}

@media (max-width: 992px) {
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.badges-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: 100%;
}

.card-header-with-icon {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.card-header-with-icon .header-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-cyan);
}

.badges-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.badges-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.badge-showcase-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.hr-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    width: 110px;
}

/* HackerRank Hexagon Badges */
.hr-hexagon {
    width: 90px;
    height: 100px;
    background: #151c27;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.6);
}

.hr-hexagon:hover {
    transform: translateY(-5px);
}

.cpp-badge {
    border: 2px solid rgba(235, 191, 55, 0.35);
    background: radial-gradient(circle, rgba(235, 191, 55, 0.12) 0%, #0e131b 100%);
    box-shadow: 0 0 15px rgba(235, 191, 55, 0.15);
}
.cpp-badge:hover {
    border-color: rgba(235, 191, 55, 0.7);
    box-shadow: 0 0 25px rgba(235, 191, 55, 0.3);
}

.sql-badge {
    border: 2px solid rgba(34, 211, 238, 0.35);
    background: radial-gradient(circle, rgba(34, 211, 238, 0.12) 0%, #0e131b 100%);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.15);
}
.sql-badge:hover {
    border-color: rgba(34, 211, 238, 0.7);
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.3);
}

.python-badge {
    border: 2px solid rgba(56, 189, 248, 0.35);
    background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, #0e131b 100%);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
}
.python-badge:hover {
    border-color: rgba(56, 189, 248, 0.7);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.3);
}

.ps-badge {
    border: 2px solid rgba(244, 63, 94, 0.35);
    background: radial-gradient(circle, rgba(244, 63, 94, 0.12) 0%, #0e131b 100%);
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.15);
}
.ps-badge:hover {
    border-color: rgba(244, 63, 94, 0.7);
    box-shadow: 0 0 25px rgba(244, 63, 94, 0.3);
}

.code30-badge {
    border: 2px solid rgba(249, 115, 22, 0.35);
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, #0e131b 100%);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.15);
}
.code30-badge:hover {
    border-color: rgba(249, 115, 22, 0.7);
    box-shadow: 0 0 25px rgba(249, 115, 22, 0.3);
}

.hex-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem;
    z-index: 2;
}

.hr-hexagon .badge-title {
    font-size: 0.68rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.15;
    margin-bottom: 0.3rem;
}

.badge-stars {
    display: flex;
    gap: 1.5px;
    justify-content: center;
}

.badge-stars i {
    width: 8px;
    height: 8px;
}

.star-filled {
    fill: #ebbf37;
    color: #ebbf37;
}

.star-empty {
    color: rgba(255, 255, 255, 0.15);
}

.badge-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

/* Certs list cards */
.certs-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: 100%;
}

.cert-item-card {
    padding: 1.8rem;
    display: flex;
    gap: 1.25rem;
}

.cert-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-coursera { background: rgba(0, 86, 210, 0.15); color: #2a73cc; }
.cert-hackerrank { background: rgba(16, 185, 129, 0.15); color: var(--accent-emerald); }
.cert-hec { background: rgba(127, 0, 255, 0.15); color: #c084fc; }

.cert-details {
    display: flex;
    flex-direction: column;
}

.cert-date {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.cert-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.cert-issuer {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.cert-summary {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Contact Grid & details */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-details-card {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.contact-details-card:hover {
    border-color: var(--accent-cyan);
    background: rgba(13, 18, 36, 0.8);
    transform: translateX(4px);
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-email { background: rgba(0, 242, 254, 0.08); color: var(--accent-cyan); }
.c-linkedin { background: rgba(0, 119, 181, 0.1); color: #0077b5; }
.c-location { background: rgba(16, 185, 129, 0.08); color: var(--accent-emerald); }
.c-phone { background: rgba(245, 158, 11, 0.08); color: var(--accent-orange); }

.contact-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.contact-value {
    font-size: 1.05rem;
    font-weight: 500;
}

/* Contact Form styling */
.contact-form-card {
    padding: 3rem;
}

.futuristic-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.floating-group {
    position: relative;
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
}

.form-input-premium {
    width: 100%;
    background: rgba(7, 10, 19, 0.45) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-sm);
    color: var(--text-primary) !important;
    padding: 1rem 1.2rem !important;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-textarea-premium {
    resize: vertical;
    min-height: 120px;
}

.form-label-premium {
    position: absolute;
    left: 1.2rem;
    top: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    pointer-events: none;
    transition: var(--transition-smooth);
}

/* Floating logic on focus & text entry */
.form-input-premium:focus ~ .form-label-premium,
.form-input-premium:not(:placeholder-shown) ~ .form-label-premium {
    top: -0.65rem;
    left: 0.8rem;
    font-size: 0.78rem;
    color: var(--accent-purple);
    font-weight: 600;
    background: var(--bg-secondary);
    padding: 0 0.5rem;
    border-radius: 4px;
}

.input-glow-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent-cyan), var(--accent-purple));
    transition: var(--transition-smooth);
}

.form-input-premium:focus ~ .input-glow-line {
    width: 100%;
    left: 0;
}

.form-input-premium:focus {
    border-color: rgba(139, 92, 246, 0.5) !important;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.1);
}

.form-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input, .form-group textarea {
    background: rgba(7, 10, 19, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    padding: 0.85rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 8px rgba(0, 242, 254, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
}

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
    border-radius: 4px;
    padding: 0.5rem;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Footer Section */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 2.2rem 0;
    background: var(--bg-secondary);
}

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

.copyright-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

/* Dynamic Details Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 13, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-wrapper {
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    background: rgba(15, 22, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 3rem;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.open .modal-wrapper {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

/* Modal Internal Body elements */
.modal-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-title {
    font-size: 2.2rem;
    font-weight: 800;
}

.modal-meta-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.modal-tag {
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(0, 242, 254, 0.08);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 242, 254, 0.2);
    padding: 0.25rem 0.7rem;
    border-radius: 4px;
}

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

.modal-grid-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.2rem;
}

.modal-column h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.modal-features-list, .modal-architecture-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.modal-features-list li, .modal-architecture-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.25rem;
}

.modal-features-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

.modal-architecture-list li::before {
    content: '•';
    position: absolute;
    left: 0.25rem;
    color: var(--accent-purple);
    font-size: 1.2rem;
    line-height: 0.8;
}

.modal-tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.modal-tech-pills span {
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
}

.modal-links-row {
    display: flex;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.8rem;
}

/* Responsiveness Media Queries */
@media (max-width: 1200px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-grid {
        gap: 2rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .education-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
    .focus-areas-grid {
        grid-template-columns: 1fr;
    }
    .section-padding {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
    .hero-visual {
        height: auto;
        min-height: auto;
        margin-top: 1.5rem;
    }
    .card-visual-wrapper {
        max-width: 100%;
        height: auto;
        padding: 1.5rem 0.5rem;
    }
    .hero-code-card {
        max-width: 310px;
        transform: none !important;
        margin: 0 auto;
    }
    .float-card {
        display: none !important;
    }
    .neon-orbit-ring {
        display: none !important;
    }
    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .stat-divider:nth-child(2n) {
        display: none;
    }
    .personal-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .about-text-card {
        padding: 2rem;
    }
    .timeline-line {
        left: 20px;
    }
    .timeline-item {
        padding-left: 50px;
    }
    .timeline-dot {
        left: 11px;
    }
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .research-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .research-showcase {
        padding: 2rem;
    }
    .education-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .contact-form-card {
        padding: 2rem;
    }
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .chatbot-card {
        min-height: 400px;
    }
    .chatbot-messages {
        max-height: 200px;
    }
    
    /* Navigation responsive menu */
    .mobile-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-secondary);
        backdrop-filter: blur(10px);
        transition: var(--transition-smooth);
        z-index: 99;
        border-top: 1px solid var(--border-color);
    }
    .nav-menu.open {
        left: 0;
    }
    .nav-menu ul {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
        align-items: flex-start;
    }
    .nav-link {
        font-size: 1.2rem;
    }
    .modal-wrapper {
        padding: 2rem;
    }
    .modal-grid-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delay classes for list item load in */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active .stagger-item {
    opacity: 1;
    transform: translateY(0);
}

.reveal.active .stagger-item:nth-child(1) { transition-delay: 0.1s; }
.reveal.active .stagger-item:nth-child(2) { transition-delay: 0.2s; }
.reveal.active .stagger-item:nth-child(3) { transition-delay: 0.3s; }
.reveal.active .stagger-item:nth-child(4) { transition-delay: 0.4s; }
.reveal.active .stagger-item:nth-child(5) { transition-delay: 0.5s; }
.reveal.active .stagger-item:nth-child(6) { transition-delay: 0.6s; }

/* Enhanced Git Branch Timeline Styles */
.timeline-dot {
    background: #020713 !important;
    border: 4px solid var(--accent-cyan) !important;
    box-shadow: 0 0 15px var(--accent-cyan), inset 0 0 5px var(--accent-cyan) !important;
    animation: pulseDot 2s infinite alternate;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 10px var(--accent-cyan); }
    100% { box-shadow: 0 0 22px rgba(0, 242, 254, 0.8); }
}

.timeline-content:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 15px 35px -10px rgba(127, 0, 255, 0.15);
}

/* Glassmorphism Skills Hover effects */
.skills-card:hover {
    border-color: var(--accent-pink);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -10px rgba(255, 0, 127, 0.15);
}

.skills-card:nth-child(2):hover {
    border-color: var(--accent-purple);
    box-shadow: 0 15px 35px -10px rgba(127, 0, 255, 0.15);
}

.skills-card:nth-child(3):hover {
    border-color: var(--accent-emerald);
    box-shadow: 0 15px 35px -10px rgba(16, 185, 129, 0.15);
}

.skills-card:nth-child(4):hover {
    border-color: var(--accent-orange);
    box-shadow: 0 15px 35px -10px rgba(245, 158, 11, 0.15);
}

/* @media print styles to generate clean PDF CV */
@media print {
    body {
        background: #fff !important;
        color: #000 !important;
        font-family: 'Outfit', -apple-system, sans-serif !important;
        font-size: 11pt !important;
    }
    h1, h2, h3, h4, h5, h6 {
        color: #000 !important;
        page-break-after: avoid;
    }
    .glow-bg, .cursor-glow, .header, .nav-actions, .hero-visual, .stats-bar-wrapper, .hero-actions, .projects-filters, .project-links, .view-details-btn, .research-actions, .research-visual, .contact-section, .footer, .mobile-toggle, .modal-overlay {
        display: none !important;
    }
    .hero-section {
        padding-top: 1rem !important;
        min-height: auto !important;
        page-break-after: avoid;
    }
    .hero-content {
        text-align: left !important;
        width: 100% !important;
    }
    .hero-title {
        font-size: 26pt !important;
        margin-bottom: 0.5rem !important;
    }
    .gradient-text {
        background: none !important;
        -webkit-text-fill-color: initial !important;
        color: #000 !important;
    }
    .hero-description {
        color: #333 !important;
        font-size: 11pt !important;
        margin-bottom: 1rem !important;
        max-width: 100% !important;
    }
    .social-links {
        display: flex !important;
        margin-top: 0.5rem !important;
    }
    .social-icon {
        border: none !important;
        background: none !important;
        width: auto !important;
        height: auto !important;
        margin-right: 1.5rem !important;
        color: #000 !important;
    }
    .section-padding {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    .section-title {
        font-size: 16pt !important;
        border-bottom: 2px solid #000 !important;
        padding-bottom: 0.2rem !important;
        margin-bottom: 1rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
    }
    .header-underline {
        display: none !important;
    }
    .glass-card {
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        padding: 0 !important;
    }
    .personal-info-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        border-top: 1px solid #ccc !important;
        padding-top: 1rem !important;
        margin-top: 1rem !important;
    }
    .info-label {
        color: #555 !important;
    }
    .info-value, .info-value a {
        color: #000 !important;
    }
    .skills-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    .skills-card {
        padding: 0 !important;
    }
    .skills-icon-header {
        margin-bottom: 0.8rem !important;
        border-bottom: 1px solid #eee !important;
    }
    .skill-level-bar {
        display: none !important;
    }
    .skills-list {
        gap: 0.4rem !important;
    }
    .skills-list li {
        flex-direction: row !important;
        justify-content: space-between !important;
    }
    .skills-list li span:first-child {
        font-size: 10pt !important;
    }
    .timeline-line {
        display: none !important;
    }
    .timeline-item {
        padding-left: 0 !important;
        margin-bottom: 1.5rem !important;
        page-break-inside: avoid;
    }
    .timeline-dot {
        display: none !important;
    }
    .timeline-content {
        padding: 0 !important;
    }
    .timeline-header {
        border-bottom: 1px solid #eee !important;
        padding-bottom: 0.4rem !important;
        margin-bottom: 0.5rem !important;
    }
    .role-title {
        font-size: 12pt !important;
    }
    .experience-badge {
        border: none !important;
        background: none !important;
        color: #555 !important;
        font-size: 9pt !important;
    }
    .experience-bullets li {
        color: #222 !important;
        font-size: 10pt !important;
    }
    .projects-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .project-card {
        page-break-inside: avoid;
        margin-bottom: 1rem !important;
    }
    .project-badge {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        display: inline-block !important;
        border: none !important;
        background: none !important;
        color: #555 !important;
        padding: 0 !important;
        margin-bottom: 0.4rem !important;
    }
    .project-content {
        padding: 0 !important;
    }
    .project-title {
        font-size: 12pt !important;
        margin-bottom: 0.3rem !important;
    }
    .project-excerpt {
        color: #333 !important;
        font-size: 10pt !important;
        margin-bottom: 0.5rem !important;
    }
    .project-tags {
        margin-bottom: 0.5rem !important;
    }
    .project-tags span {
        border: none !important;
        background: #f3f4f6 !important;
        color: #333 !important;
        padding: 0.1rem 0.4rem !important;
    }
    .project-footer {
        display: none !important;
    }
    .research-showcase {
        padding: 0 !important;
        page-break-inside: avoid;
    }
    .research-title-text {
        font-size: 13pt !important;
    }
    .research-authors {
        color: #333 !important;
        font-size: 10pt !important;
        margin-bottom: 0.8rem !important;
    }
    .research-grid {
        grid-template-columns: 1fr !important;
    }
    .research-bullets {
        margin-bottom: 0 !important;
    }
    .research-bullets li {
        color: #222 !important;
        font-size: 10pt !important;
    }
    .education-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .education-card {
        padding: 0 !important;
        gap: 0 !important;
    }
    .edu-icon-wrapper {
        display: none !important;
    }
    .edu-degree {
        font-size: 12pt !important;
    }
    .edu-institute {
        margin-bottom: 0.8rem !important;
    }
    .edu-meta-stats {
        border-top: 1px solid #eee !important;
        padding-top: 0.8rem !important;
        gap: 1.5rem !important;
    }
    .edu-value.font-highlight {
        background: none !important;
        -webkit-text-fill-color: initial !important;
        color: #000 !important;
    }
    .certs-list {
        gap: 0.8rem !important;
    }
    .cert-item-card {
        padding: 0 !important;
        gap: 0 !important;
        page-break-inside: avoid;
    }
    .cert-icon-wrapper {
        display: none !important;
    }
    .cert-title {
        font-size: 11pt !important;
    }
    .cert-summary {
        color: #333 !important;
        font-size: 9pt !important;
    }
}

/* Futuristic additions (Canvas Particles, Scroll Progress, Typing Cursor) */
.particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.7;
}

.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(to right, var(--accent-cyan), var(--accent-purple), var(--accent-pink));
    z-index: 9999;
}

.typing-cursor {
    font-weight: 300;
    color: var(--accent-cyan);
    animation: blink 0.8s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

@media print {
    .particles-canvas, .scroll-progress-bar, .typing-cursor {
        display: none !important;
    }
}

/* Flagship FYP Card Highlight Styling */
.fyp-card {
    border: 1px dashed rgba(129, 140, 248, 0.45) !important;
    background: radial-gradient(circle at 50% 0%, rgba(129, 140, 248, 0.08) 0%, rgba(12, 12, 16, 0.6) 80%) !important;
    box-shadow: 0 10px 30px -10px rgba(129, 140, 248, 0.25) !important;
}

.fyp-card:hover {
    border: 1px solid rgba(129, 140, 248, 0.8) !important;
    box-shadow: 0 0 25px rgba(129, 140, 248, 0.35) !important;
}

.status-fyp {
    background: rgba(129, 140, 248, 0.2) !important;
    color: #a5b4fc !important;
    border: 1px solid rgba(129, 140, 248, 0.5) !important;
    box-shadow: 0 0 10px rgba(129, 140, 248, 0.25);
    font-weight: 700;
}

/* Neo4j Interactive Graph Visualizer inside AutoGit Card */
.fyp-graph-preview {
    width: 100%;
    height: 120px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.fyp-graph-svg {
    width: 100%;
    height: 100%;
    max-width: 240px;
}

.graph-line {
    stroke: rgba(129, 140, 248, 0.35);
    stroke-width: 1.5;
    stroke-dasharray: 5;
    animation: flow 4s linear infinite;
}

@keyframes flow {
    to { stroke-dashoffset: -20; }
}

.node-circle {
    stroke-width: 1.5;
    transition: transform 0.3s ease;
}

.cyan-node {
    fill: rgba(6, 182, 212, 0.15);
    stroke: var(--accent-cyan);
    filter: drop-shadow(0 0 4px var(--accent-cyan));
}

.purple-node {
    fill: rgba(139, 92, 246, 0.15);
    stroke: var(--accent-violet);
    filter: drop-shadow(0 0 6px var(--accent-violet));
}

.pink-node {
    fill: rgba(236, 72, 153, 0.15);
    stroke: var(--accent-pink);
    filter: drop-shadow(0 0 6px var(--accent-pink));
}

.node-label {
    fill: #ffffff;
    font-family: var(--font-sans);
    font-size: 8px;
    font-weight: 600;
    text-anchor: middle;
    pointer-events: none;
}

/* Pulse effect for nodes */
.graph-node {
    cursor: pointer;
    animation: pulse-node 3s infinite ease-in-out;
}

.node-2 { animation-delay: 0.7s; }
.node-3 { animation-delay: 1.4s; }
.node-4 { animation-delay: 2.1s; }

@keyframes pulse-node {
    0%, 100% { transform: scale(1); transform-origin: center; }
    50% { transform: scale(1.08); transform-origin: center; }
}

@media print {
    .fyp-graph-preview, .project-graph-preview {
        display: none !important;
    }
}

/* Custom Projects Graph Previews */
.project-graph-preview {
    width: 100%;
    height: 120px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.pie-slice {
    transform-origin: center;
    animation: rotate-pie 12s linear infinite;
}

.pie-slice-2 {
    transform-origin: center;
    animation: rotate-pie-reverse 15s linear infinite;
}

@keyframes rotate-pie {
    to { transform: rotate(360deg); }
}

@keyframes rotate-pie-reverse {
    to { transform: rotate(-360deg); }
}

.warn-pulse {
    animation: warning-pulse 1.8s infinite ease-in-out;
}

@keyframes warning-pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.4); opacity: 1; filter: drop-shadow(0 0 3px var(--accent-pink)); }
}

.hotel-room-text {
    fill: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 8px;
    font-weight: 700;
    text-anchor: middle;
}

.hotel-room-status {
    font-family: var(--font-sans);
    font-size: 7px;
    font-weight: 600;
    text-anchor: middle;
}

.hotel-room-status.green { fill: var(--accent-emerald); }
.hotel-room-status.cyan { fill: var(--accent-cyan); }
.hotel-room-status.orange { fill: var(--accent-orange); }

.stats-bar-fill {
    animation: fill-width 3s infinite alternate ease-in-out;
}

.stats-bar-fill-2 {
    animation: fill-width-delayed 3s infinite alternate ease-in-out;
}

@keyframes fill-width {
    0% { width: 40px; }
    100% { width: 100px; }
}

@keyframes fill-width-delayed {
    0% { width: 60px; x: 100px; }
    100% { width: 40px; x: 120px; }
}

.hotel-percent-text {
    fill: #ffffff;
    font-size: 7px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.ecg-line {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: draw-ecg 5s linear infinite;
}

@keyframes draw-ecg {
    to { stroke-dashoffset: 0; }
}

.ecg-pulse {
    animation: ecg-flow 5s linear infinite;
}

@keyframes ecg-flow {
    0% { cx: 10; cy: 50; }
    20% { cx: 40; cy: 50; }
    25% { cx: 50; cy: 30; }
    30% { cx: 60; cy: 70; }
    35% { cx: 70; cy: 50; }
    50% { cx: 100; cy: 50; }
    52% { cx: 105; cy: 20; }
    57% { cx: 115; cy: 80; }
    62% { cx: 125; cy: 50; }
    100% { cx: 190; cy: 50; }
}

.accuracy-text {
    fill: var(--accent-pink);
    font-family: var(--font-heading);
    font-size: 8px;
    font-weight: 800;
    text-anchor: middle;
}

.scanner-bar {
    animation: scan 2.5s infinite ease-in-out;
}

@keyframes scan {
    0%, 100% { y1: 15; y2: 15; }
    50% { y1: 85; y2: 85; }
}

.swap-line {
    animation: dash-swap 2s infinite linear;
}

@keyframes dash-swap {
    to { stroke-dashoffset: -12; }
}

.flow-path-anim {
    stroke-dasharray: 4;
    stroke-dashoffset: 8;
    animation: flow-dash 1.5s linear infinite;
}

@keyframes flow-dash {
    to { stroke-dashoffset: -8; }
}

/* Futuristic additions (Canvas Particles) */
.particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.7;
}

@media print {
    .particles-canvas {
        display: none !important;
    }
}

/* ============================================================
   EDUCATION & CERTIFICATIONS SECTION
   ============================================================ */

.education-section {
    background: transparent;
}

.education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Education Card */
.education-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.edu-card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.edu-icon-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(0,242,254,0.1));
    border: 1px solid rgba(139,92,246,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-violet);
    flex-shrink: 0;
}

.edu-icon-wrapper svg { width: 26px; height: 26px; }

.edu-header-info { display: flex; flex-direction: column; gap: 0.3rem; }

.edu-degree {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.edu-institute {
    font-size: 0.95rem;
    color: var(--accent-cyan);
    font-weight: 600;
    margin: 0;
}

.edu-stats {
    display: flex;
    gap: 1.5rem;
}

.edu-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.9rem 1.4rem;
    background: rgba(139,92,246,0.07);
    border: 1px solid rgba(139,92,246,0.15);
    border-radius: 12px;
    flex: 1;
}

.edu-stat-value {
    font-size: 1.7rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.edu-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.edu-timeline {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.edu-timeline svg { width: 16px; height: 16px; color: var(--accent-emerald); }

.edu-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.2rem;
}

.edu-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.edu-highlight-item svg {
    width: 15px;
    height: 15px;
    color: var(--accent-pink);
    flex-shrink: 0;
}

/* Certifications list */
.certifications-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cert-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.4rem 1.6rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cert-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 32px rgba(139,92,246,0.15);
}

.cert-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-icon svg { width: 22px; height: 22px; }

.cert-coursera {
    background: rgba(0,119,181,0.12);
    color: #0077b5;
    border: 1px solid rgba(0,119,181,0.2);
}

.cert-hackerrank {
    background: rgba(0,234,100,0.1);
    color: #00ea64;
    border: 1px solid rgba(0,234,100,0.2);
}

.cert-hec {
    background: rgba(245,158,11,0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(245,158,11,0.2);
}

.cert-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.cert-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cert-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.cert-org {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .education-grid {
        grid-template-columns: 1fr;
    }
}

