/* CSS Variables for Theming */
:root {
  /* Colors */
  --color-primary: #3b82f6;
  --color-primary-dark: #2563eb;
  --color-secondary: #10b981;
  --color-accent: #f59e0b;
  --color-success: #059669;
  --color-warning: #d97706;
  --color-error: #dc2626;
  
  /* Neutral Colors */
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  
  /* Theme Colors */
  --bg-primary: var(--color-white);
  --bg-secondary: var(--color-gray-50);
  --text-primary: var(--color-gray-900);
  --text-secondary: var(--color-gray-600);
  --border-color: var(--color-gray-200);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f0f0f0 100%);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Typography */
  --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-base: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
}

/* Dark Theme */
[data-theme="dark"] {
  --bg-primary: var(--color-gray-900);
  --bg-secondary: var(--color-gray-800);
  --text-primary: var(--color-white);
  --text-secondary: var(--color-gray-300);
  --border-color: var(--color-gray-700);
  --gradient-card: linear-gradient(145deg, #1f2937 0%, #111827 100%);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family-primary);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: background-color var(--transition-base), color var(--transition-base);
  overflow-x: hidden;
}

/* Particle Canvas */
.particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.6;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

[data-theme="dark"] .nav {
  background: rgba(31, 41, 55, 0.95);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav__logo-text {
  font-size: var(--font-size-xl);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav__link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link:hover {
  color: var(--color-primary);
}

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

.nav__link:hover::after {
  width: 100%;
}

.theme-toggle {
  background: none;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  border-color: var(--color-primary);
  transform: scale(1.1);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
}

.nav__toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
  border-bottom: 2px solid #00d4ff;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.3) 0%, transparent 50%),
    linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.1) 50%, transparent 100%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,255,0.2)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  animation: gridMove 20s linear infinite;
  opacity: 0.6;
}

@keyframes heroGlow {
  0% { 
    background: 
      radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.3) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.3) 0%, transparent 50%);
  }
  100% { 
    background: 
      radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.4) 0%, transparent 50%),
      radial-gradient(circle at 20% 80%, rgba(255, 0, 128, 0.4) 0%, transparent 50%);
  }
}

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

.hero__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.hero__content {
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero__content::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #00d4ff 0%, #ff0080 100%);
  border-radius: 2px;
  animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { 
    box-shadow: 0 0 5px #00d4ff, 0 0 10px #00d4ff, 0 0 15px #00d4ff;
    transform: scaleY(1);
  }
  100% { 
    box-shadow: 0 0 10px #ff0080, 0 0 20px #ff0080, 0 0 30px #ff0080;
    transform: scaleY(1.1);
  }
}

/* Hero Grid Layout */
.hero__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.5fr);
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 2rem 0;
  margin: 0;
  box-sizing: border-box;
}

.hero__avatar-wrapper {
  position: relative;
  z-index: 2;
}

.hero__avatar {
  width: 280px;
  height: 280px;
  position: relative;
  perspective: 1000px;
  transition: transform 0.3s ease-out;
}

.hero__avatar:hover {
  transform: scale(1.05);
}

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

.avatar {
  width: 100%;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-style: preserve-3d;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 0;
  animation: subtlePulse 6s ease-in-out infinite;
  overflow: visible;
}

.avatar:hover {
  animation: none;
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.avatar__face {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.avatar__face::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent 60%);
  border-radius: 50%;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.avatar__face:hover::before {
  opacity: 1;
}

.avatar__eyes {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin-bottom: 5px;
  transform: translateY(-15px);
  position: relative;
  z-index: 2;
}

.avatar__eyebrow {
  position: absolute;
  width: 20px;
  height: 6px;
  background: #333;
  border-radius: 3px;
  top: -12px;
  transition: all 0.2s ease-out;
}

.avatar__eyebrow--left {
  left: 25%;
  transform: rotate(-5deg);
}

.avatar__eyebrow--right {
  right: 25%;
  transform: rotate(5deg);
}

.avatar__eye {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 3px solid rgba(0, 0, 0, 0.15);
  transform: scale(1.1);
}

.avatar__eye.squint {
  height: 30px;
  border-radius: 50% 50% 10% 10%;
  transform: scale(1.1, 0.8);
}

.avatar__pupil {
  position: absolute;
  width: 22px;
  height: 22px;
  background: #000000;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease-out;
  will-change: transform;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}

.avatar__pupil::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  opacity: 0.9;
  box-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
}

.avatar__mouth {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 30px;
  transition: all 0.3s ease-out;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.avatar__smile {
  width: 50px;
  height: 25px;
  border-bottom: 4px solid #000;
  border-radius: 0 0 50% 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  top: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transform-origin: center top;
}

.avatar__smile.wide {
  width: 60px;
  height: 30px;
  border-bottom-width: 5px;
}

.hero__text-wrapper {
  max-width: 100%;
  position: relative;
  z-index: 1;
  padding-right: 2rem;
}

.hero__text {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

@keyframes lightning {
  0% { 
    color: #00d4ff;
    text-shadow: 0 0 20px #00d4ff, 0 0 40px #00d4ff;
    transform: scale(1);
  }
  100% { 
    color: #ff0080;
    text-shadow: 0 0 20px #ff0080, 0 0 40px #ff0080;
    transform: scale(1.1);
  }
}

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

.hero__avatar-pattern {
    width: 100%;
  height: 100%;
  border-radius: 50%;
  background: url('public/assets/2.jpg') center/cover;
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.hero__title {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: #ffffff;
  position: relative;
}

.hero__greeting {
  display: block;
  font-size: var(--font-size-lg);
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: var(--space-xs);
  color: #00d4ff;
  font-family: 'Courier New', monospace;
  animation: typewriter 3s steps(30) 1s both;
}

.hero__greeting::after {
  content: '|';
  animation: blink 1s infinite;
  color: #00d4ff;
}

@keyframes typewriter {
  0% { width: 0; }
  100% { width: 100%; }
}

.hero__name {
  display: block;
  background: linear-gradient(45deg, #00d4ff 0%, #ffffff 50%, #ff0080 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite, textShine 2s ease-in-out infinite;
  position: relative;
}

.hero__name::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: sweepShine 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes textShine {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

@keyframes sweepShine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.hero__greeting {
  display: block;
  font-size: var(--font-size-xl);
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: var(--space-xs);
}

.hero__name {
  display: block;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.9);
  height: 3rem;
  display: flex;
  align-items: center;
}

.hero__typing {
  border-right: 3px solid var(--color-accent);
  padding-right: 4px;
}

.hero__cursor {
  animation: blink 1s infinite;
  color: var(--color-accent);
}

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

.hero__description {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
  40% { transform: rotate(45deg) translateY(-10px); }
  60% { transform: rotate(45deg) translateY(-5px); }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: white;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

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

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

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
  background: linear-gradient(135deg, #00d4ff 0%, #ff0080 100%);
}

.btn--secondary {
  background: transparent;
  color: #00d4ff;
  border: 2px solid rgba(0, 212, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.btn--secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 128, 0.1));
  transition: width 0.3s ease;
  z-index: -1;
}

.btn--secondary:hover::before {
  width: 100%;
}

.btn--secondary:hover {
  color: white;
  border-color: #ff0080;
  box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
}

.btn--small {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--font-size-sm);
}

.btn--full {
  width: 100%;
}

/* Section Styles */
section {
  padding: var(--space-3xl) 0;
}

.section-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -var(--space-sm);
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

/* About Section */
.about {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
  position: relative;
  overflow: hidden;
}

.about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.about__image:hover {
  transform: translateY(-10px);
}

.about__image-inner {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}

.profile-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(99, 102, 241, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__image:hover .about__image-overlay {
  opacity: 1;
}

.about__text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-gray-900);
  position: relative;
  display: inline-block;
}

.about__text h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
}

.about__description {
  margin-bottom: 2rem;
  color: var(--color-gray-600);
  line-height: 1.8;
  font-size: 1.1rem;
}

.about__cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  align-items: flex-start;
}

.cv-note {
  font-size: 0.8rem;
  color: var(--color-gray-600);
  margin: 0.25rem 0 0 0.5rem;
  font-style: italic;
}

/* Skills Section */
.skills {
  padding: 6rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.skills::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6.5 60.5c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-21c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zM56 39c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4z' fill='%233b82f6' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.skills .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  text-align: center;
  color: var(--color-gray-600);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.skills-category {
  margin-bottom: 3rem;
}

.skills-category:last-child {
  margin-bottom: 0;
}

.skills-category__title {
  font-size: 1.5rem;
  color: var(--color-gray-800);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.skills-category__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
}

.skills__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .skills__grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

.skill-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  aspect-ratio: 1/1;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.skill-card::after {
  content: attr(title);
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-gray-600);
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  color: white;
}

.skill-card:hover::before {
  opacity: 1;
}

.skill-card:hover::after {
  bottom: 10px;
  opacity: 1;
  color: white;
}

.skill-card i {
  font-size: 3rem;
  transition: all 0.3s ease;
  color: var(--color-gray-700);
}

.skill-card:hover i {
  color: white;
  transform: scale(1.2);
}

/* Specific icon adjustments */
.devicon-express-original {
  font-size: 2.5rem !important;
}

.devicon-django-plain {
  font-size: 2.8rem !important;
}

.devicon-tensorflow-plain {
  font-size: 2.7rem !important;
}

.devicon-solidity-plain {
  font-size: 2.6rem !important;
}

.devicon-nextjs-plain {
  font-size: 2.5rem !important;
}
.education {
  padding: 100px 0;
  background-color: var(--bg-color-2);
  position: relative;
  overflow: hidden;
}

.education::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/education-bg.svg') no-repeat center/cover;
  opacity: 0.03;
  z-index: 0;
}

.education .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.education h2 {
  text-align: center;
  margin-bottom: 70px;
  font-size: 2.8rem;
  color: var(--text-color);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.education h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color), transparent);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 10px;
  z-index: 0;
}

.timeline-item {
  padding: 15px 50px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
  margin: 30px 0;
  z-index: 1;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 70px;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 70px;
  text-align: left;
}

.timeline-content {
  padding: 35px;
  background: var(--bg-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.timeline-content:hover::before {
  width: 6px;
}

.timeline-date {
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 0.9rem;
  margin: 0 0 0.5rem 0;
  color: var(--color-gray-900);
  font-size: 1.25rem;
}

.timeline-text {
  color: var(--color-gray-600);
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
}

.timeline-desc {
  color: var(--color-gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Interests Section */
.interests {
  padding: 6rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.interests .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.interests h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
  color: var(--color-gray-900);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.interests h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
}

.interests__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.interest-card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.interest-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.interest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  color: white;
}

.interest-card:hover::before {
  opacity: 1;
}

.interest-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.interest-card:hover .interest-icon {
  background: white;
  color: var(--color-primary);
  transform: rotateY(180deg);
}

.interest-card h3 {
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
  color: var(--color-gray-900);
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.interest-card:hover h3 {
  color: white;
}

.interest-card p {
  color: var(--color-gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  transition: all 0.3s ease;
}

.interest-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .about__image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about__text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about__cta {
    justify-content: center;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 0;
    text-align: left;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
    padding-left: 70px;
  }
  
  .timeline-item::after {
    left: 20px !important;
    right: auto;
  }
  
  .timeline-item:nth-child(odd)::after {
    left: 20px;
  }
}

@media (max-width: 768px) {
  .skills__grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  
  .interests__grid {
    grid-template-columns: 1fr;
  }
  
  .interest-card {
    padding: 1.5rem 1rem;
  }
  
  .education h2,
  .interests h2 {
    font-size: 2rem;
  }
}

/* Animation for section reveal */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.section:nth-child(1) { animation-delay: 0.1s; }
.section:nth-child(2) { animation-delay: 0.3s; }
.section:nth-child(3) { animation-delay: 0.5s; }
.section:nth-child(4) { animation-delay: 0.7s; }

.skills__category-title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  margin-bottom: var(--space-xl);
  color: var(--text-primary);
}

.skills__progress-bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.skill-bar {
  display: grid;
  grid-template-columns: 1fr 3fr auto;
  gap: var(--space-md);
  align-items: center;
}

.skill-bar__label {
  font-weight: 600;
  color: var(--text-primary);
}

.skill-bar__track {
  height: 8px;
  background: var(--border-color);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.skill-bar__fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.5s ease-out;
  position: relative;
}

.skill-bar__fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3));
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-20px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(20px); opacity: 0; }
}

.skill-bar__percentage {
  font-weight: 600;
  color: var(--color-primary);
  min-width: 40px;
}

.skills__bubbles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  justify-items: center;
}

.skill-bubble {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.skill-bubble:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.skill-bubble__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  z-index: 1;
}

.skill-bubble__icon {
  font-size: var(--font-size-2xl);
}

.skill-bubble__text {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.skill-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.skill-bubble:hover::before {
  opacity: 0.1;
}

/* Projects Section */
.projects__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.project-card {
  height: 400px;
  perspective: 1000px;
  cursor: pointer;
}

.project-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.project-card:hover .project-card__inner {
  transform: rotateY(180deg);
}

.project-card__front,
.project-card__back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.project-card__front {
  background: var(--bg-primary);
}

.project-card__back {
  background: var(--gradient-card);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.project-card__image {
  height: 60%;
  overflow: hidden;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-card__image img {
  transform: scale(1.1);
}

.project-card__content {
  padding: var(--space-lg);
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-card__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.project-card__description {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.project-card__tech {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.tech-tag {
  background: var(--gradient-primary);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 500;
}

.project-card__details {
  text-align: left;
}

.project-card__full-description {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.project-card__features {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.project-card__features li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-xs);
  color: var(--text-secondary);
}

.project-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
}

.project-card__actions {
  margin-top: auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.project-card__hackathon {
  font-size: 0.85rem;
  color: #6b7280;
  font-style: italic;
  text-align: center;
  padding: 0.5rem;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  width: 100%;
}

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

.contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-3xl);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

.contact__info-item:hover {
  transform: translateY(-4px);
}

.contact__icon {
  font-size: var(--font-size-2xl);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
}

.contact__info-item h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.contact__info-item p {
  color: var(--text-secondary);
}

/* Form Styles */
.contact__form {
  background: var(--bg-primary);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-group {
  position: relative;
  margin-bottom: var(--space-xl);
}

.form-input {
  width: 100%;
  padding: var(--space-md) var(--space-sm);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  background: transparent;
  color: var(--text-primary);
  transition: all var(--transition-base);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

.form-label {
  position: absolute;
  left: var(--space-sm);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-primary);
  padding: 0 var(--space-xs);
  color: var(--text-secondary);
  pointer-events: none;
  transition: all var(--transition-base);
}

.form-textarea + .form-label {
  top: var(--space-md);
  transform: none;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  top: 0;
  transform: translateY(-50%);
  font-size: var(--font-size-sm);
  color: var(--color-primary);
}

.form-error {
  color: var(--color-error);
  font-size: var(--font-size-sm);
  margin-top: var(--space-xs);
  opacity: 0;
  transform: translateY(-10px);
  transition: all var(--transition-base);
}

.form-error.show {
  opacity: 1;
  transform: translateY(0);
}

.form-success {
  background: var(--color-success);
  color: white;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  margin-top: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.form-success.show {
  opacity: 1;
  transform: translateY(0);
}

.btn__loading {
  display: none;
}

.btn.loading .btn__text {
  display: none;
}

.btn.loading .btn__loading {
  display: inline;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  animation: lightboxAppear 0.3s ease-out;
}

@keyframes lightboxAppear {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  font-size: var(--font-size-2xl);
  color: var(--text-primary);
  cursor: pointer;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
  transition: background var(--transition-fast);
}

.lightbox__close:hover {
  background: rgba(0, 0, 0, 0.2);
}

.lightbox__body {
  padding: var(--space-xl);
}

/* Footer */
.footer {
  background: var(--color-gray-900);
  color: white;
  text-align: center;
  padding: var(--space-xl) 0;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__social-link:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }
  
  .hero__avatar {
    width: 250px;
    height: 250px;
  }
  
  .skills__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .contact__content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .nav__list {
    display: none;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .hero__title {
    font-size: var(--font-size-4xl);
  }
  
  .hero__subtitle {
    font-size: var(--font-size-xl);
  }
  
  .hero__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .skills__bubbles {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .projects__grid {
    grid-template-columns: 1fr;
  }
  
  .footer__container {
    flex-direction: column;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  :root {
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
    --space-3xl: 3rem;
  }
  
  .hero__avatar {
    width: 200px;
    height: 200px;
  }
  
  .hero__title {
    font-size: var(--font-size-3xl);
  }
  
  .section-title {
    font-size: var(--font-size-3xl);
  }
  
  .skills__bubbles {
    grid-template-columns: 1fr;
  }
  
  .project-card {
    height: 350px;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 1001;
  transition: width 0.1s ease;
}