/* ===== VARIABLES ===== */
:root {
    --primary: #4F46E5;
    --primary-dark: #3730A3;
    --primary-light: #818CF8;
    --secondary: #F43F5E;
    --accent: #10B981;
    --accent-gold: #F59E0B;
    --dark: #0F172A;
    --dark-2: #1E293B;
    --dark-3: #334155;
    --text: #E2E8F0;
    --text-muted: #64748B;
    --text-dark: #0F172A;
    --white: #FFFFFF;
    --bg-section: #F8FAFC;
    --bg-section-alt: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(79, 70, 229, 0.25);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-section);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; z-index: 10001;
    background: linear-gradient(90deg, var(--primary), #7C3AED, var(--secondary), var(--accent));
    background-size: 300% 100%;
    animation: gradientShift 4s ease infinite;
    transform-origin: left; width: 0;
    transition: width 0.05s linear;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.5);
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: radial-gradient(ellipse at center, #1a1635 0%, #0F172A 60%, #070b1a 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 2.5rem;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.preloader.hidden {
    opacity: 0; visibility: hidden;
    transform: scale(1.1);
}

/* Container for the S + orbits */
.preloader-content {
    position: relative;
    width: 160px; height: 160px;
    display: flex; align-items: center; justify-content: center;
}

/* The S Letter */
.preloader-letter {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #818CF8, #4F46E5, #7C3AED, #F43F5E);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: preloaderGradient 3s ease infinite, preloaderPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(79, 70, 229, 0.5));
    z-index: 3;
    position: relative;
}

@keyframes preloaderGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 30px rgba(79, 70, 229, 0.5)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 50px rgba(79, 70, 229, 0.8)); }
}

/* Orbital Rings */
.preloader-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid transparent;
}
.preloader-orbit-1 {
    width: 120px; height: 120px;
    border-top-color: rgba(129, 140, 248, 0.6);
    border-right-color: rgba(129, 140, 248, 0.15);
    animation: orbitSpin1 2.5s linear infinite;
}
.preloader-orbit-2 {
    width: 145px; height: 145px;
    border-bottom-color: rgba(124, 58, 237, 0.5);
    border-left-color: rgba(124, 58, 237, 0.12);
    animation: orbitSpin2 3.5s linear infinite;
}
.preloader-orbit-3 {
    width: 160px; height: 160px;
    border-top-color: rgba(244, 63, 94, 0.4);
    border-left-color: rgba(244, 63, 94, 0.1);
    animation: orbitSpin3 4.5s linear infinite;
}

/* Orbit dots (small glowing circles on each ring) */
.preloader-orbit-1::after {
    content: '';
    position: absolute; top: -3px; left: 50%;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #818CF8;
    box-shadow: 0 0 12px 3px rgba(129, 140, 248, 0.8);
}
.preloader-orbit-2::after {
    content: '';
    position: absolute; bottom: -3px; right: 20%;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #7C3AED;
    box-shadow: 0 0 12px 3px rgba(124, 58, 237, 0.8);
}
.preloader-orbit-3::after {
    content: '';
    position: absolute; top: 20%; left: -3px;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #F43F5E;
    box-shadow: 0 0 10px 3px rgba(244, 63, 94, 0.7);
}

@keyframes orbitSpin1 {
    to { transform: rotate(360deg); }
}
@keyframes orbitSpin2 {
    to { transform: rotate(-360deg); }
}
@keyframes orbitSpin3 {
    to { transform: rotate(360deg); }
}

/* Floating Particles around the S */
.preloader-dots {
    position: absolute; inset: -20px;
}
.preloader-dots span {
    position: absolute;
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgba(129, 140, 248, 0.7);
    animation: preloaderFloat 3s ease-in-out infinite;
}
.preloader-dots span:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; background: #818CF8; }
.preloader-dots span:nth-child(2) { top: 5%; right: 15%; animation-delay: 0.4s; background: #7C3AED; }
.preloader-dots span:nth-child(3) { bottom: 15%; left: 10%; animation-delay: 0.8s; background: #F43F5E; }
.preloader-dots span:nth-child(4) { bottom: 5%; right: 5%; animation-delay: 1.2s; background: #10B981; }
.preloader-dots span:nth-child(5) { top: 50%; left: -5%; animation-delay: 0.3s; width: 2px; height: 2px; }
.preloader-dots span:nth-child(6) { top: 30%; right: -5%; animation-delay: 0.7s; width: 2px; height: 2px; }
.preloader-dots span:nth-child(7) { bottom: 30%; left: -3%; animation-delay: 1.0s; width: 2px; height: 2px; background: #F59E0B; }
.preloader-dots span:nth-child(8) { top: -5%; left: 40%; animation-delay: 1.5s; width: 2px; height: 2px; background: #818CF8; }

@keyframes preloaderFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-10px) scale(1.5); opacity: 1; }
}

/* Loading Bar */
.preloader-bar {
    width: 180px; height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}
.preloader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4F46E5, #7C3AED, #818CF8);
    border-radius: 10px;
    animation: preloaderBarFill 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    box-shadow: 0 0 12px rgba(79, 70, 229, 0.6);
}

@keyframes preloaderBarFill {
    0% { width: 0%; }
    30% { width: 45%; }
    60% { width: 70%; }
    100% { width: 100%; }
}

/* Loading Text */
.preloader-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    animation: preloaderTextPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderTextPulse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.7; }
}

/* ===== FLOATING SHAPES (decorative) ===== */
.floating-shape {
    position: absolute; border-radius: 50%; pointer-events: none;
    opacity: 0.06; z-index: 0;
}
.shape-1 {
    width: 400px; height: 400px;
    background: var(--primary);
    top: -100px; right: -100px;
    animation: morphBlob 8s ease-in-out infinite;
}
.shape-2 {
    width: 300px; height: 300px;
    background: var(--secondary);
    bottom: -80px; left: -80px;
    animation: morphBlob 10s ease-in-out infinite reverse;
}
.shape-3 {
    width: 200px; height: 200px;
    background: var(--accent);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    animation: morphBlob 12s ease-in-out infinite 2s;
}
@keyframes morphBlob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(0deg) scale(1); }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 70% 50% 60%; transform: rotate(180deg) scale(1.1); }
    75% { border-radius: 60% 30% 60% 40% / 70% 40% 60% 30%; }
}
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== CURSOR GLOW ===== */
.cursor-glow {
    width: 500px; height: 500px;
    position: fixed;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79,70,229,0.12) 0%, rgba(244,63,94,0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s, width 0.3s, height 0.3s;
    opacity: 0;
    mix-blend-mode: screen;
}
body:hover .cursor-glow { opacity: 1; }

/* ===== ANIMATED TEXT REVEAL ===== */
.reveal-text {
    overflow: hidden;
    display: inline-block;
}
.reveal-text span {
    display: inline-block;
    transform: translateY(100%);
    animation: revealUp 0.8s ease forwards;
}
@keyframes revealUp {
    to { transform: translateY(0); }
}

/* ===== GLOWING BORDER ANIMATION ===== */
.glow-border {
    position: relative;
}
.glow-border::before {
    content: ''; position: absolute; inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from 0deg, var(--primary), var(--secondary), var(--accent), var(--accent-gold), var(--primary));
    z-index: -1;
    animation: rotateBorder 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.glow-border:hover::before { opacity: 1; }
.glow-border::after {
    content: ''; position: absolute; inset: 1px;
    border-radius: inherit;
    background: inherit;
    z-index: -1;
}
@keyframes rotateBorder {
    to { transform: rotate(360deg); }
}

/* ===== NAVIGATION ===== */
#main-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}
#main-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    border-bottom-color: transparent;
}
.nav-container {
    max-width: 1300px; margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
}
.logo {
    display: flex; align-items: center; gap: 0.75rem;
    text-decoration: none;
}
.logo-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--primary), #7C3AED);
    color: white; font-weight: 800; font-size: 1.2rem;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.35);
}
.logo-text {
    font-family: var(--font-heading);
    font-weight: 800; font-size: 1.25rem;
    color: var(--dark);
    letter-spacing: 0.5px;
}
.logo-text span { color: var(--primary); }
.nav-links {
    display: flex; gap: 0.5rem; align-items: center;
    list-style: none;
}
.nav-link i { display: none; }
.mobile-nav-footer { display: none; }
.nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500; font-size: 0.9rem;
    color: var(--dark-3);
    border-radius: var(--radius-sm);
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: rgba(79, 70, 229, 0.06);
}
.nav-link.active::after {
    content: '';
    position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 20px; height: 3px;
    background: var(--primary); border-radius: 2px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none; flex-direction: column; gap: 6px;
    cursor: pointer; padding: 8px; z-index: 1100;
    position: relative;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.menu-toggle:hover {
    background: rgba(79, 70, 229, 0.08);
}
.menu-toggle span {
    width: 24px; height: 2.5px;
    background: var(--dark); border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
}
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--primary);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0; transform: scaleX(0);
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--primary);
}

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1049;
    opacity: 0; visibility: hidden;
    transition: all 0.35s ease;
}
.mobile-overlay.active {
    opacity: 1; visibility: visible;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 40%, #1E1B4B 100%);
    padding-top: 80px;
}
#particleCanvas {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.hero-gradient {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(244, 63, 94, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 217, 166, 0.08) 0%, transparent 50%);
    z-index: 2;
}
.hero-content {
    position: relative; z-index: 5;
    text-align: center; color: var(--white);
    max-width: 900px; padding: 0 2rem;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.85rem; color: var(--accent);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}
.hero-badge i { font-size: 0.75rem; animation: locationPing 2s ease-in-out infinite; }
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 217, 166, 0.2); }
    50% { box-shadow: 0 0 20px 5px rgba(0, 217, 166, 0.1); }
}
@keyframes locationPing {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}
.hero h1 { margin-bottom: 1.5rem; }
.greeting {
    display: block;
    font-size: 1.3rem; font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    letter-spacing: 2px; text-transform: uppercase;
}
.name-highlight {
    display: block;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #FFFFFF 0%, #4F46E5 30%, #F43F5E 60%, #10B981 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: nameGradient 6s ease infinite;
    filter: drop-shadow(0 0 30px rgba(79, 70, 229, 0.3));
}
@keyframes nameGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-typewriter {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    min-height: 2rem;
}
.typewriter-prefix { color: rgba(255, 255, 255, 0.6); }
.typewriter-text { color: var(--accent-gold); font-weight: 600; }
.typewriter-cursor {
    color: var(--accent-gold);
    animation: blink 0.8s infinite;
    font-weight: 300;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 650px; margin-left: auto; margin-right: auto;
}
.hero-cta {
    display: flex; gap: 1rem;
    justify-content: center; flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-social {
    display: flex; gap: 1rem; justify-content: center;
}
.hero-social a {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: var(--transition);
}
.hero-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
}
.hero-social a:nth-child(1) { animation: socialFloat 3s ease-in-out infinite 0s; }
.hero-social a:nth-child(2) { animation: socialFloat 3s ease-in-out infinite 0.3s; }
.hero-social a:nth-child(3) { animation: socialFloat 3s ease-in-out infinite 0.6s; }
.hero-social a:nth-child(4) { animation: socialFloat 3s ease-in-out infinite 0.9s; }
@keyframes socialFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    z-index: 5; color: rgba(255, 255, 255, 0.4);
    animation: bobble 2s infinite;
}
.mouse {
    width: 26px; height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex; justify-content: center; padding-top: 8px;
}
.wheel {
    width: 4px; height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}
@keyframes scroll-wheel { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(12px); } }
@keyframes bobble { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.scroll-indicator span { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white; font-weight: 600; font-size: 0.95rem;
    border-radius: var(--radius-sm);
    border: none; cursor: pointer;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.5), 0 0 60px rgba(79, 70, 229, 0.15);
}
.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

/* Button ripple animation */
@keyframes btnRipple {
    to { transform: scale(4); opacity: 0; }
}

.btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: transparent;
    color: white; font-weight: 600; font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(79, 70, 229, 0.1);
    transform: translateY(-3px);
    color: white;
}

/* ===== SECTION COMMON ===== */
section { padding: 6rem 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 1rem;
}
.section-tag.light {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 1rem;
}
.section-line {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}
.section-line::after {
    content: '';
    position: absolute; top: 50%; left: 0;
    width: 100%; height: 100%;
    background: inherit; border-radius: inherit;
    animation: lineExpand 2s ease-in-out infinite;
    transform: translateY(-50%);
}
@keyframes lineExpand {
    0%, 100% { width: 60px; opacity: 1; }
    50% { width: 120px; opacity: 0.5; margin-left: -30px; }
}
.section-line.light {
    background: linear-gradient(90deg, rgba(255,255,255,0.6), var(--primary-light));
}
.section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ===== GLASS CARD ===== */
.glass-card {
    background: white;
    border: 1px solid rgba(79, 70, 229, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.glass-card::after {
    content: '';
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(79,70,229,0.03) 50%, transparent 60%);
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.8s ease;
}
.glass-card:hover::after {
    transform: rotate(45deg) translateY(0);
}
.glass-card:hover {
    box-shadow: 0 12px 40px rgba(79, 70, 229, 0.12), 0 0 0 1px rgba(79, 70, 229, 0.1);
    transform: translateY(-6px);
}

/* ===== ABOUT ===== */
.about-section { background: var(--bg-section-alt); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem; align-items: center;
}
.about-image { position: relative; }
.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.image-wrapper img {
    width: 100%; height: 500px;
    object-fit: cover;
    transition: var(--transition);
}
.image-wrapper:hover img { transform: scale(1.05) rotate(1deg); }
.image-wrapper::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(79,70,229,0.1) 0%, transparent 50%, rgba(244,63,94,0.1) 100%);
    opacity: 0; transition: opacity 0.5s ease;
    border-radius: inherit;
}
.image-wrapper:hover::after { opacity: 1; }
.image-border {
    position: absolute; top: -15px; left: -15px;
    right: 15px; bottom: 15px;
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}
.image-dots {
    position: absolute; bottom: -20px; right: -20px;
    width: 100px; height: 100px;
    background-image: radial-gradient(circle, var(--primary) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.3;
    z-index: -1;
}
.floating-card {
    position: absolute;
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.8rem 1.2rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-weight: 600; font-size: 0.85rem;
    color: var(--dark);
    animation: float-card 4s ease-in-out infinite;
}
.floating-card i {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white; border-radius: 10px; font-size: 0.9rem;
}
.card-1 { top: 15%; right: -30px; animation-delay: 0s; }
.card-2 { bottom: 10%; left: -20px; animation-delay: -2s; }
@keyframes float-card {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(1deg); }
    75% { transform: translateY(-4px) rotate(-1deg); }
    50% { transform: translateY(-12px) rotate(0deg); }
}

/* Animated gradient border on about stats */
.stat-item {
    position: relative;
    overflow: hidden;
}
.stat-item::before {
    content: '';
    position: absolute; top: 0; left: -100%; width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    animation: statShimmer 3s ease-in-out infinite;
}
@keyframes statShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.about-content h3 {
    font-size: 2rem; margin-bottom: 1.5rem;
    color: var(--dark);
}
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-content p {
    color: #555; margin-bottom: 1rem;
    font-size: 1rem; line-height: 1.8;
}
.about-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem; margin-top: 2rem;
}
.info-item {
    display: flex; align-items: flex-start; gap: 0.8rem;
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    background: var(--bg-section);
    transition: var(--transition);
}
.info-item:hover { background: rgba(79, 70, 229, 0.06); }
.info-item i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 4px;
}
.info-item strong { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.info-item span { font-size: 0.9rem; color: var(--dark); font-weight: 500; }

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 2.5rem;
}
.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(244, 63, 94, 0.05));
    border-radius: var(--radius-md);
    border: 1px solid rgba(79, 70, 229, 0.1);
}
.stat-number {
    font-size: 2.5rem; font-weight: 900;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-number::after { content: '+'; }
.stat-item span {
    display: block;
    font-size: 0.8rem; color: var(--text-muted);
    margin-top: 0.3rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1px;
}

/* ===== EXPERIENCE / TIMELINE ===== */
.experience-section { background: var(--bg-section); }
.timeline {
    position: relative;
    max-width: 800px; margin: 0 auto;
    padding-left: 60px;
}
.timeline::before {
    content: ''; position: absolute;
    left: 25px; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 3px;
}
.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}
.timeline-dot {
    position: absolute; left: -47px; top: 2rem;
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1rem;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 6px var(--bg-section), var(--shadow-glow);
    z-index: 2;
}
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 6px var(--bg-section), 0 0 0 10px rgba(79, 70, 229, 0); }
    50% { box-shadow: 0 0 0 6px var(--bg-section), 0 0 0 14px rgba(79, 70, 229, 0.15); }
}
.timeline-content {
    padding: 2rem 2.5rem;
}
.timeline-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1rem; flex-wrap: wrap; gap: 0.5rem;
}
.timeline-date {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.85rem; color: var(--primary);
    font-weight: 600;
}
.timeline-badge {
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white; font-size: 0.7rem; font-weight: 700;
    border-radius: 50px; text-transform: uppercase; letter-spacing: 1px;
}
.badge-secondary {
    background: linear-gradient(135deg, var(--secondary), #e0566e) !important;
}
.timeline-content h3 {
    font-size: 1.5rem; color: var(--dark);
    margin-bottom: 0.5rem;
}
.timeline-content h4 {
    font-size: 0.95rem; color: var(--text-muted);
    font-weight: 500; margin-bottom: 1.2rem;
}
.timeline-content h4 i { margin-right: 0.4rem; color: var(--primary); }
.timeline-list { display: flex; flex-direction: column; gap: 0.8rem; }
.timeline-list li {
    display: flex; gap: 0.8rem; align-items: flex-start;
    font-size: 0.9rem; color: #555; line-height: 1.6;
}
.timeline-list li i {
    color: var(--accent); font-size: 0.8rem;
    margin-top: 5px; flex-shrink: 0;
}

/* ===== SKILLS ===== */
.skills-section { background: var(--bg-section-alt); }
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.skill-category { padding: 2.5rem; }
.skill-category-header {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 2rem;
}
.skill-icon-wrap {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}
.skill-icon-wrap.secondary {
    background: linear-gradient(135deg, var(--accent), #00b88f);
    box-shadow: 0 4px 15px rgba(0, 217, 166, 0.3);
}
.skill-icon-wrap.tertiary {
    background: linear-gradient(135deg, var(--accent-gold), #e0a800);
    box-shadow: 0 4px 15px rgba(247, 201, 72, 0.3);
}
.skill-category h3 {
    font-size: 1.3rem; color: var(--dark);
}

/* Skill Bars */
.skill-bars { display: flex; flex-direction: column; gap: 1.3rem; }
.skill-bar-info {
    display: flex; justify-content: space-between;
    font-size: 0.85rem; font-weight: 600;
    margin-bottom: 0.5rem;
}
.skill-bar-info span:first-child { color: var(--dark); }
.skill-bar-info span:last-child { color: var(--primary); }
.skill-bar-track {
    height: 8px;
    background: rgba(79, 70, 229, 0.08);
    border-radius: 10px;
    overflow: hidden;
}
.skill-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.skill-bar-fill::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    animation: skillShimmer 2s ease-in-out infinite;
}
@keyframes skillShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Skill Tags */
.skill-tags {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.skill-tag {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(79, 70, 229, 0.06);
    border: 1px solid rgba(79, 70, 229, 0.12);
    border-radius: 50px;
    font-size: 0.8rem; font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
}
.skill-tag i { color: var(--primary); font-size: 0.75rem; }
.skill-tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}
.skill-tag:hover i { color: white; }

/* Language Dots */
.language-bars { display: flex; flex-direction: column; gap: 1rem; }
.language-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.6rem 0;
}
.lang-name { font-weight: 600; font-size: 0.85rem; min-width: 120px; color: var(--dark); }
.lang-dots { display: flex; gap: 6px; }
.dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.1);
    border: 2px solid rgba(79, 70, 229, 0.2);
    transition: var(--transition);
}
.dot.filled {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}
.lang-level { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.tech-item {
    display: flex; flex-direction: column; align-items: center;
    gap: 0.8rem; padding: 1.5rem;
    background: var(--bg-section);
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-align: center;
}
.tech-item i {
    font-size: 2rem;
    color: var(--accent-gold);
}
.tech-item span {
    font-weight: 600; font-size: 0.85rem;
    color: var(--dark);
}
.tech-item:hover {
    background: linear-gradient(135deg, rgba(247, 201, 72, 0.1), rgba(247, 201, 72, 0.05));
    transform: translateY(-3px);
}

/* ===== SERVICES ===== */
.services-section {
    background: var(--bg-section);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(79, 70, 229, 0.06);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-icon-wrap {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(79, 70, 229, 0.05));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    animation: iconBounce 0.6s ease;
}
@keyframes iconBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.2) rotate(10deg); }
    60% { transform: scale(0.95) rotate(-5deg); }
    100% { transform: scale(1) rotate(0deg); }
}
.service-card:nth-child(odd):hover { border-color: rgba(79,70,229,0.15); }
.service-card:nth-child(even):hover { border-color: rgba(244,63,94,0.15); }
.service-card h4 {
    font-size: 1.2rem; color: var(--dark);
    margin-bottom: 0.8rem;
}
.service-card p {
    font-size: 0.9rem; color: #666;
    line-height: 1.7; margin-bottom: 1rem;
}
.service-arrow {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg-section);
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .service-arrow {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}
.services-cta, .blogs-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== EDUCATION ===== */
.education-section { background: var(--bg-section-alt); }
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}
.education-card {
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.education-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.edu-icon {
    width: 70px; height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    transition: var(--transition);
}
.education-card:hover .edu-icon {
    transform: rotateY(180deg) scale(1.1);
    border-radius: 50%;
}
.education-card:hover .edu-icon.secondary {
    transform: rotateY(180deg) scale(1.1);
    border-radius: 50%;
}
.edu-icon.secondary {
    background: linear-gradient(135deg, var(--secondary), #e0566e);
    box-shadow: 0 8px 25px rgba(244, 63, 94, 0.3);
}
.edu-year {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700; font-size: 0.85rem;
    margin-bottom: 1rem;
}
.education-card h3 {
    font-size: 1.4rem; color: var(--dark);
    margin-bottom: 0.5rem;
}
.education-card h4 {
    font-size: 1rem; color: var(--text-muted);
    font-weight: 500; margin-bottom: 0.8rem;
}
.edu-affiliation {
    font-size: 0.85rem; color: var(--primary);
    font-weight: 500; margin-bottom: 1.5rem;
}
.edu-affiliation i { margin-right: 0.3rem; }
.edu-details p {
    font-size: 0.9rem; color: #666;
    margin-bottom: 1rem;
}
.edu-subjects {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    justify-content: center;
}
.edu-subjects span {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    background: var(--bg-section);
    border-radius: 50px;
    font-size: 0.75rem; font-weight: 500;
    color: var(--dark);
}
.edu-subjects span i { color: var(--primary); font-size: 0.7rem; }

/* ===== CERTIFICATIONS ===== */
.certifications-section { background: var(--bg-section); }
.cert-card {
    max-width: 800px; margin: 0 auto;
    display: flex; gap: 2rem; align-items: flex-start;
    padding: 2.5rem;
}
.cert-badge {
    width: 80px; height: 80px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent-gold), #e0a800);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 2rem;
    box-shadow: 0 8px 25px rgba(247, 201, 72, 0.3);
    animation: certSpin 6s ease-in-out infinite;
}
@keyframes certSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.05); }
    75% { transform: rotate(-5deg) scale(1.05); }
}
.cert-year {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(247, 201, 72, 0.1);
    color: #c9920a;
    border-radius: 50px;
    font-weight: 700; font-size: 0.8rem;
    margin-bottom: 0.8rem;
}
.cert-content h3 {
    font-size: 1.3rem; color: var(--dark);
    margin-bottom: 0.5rem;
}
.cert-content h4 {
    font-size: 0.9rem; color: var(--text-muted);
    font-weight: 500; margin-bottom: 0.3rem;
}
.cert-content h4 i { margin-right: 0.3rem; color: var(--primary); }
.cert-location {
    font-size: 0.8rem; color: var(--primary);
    margin-bottom: 1rem;
}
.cert-location i { margin-right: 0.3rem; }
.cert-content > p:last-child { font-size: 0.9rem; color: #666; line-height: 1.7; }

/* ===== BLOGS ===== */
.blogs-section { background: var(--bg-section); }
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(79, 70, 229, 0.06);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.blog-img {
    height: 220px; overflow: hidden;
    position: relative;
}
.blog-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .blog-img img { transform: scale(1.1) rotate(1deg); }
.blog-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
    transition: opacity 0.4s ease;
    opacity: 0;
}
.blog-card:hover .blog-img::after { opacity: 1; }
.blog-overlay {
    position: absolute; top: 1rem; left: 1rem;
}
.blog-category {
    padding: 0.3rem 0.8rem;
    background: rgba(79, 70, 229, 0.9);
    color: white; font-size: 0.7rem; font-weight: 700;
    border-radius: 50px; text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-content { padding: 1.5rem 2rem 2rem; }
.blog-date {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.8rem; color: var(--text-muted);
    font-weight: 500; margin-bottom: 0.8rem;
}
.blog-date i { font-size: 0.7rem; }
.blog-card h4 {
    font-size: 1.2rem; color: var(--dark);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}
.blog-card p {
    font-size: 0.9rem; color: #666;
    margin-bottom: 1.5rem; line-height: 1.7;
}
.read-more {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-weight: 700; font-size: 0.85rem;
    color: var(--primary);
}
.read-more i { transition: var(--transition); font-size: 0.75rem; }
.read-more:hover i { transform: translateX(5px); }

/* ===== CONTACT ===== */
.contact-section {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 40%, #1E1B4B 100%);
    color: white;
}
.contact-section .section-header h2 { color: white; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}
.contact-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1rem;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}
.contact-card h4 {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 0.3rem; font-weight: 600;
}
.contact-card p, .contact-card a {
    color: white; font-weight: 500;
    font-size: 0.95rem;
}
.contact-card a:hover { color: var(--primary-light); }

/* Contact Form */
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { position: relative; }
.form-group input, .form-group textarea {
    width: 100%; padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: white; font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
    background: rgba(255, 255, 255, 0.08);
}
.form-group label {
    position: absolute; top: -8px; left: 12px;
    padding: 0 6px;
    font-size: 0.7rem;
    color: var(--primary-light);
    background: transparent;
    opacity: 0; transition: var(--transition);
    pointer-events: none;
}
.form-group input:focus + label,
.form-group textarea:focus + label {
    opacity: 1;
}
.btn-submit {
    width: 100%; justify-content: center;
    padding: 1rem;
    font-size: 1rem;
}

/* Social Buttons */
.contact-socials {
    display: flex; justify-content: center;
    gap: 1rem; margin-top: 3rem;
}
.social-btn {
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: var(--transition);
}
.social-btn:hover { transform: translateY(-6px) scale(1.15) rotate(5deg); }
.social-btn.facebook:hover { background: #1877F2; color: white; border-color: #1877F2; }
.social-btn.twitter:hover { background: #000; color: white; border-color: #000; }
.social-btn.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; border-color: #dc2743; }
.social-btn.github:hover { background: #333; color: white; border-color: #333; }
.social-btn.whatsapp:hover { background: #25D366; color: white; border-color: #25D366; }

/* ===== GALLERY SECTION (index.html preview) ===== */
.gallery-section {
    padding: 6rem 2rem;
    background: var(--bg-section-alt);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.12);
    filter: brightness(0.7);
}
.gallery-item .gallery-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}
.gallery-item .gallery-overlay i {
    color: white; font-size: 1.8rem;
    background: rgba(79, 70, 229, 0.6);
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(6px);
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}
.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* ===== GALLERY PAGE ===== */
.gallery-page-section {
    padding: 4rem 2rem 6rem;
    background: var(--bg-section);
}
.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.gallery-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1.5rem 2.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.gallery-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}
.gallery-stat-item i {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}
.gallery-stat-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
}
.gallery-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Masonry Grid */
.gallery-masonry {
    columns: 4;
    column-gap: 1rem;
    max-width: 1300px;
    margin: 0 auto;
}
.gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}
.gallery-masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}
.gallery-masonry-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.65);
}
.gallery-masonry-item .gallery-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(180deg, transparent 40%, rgba(79, 70, 229, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-masonry-item .gallery-overlay i {
    color: white; font-size: 1.5rem;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gallery-masonry-item .gallery-overlay span {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s;
}
.gallery-masonry-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-masonry-item:hover .gallery-overlay i,
.gallery-masonry-item:hover .gallery-overlay span {
    transform: translateY(0);
}
.gallery-masonry-item:hover {
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.2);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed; inset: 0;
    z-index: 100000;
    background: rgba(0, 0, 0, 0.95);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(20px);
}
.lightbox.active {
    opacity: 1; visibility: visible;
}
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.8);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox.active .lightbox-content img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 1.5rem; right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(10px);
}
.lightbox-close:hover {
    background: var(--secondary);
    transform: rotate(90deg) scale(1.1);
    border-color: transparent;
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(10px);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--primary);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
}
.lightbox-counter {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
}

/* ===== FOOTER ===== */
footer {
    background: #070810;
    color: rgba(255, 255, 255, 0.6);
    padding: 5rem 2rem 2rem;
}
.footer-container {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}
.footer-logo {
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 1rem;
}
.footer-logo .logo-icon {
    width: 40px; height: 40px; font-size: 1.1rem;
}
.footer-logo h4 { color: white; font-size: 1.2rem; }
footer .footer-col p {
    font-size: 0.9rem; line-height: 1.8;
    margin-bottom: 0.5rem;
}
footer .footer-col p i { margin-right: 0.5rem; color: var(--primary); }
.footer-col h4 {
    color: white; font-size: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}
.footer-col h4::after {
    content: '';
    display: block;
    width: 30px; height: 3px;
    background: var(--primary); border-radius: 2px;
    margin-top: 0.5rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}
.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 8px;
}
.footer-col ul li a::before {
    content: ''; display: inline-block;
    width: 0; height: 2px;
    background: var(--primary-light);
    margin-right: 0;
    vertical-align: middle;
    transition: width 0.3s ease, margin-right 0.3s ease;
}
.footer-col ul li a:hover::before {
    width: 15px; margin-right: 8px;
}
.footer-bottom {
    text-align: center;
    padding-top: 3rem; margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white; border: none;
    border-radius: 50%;
    font-size: 1.1rem; cursor: pointer;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
}
.back-to-top.visible {
    transform: translateY(0);
    opacity: 1;
    animation: backTopPulse 2s ease-in-out infinite;
}
@keyframes backTopPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(79, 70, 229, 0.7), 0 0 0 8px rgba(79, 70, 229, 0.1); }
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.6);
    animation: none;
}

/* ===== WAVE SECTION DIVIDER ===== */
.wave-divider {
    position: relative; margin-top: -2px;
    width: 100%; overflow: hidden; line-height: 0;
}
.wave-divider svg {
    display: block; width: 100%; height: 60px;
}
.wave-divider svg path {
    animation: waveMorph 8s ease-in-out infinite;
}
@keyframes waveMorph {
    0%, 100% { d: path('M0,30 C300,60 600,0 900,30 C1200,60 1500,0 1800,30 L1800,60 L0,60 Z'); }
    50% { d: path('M0,30 C300,0 600,60 900,30 C1200,0 1500,60 1800,30 L1800,60 L0,60 Z'); }
}

/* ===== STAGGER ANIMATION ===== */
.stagger-in > * {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-in.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-in.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-in.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-in.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-in.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-in.visible > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-in.visible > * { opacity: 0; transform: translateY(30px); }
.stagger-in.visible > * {
    opacity: 1; transform: translateY(0);
}

/* ===== TILT CARD 3D ===== */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}
.tilt-card:hover { transform: perspective(1000px) rotateX(2deg) rotateY(2deg); }

/* ===== NEON GLOW ACCENTS ===== */
.neon-accent {
    text-shadow: 0 0 10px rgba(79,70,229,0.5), 0 0 20px rgba(79,70,229,0.3), 0 0 40px rgba(79,70,229,0.1);
}

/* ===== MARQUEE / TICKER ===== */
.tech-ticker {
    overflow: hidden; padding: 1rem 0; position: relative;
}
.tech-ticker::before, .tech-ticker::after {
    content: ''; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2;
}
.tech-ticker::before { left: 0; background: linear-gradient(90deg, var(--bg-section), transparent); }
.tech-ticker::after { right: 0; background: linear-gradient(90deg, transparent, var(--bg-section)); }
.ticker-track {
    display: flex; gap: 3rem; animation: ticker 25s linear infinite; width: max-content;
}
.ticker-track span {
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800;
    color: var(--primary); white-space: nowrap; text-transform: uppercase;
    letter-spacing: 4px; opacity: 0.12;
    transition: opacity 0.3s;
}
.tech-ticker:hover .ticker-track span {
    opacity: 0.25;
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== MAGNETIC BUTTON CLASS ===== */
.magnetic-wrap {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* ===== SINGLE PAGE STYLES ===== */
.page-hero {
    min-height: 45vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 40%, #1E1B4B 100%);
    padding-top: 80px; text-align: center; color: white;
}
.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-light) 50%, var(--secondary) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: nameGradient 5s ease infinite;
}
.page-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px; margin: 0 auto;
}

/* Article/Single styles */
.single-article { padding: 4rem 0; background: white; }
.article-wrapper { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.article-meta {
    margin-bottom: 2rem;
    display: flex; gap: 1.5rem; align-items: center;
}
.article-meta .category {
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    font-size: 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
}
.article-meta .date { color: var(--text-muted); font-size: 0.9rem; }
.featured-image {
    width: 100%; margin-bottom: 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.featured-image img { width: 100%; height: auto; }
.article-body h2 {
    font-size: 2rem; color: var(--dark);
    margin-bottom: 1.5rem;
}
.article-body h3 {
    font-size: 1.6rem;
    margin-top: 2rem; margin-bottom: 1rem;
    color: var(--dark);
}
.article-body p {
    font-size: 1.05rem; margin-bottom: 1.5rem;
    color: #444; line-height: 1.9;
}
.quote-block {
    border-left: 5px solid var(--primary);
    padding: 1.5rem 2rem;
    background: rgba(79, 70, 229, 0.04);
    font-size: 1.2rem; font-style: italic;
    margin: 2rem 0;
    color: var(--primary-dark);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-footer {
    margin-top: 3rem; padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 1rem;
}
.tags span {
    display: inline-block;
    background: var(--bg-section);
    padding: 0.4rem 0.8rem;
    margin-right: 0.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}
.share-links {
    display: flex; gap: 0.8rem; align-items: center;
}
.share-links a {
    width: 38px; height: 38px;
    background: var(--bg-section);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    transition: var(--transition);
}
.share-links a:hover {
    background: var(--primary); color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image { max-width: 450px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .education-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-masonry { columns: 3; }
}
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .mobile-overlay { display: block; }
    .nav-link i { display: inline; font-size: 0.95rem; width: 24px; text-align: center; color: var(--primary); opacity: 0.7; }
    .nav-link.active i, .nav-link:hover i { opacity: 1; }
    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 85%; max-width: 380px; height: 100vh; height: 100dvh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column; gap: 0;
        padding: 6rem 2rem 2rem;
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
        overflow-y: auto;
    }
    .nav-links.active { right: 0; }
    .nav-links li {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    .nav-links.active li:nth-child(1) { transition-delay: 0.08s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.12s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.16s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.20s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.24s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.28s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.32s; }
    .nav-links.active li:nth-child(8) { transition-delay: 0.36s; }
    .nav-links.active li:nth-child(9) { transition-delay: 0.40s; }
    .nav-link {
        padding: 0.9rem 1rem;
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--dark);
        border-radius: var(--radius-sm);
        width: 100%;
        display: flex; align-items: center; gap: 0.75rem;
        border-bottom: none;
    }
    .nav-link:hover, .nav-link.active {
        background: rgba(79, 70, 229, 0.08);
        color: var(--primary);
    }
    .nav-link.active::after { display: none; }
    .mobile-nav-footer {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: auto;
        padding-top: 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
    .mobile-nav-socials {
        display: flex; gap: 0.75rem; justify-content: center;
    }
    .mobile-nav-socials a {
        width: 42px; height: 42px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 50%;
        background: rgba(79, 70, 229, 0.08);
        color: var(--dark-3);
        font-size: 1rem;
        transition: var(--transition);
        text-decoration: none;
    }
    .mobile-nav-socials a:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-3px);
    }
    .mobile-nav-contact {
        text-align: center;
        font-size: 0.85rem;
        color: var(--text-muted);
    }
    .mobile-nav-contact a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 500;
    }
    .hero-subtitle br { display: none; }
    .hero-cta { flex-direction: column; align-items: center; }
    .about-info-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .timeline { padding-left: 40px; }
    .timeline::before { left: 15px; }
    .timeline-dot { left: -37px; width: 36px; height: 36px; font-size: 0.8rem; }
    .timeline-content { padding: 1.5rem; }
    .skills-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .blogs-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-masonry { columns: 2; }
    .gallery-stats { gap: 1rem; }
    .gallery-stat-item { padding: 1rem 1.5rem; }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1rem; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { margin: 0.5rem auto 0; }
    .cert-card { flex-direction: column; align-items: center; text-align: center; }
    section { padding: 4rem 1.5rem; }
    .section-header { margin-bottom: 3rem; }
}
@media (max-width: 480px) {
    .name-highlight { font-size: 2.5rem; }
    .hero-typewriter { font-size: 1.1rem; }
    .stat-number { font-size: 2rem; }
    .nav-container { padding: 0.6rem 1rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
    .gallery-masonry { columns: 1; }
    .gallery-stats { flex-direction: column; align-items: center; }
}
