/* ═══════════════════════════════════════════════════════════════════════════
   MILAD - SUPREME 3D LUXURY PORTFOLIO STYLESHEET
   Theme: Cosmic Dark / Electric Violet & Neon Cyan / Luxury Glassmorphism
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --bg-dark: #07070a;
  --bg-surface: #0e0e15;
  --bg-card: rgba(18, 18, 28, 0.65);
  
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-neon: rgba(168, 85, 247, 0.4);
  
  --purple: #a855f7;
  --indigo: #6366f1;
  --cyan: #06b6d4;
  --pink: #ec4899;
  --green: #10b981;

  --gradient-accent: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #06b6d4 100%);
  --gradient-pill: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
  
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --font-heading: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-code: 'Fira Code', monospace;

  --radius-pill: 9999px;
  --radius-card: 24px;
}

/* Color Theme Presets */
body[data-theme-preset="cyan"] {
  --purple: #06b6d4;
  --indigo: #0284c7;
  --cyan: #38bdf8;
  --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #0284c7 50%, #38bdf8 100%);
  --gradient-pill: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
}

body[data-theme-preset="emerald"] {
  --purple: #10b981;
  --indigo: #059669;
  --cyan: #34d399;
  --gradient-accent: linear-gradient(135deg, #10b981 0%, #059669 50%, #34d399 100%);
  --gradient-pill: linear-gradient(135deg, #059669 0%, #34d399 100%);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); box-shadow: 0 0 15px var(--purple); }

::selection {
  background: var(--purple);
  color: #fff;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

/* AMBIENT PARTICLES CANVAS */
#ambient-canvas {
  display: none !important;
}

/* TOAST NOTIFICATION */
.toast-box {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(18, 18, 28, 0.95);
  
  border: 1px solid var(--border-neon);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(168, 85, 247, 0.3);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  z-index: 10002;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-primary);
}

.toast-box.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

/* TOP SCROLL PROGRESS BAR */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-accent);
  z-index: 10001;
  box-shadow: 0 0 12px var(--cyan);
  transition: width 0.15s ease-out;
}

/* PAGE LOADER */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-orb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-accent);
  box-shadow: 0 0 35px var(--purple);
  animation: pulseGlow 1.5s infinite alternate ease-in-out;
}

.loader-text {
  font-family: var(--font-heading);
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

@keyframes pulseGlow {
  0% { transform: scale(0.85); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 55px var(--cyan); }
}

/* LAYOUT & UTILITIES */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
  isolation: isolate;
}

.section-sm {
  padding: 50px 0;
  position: relative;
  z-index: 2;
}

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

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 6px 18px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
}

/* NAVBAR & TICKER */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(7, 7, 10, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border-glass);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-primary);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.nav-logo:hover .logo-box {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
}

.nav-status-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
}

.status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.time-divider { color: var(--text-muted); }
#local-time { color: var(--text-secondary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-glass);
}

.theme-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dot-violet { background: #a855f7; }
.dot-cyan { background: #06b6d4; }
.dot-emerald { background: #10b981; }

.theme-dot.active, .theme-dot:hover {
  transform: scale(1.3);
  box-shadow: 0 0 10px currentColor;
}

.sound-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.sound-toggle:hover {
  background: rgba(168, 85, 247, 0.2);
  border-color: var(--purple);
  transform: scale(1.08);
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 12px;
  margin-right: 12px;
}

.nav-socials a {
  color: var(--text-secondary);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.nav-socials a svg {
  width: 20px;
  height: 20px;
}

.nav-socials a:hover {
  color: var(--text-primary);
  transform: translateY(-2px) scale(1.1);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: var(--radius-pill);
}

.nav-hire-btn {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.nav-hire-btn:hover {
  background: var(--gradient-pill);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
  transform: translateY(-2px);
}

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--text-primary); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(7, 7, 10, 0.96);
  
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.mobile-link { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; }
.mobile-close { position: absolute; top: 24px; right: 32px; font-size: 2.5rem; color: var(--text-secondary); }

/* HERO SECTION */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 24px 70px;
  overflow: hidden;
}

/* MINIMAL BREATHING GLOBE */
.hero-globe-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-globe {
  width: min(560px, 85vw);
  height: min(560px, 85vw);
  opacity: 0.85;
  pointer-events: none;
}

.globe-breathe {
  animation: globeBreathe 5s ease-in-out infinite alternate;
  transform-origin: 250px 250px;
}

@keyframes globeBreathe {
  0%   { transform: scale(0.96); opacity: 0.78; }
  100% { transform: scale(1.04); opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(7, 7, 10, 0.0) 0%, rgba(7, 7, 10, 0.35) 65%, #07070a 100%);
  pointer-events: none;
}

.hero-socials { display: flex; justify-content: center; gap: 24px; margin-top: 32px; }
.hero-socials a { color: var(--text-secondary); transition: all 0.3s ease; }
.hero-socials a svg { width: 28px; height: 28px; }
.hero-socials a:hover { color: var(--text-primary); transform: translateY(-3px) scale(1.1); filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5)); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.hero-content > * {
  pointer-events: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.3);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--cyan);
  margin-bottom: 28px;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.title-top { display: block; color: var(--text-primary); }

.highlight-name {
  background: linear-gradient(135deg, #c084fc 0%, #818cf8 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(192, 132, 252, 0.4);
}

.title-bottom { display: block; color: #ffffff; }

.hero-subtitle {
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  color: #cbd5e1;
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 28px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-dark-pill {
  background: rgba(18, 18, 28, 0.75);
  
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn-dark-pill:hover {
  background: rgba(30, 30, 45, 0.9);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px) scale(1.03);
}

.btn-gradient-pill {
  background: var(--gradient-pill);
  color: #ffffff;
  box-shadow: 0 0 35px rgba(139, 92, 246, 0.55);
}

.btn-gradient-pill:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 50px rgba(6, 182, 212, 0.75);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.stat-item { display: flex; flex-direction: column; align-items: center; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.stat-plus { font-size: 1.5rem; color: var(--cyan); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }
.stat-divider { width: 1px; height: 36px; background: rgba(255, 255, 255, 0.12); }

.scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--cyan);
  border-radius: 2px;
  animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* LIGHTHOUSE PERFORMANCE BAR */
.lh-badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lh-card {
  background: var(--bg-card);
  
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.lh-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.25);
}

.lh-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid var(--green);
  box-shadow: 0 0 15px var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 12px;
}

.lh-card strong { font-size: 1rem; font-family: var(--font-heading); margin-bottom: 4px; }
.lh-card span { font-size: 0.8rem; color: var(--text-muted); }

/* GITHUB PRODUCTION STATS BAR */
.github-bar {
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

.github-card {
  background: var(--bg-card);
  
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 32px 40px;
}

.gh-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--cyan);
}

.gh-header strong { display: block; font-family: var(--font-heading); font-size: 1.2rem; color: var(--text-primary); }
.gh-header span { font-size: 0.85rem; color: var(--text-muted); }

.gh-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.gh-stat { display: flex; flex-direction: column; gap: 4px; }
.gh-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--purple); }
.gh-stat span:last-child { font-size: 0.85rem; color: var(--text-muted); }

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-card-3d {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-avatar-ring {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  padding: 6px;
  background: var(--gradient-accent);
  box-shadow: 0 0 50px rgba(168, 85, 247, 0.4);
}

.about-avatar { width: 100%; height: 100%; border-radius: 50%; background: var(--bg-surface); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.about-avatar svg { width: 100%; height: 100%; }
.about-profile-img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; border-radius: 50%; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.about-card-3d:hover .about-profile-img { transform: scale(1.08); }

.about-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(18, 18, 28, 0.75);
  
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.float-1 { top: 10%; left: -10%; }
.float-2 { bottom: 10%; right: -10%; }

.about-heading { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; margin-bottom: 20px; }
.about-desc { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; margin-bottom: 20px; }
.about-highlights { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }

/* ACHIEVEMENTS */
.about-achievements {
  margin: 28px 0 8px;
  padding: 24px 28px;
  background: rgba(168, 85, 247, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-left: 3px solid var(--purple);
  border-radius: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-achievements:hover {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.1);
}

.achievements-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.achievements-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.achievements-list li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 4px;
}

.achievements-list li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 24px;
  background: var(--bg-card);
  
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.highlight-item:hover { transform: translateX(8px); border-color: var(--border-neon); }
.hi-icon { font-size: 1.6rem; }
.highlight-item strong { display: block; font-size: 0.95rem; }
.highlight-item span { font-size: 0.85rem; color: var(--text-muted); }

/* SERVICES SECTION */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--bg-card);
  
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-neon);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(168, 85, 247, 0.2);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.service-card h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin-bottom: 24px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-list li { font-size: 0.88rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.service-list li::before { content: '✦'; color: var(--cyan); font-size: 0.75rem; }

/* IDE CODE WINDOW */
.ide-window {
  background: #0d0e17;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  max-width: 900px;
  margin: 0 auto;
}

.ide-header {
  background: #141522;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ide-dots { display: flex; gap: 8px; }
.ide-dots span { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.ide-tabs { display: flex; gap: 8px; }
.ide-tab {
  padding: 6px 14px;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-code);
  font-size: 0.82rem;
  transition: all 0.3s ease;
}

.ide-tab.active {
  background: rgba(139, 92, 246, 0.2);
  color: var(--purple);
  border: 1px solid rgba(139, 92, 246, 0.4);
}

.ide-lang { font-family: var(--font-code); font-size: 0.8rem; color: var(--text-muted); }
.ide-body { padding: 24px; overflow-x: auto; font-family: var(--font-code); font-size: 0.9rem; line-height: 1.7; }

.c-kw { color: #c084fc; font-weight: 600; }
.c-str { color: #34d399; }
.c-cls { color: #38bdf8; }
.c-fn { color: #f472b6; }
.c-type { color: #fbbf24; }
.c-num { color: #f87171; }

/* SKILL FILTERS & TECH ICONS */
.skill-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.skill-filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.skill-filter-btn.active, .skill-filter-btn:hover {
  background: var(--gradient-pill);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.35);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.skill-card {
  position: relative;
  background: rgba(18, 18, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: inset 0 2px 20px rgba(255, 255, 255, 0.02);
  transform: translateZ(0);
}

.skill-card.hidden { display: none; }

.skill-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-neon);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(168, 85, 247, 0.25);
}

.doc-link-badge {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}

.skill-card:hover .doc-link-badge {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 0 12px var(--cyan);
}

.skill-icon-glow {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--glow, var(--purple));
  margin-bottom: 20px;
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.15);
}

.skill-card h4 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.skill-card p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.5; }

.skill-bar { width: 100%; height: 6px; background: rgba(255, 255, 255, 0.08); border-radius: var(--radius-pill); overflow: hidden; margin-top: auto; }
.skill-fill { height: 100%; width: 0; background: var(--gradient-accent); border-radius: var(--radius-pill); transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1); }

/* EXPERIENCE TIMELINE */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 32px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -41px;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--purple);
  border: 4px solid var(--bg-dark);
  box-shadow: 0 0 15px var(--purple);
}

.timeline-content {
  background: var(--bg-card);
  
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.timeline-content:hover { transform: translateX(8px); border-color: var(--border-neon); }
.timeline-date { font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; color: var(--cyan); }
.timeline-content h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin: 6px 0 2px; }
.timeline-company { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; display: block; margin-bottom: 14px; }
.timeline-content p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }

.timeline-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.timeline-tags span { padding: 4px 12px; border-radius: var(--radius-pill); background: rgba(255, 255, 255, 0.05); font-size: 0.78rem; color: var(--text-muted); }

/* PROJECTS SECTION */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.project-card {
  background: rgba(18, 18, 28, 0.45);
  
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: inset 0 2px 20px rgba(255, 255, 255, 0.02);
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-neon);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(6, 182, 212, 0.25);
}

.project-image { position: relative; width: 100%; height: 220px; overflow: hidden; }
.project-video { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.85); transition: filter 0.4s ease; }
.project-card:hover .project-video { filter: brightness(1); }
.project-gradient-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }

.grad-1 { background: linear-gradient(135deg, #7c3aed, #2563eb); }
.grad-2 { background: linear-gradient(135deg, #0284c7, #0d9488); }
.grad-3 { background: linear-gradient(135deg, #d97706, #dc2626); }

.visual-3d-box { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; }

.cube-3d { width: 50px; height: 50px; position: relative; transform-style: preserve-3d; animation: rotateCube 10s infinite linear; }
.face { position: absolute; width: 50px; height: 50px; background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.5); }
.f  { transform: rotateY(0deg) translateZ(25px); }
.b  { transform: rotateY(180deg) translateZ(25px); }
.l  { transform: rotateY(-90deg) translateZ(25px); }
.r  { transform: rotateY(90deg) translateZ(25px); }
.t  { transform: rotateX(90deg) translateZ(25px); }
.bt { transform: rotateX(-90deg) translateZ(25px); }

@keyframes rotateCube { 0% { transform: rotateX(0) rotateY(0); } 100% { transform: rotateX(360deg) rotateY(360deg); } }

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 10, 0.75);
  
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.proj-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 25px var(--cyan);
}

.proj-btn svg { width: 22px; height: 22px; }

.project-info { padding: 28px; display: flex; flex-direction: column; flex-grow: 1; }
.project-num { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; color: var(--cyan); margin-bottom: 8px; }
.project-info h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.project-info p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.project-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.project-tags span { padding: 4px 12px; border-radius: var(--radius-pill); background: rgba(255, 255, 255, 0.06); border: 1px solid var(--border-glass); font-size: 0.78rem; color: var(--text-secondary); white-space: nowrap; }

/* REVIEWS MARQUEE */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

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

.review-card {
  width: 380px;
  background: var(--bg-card);
  
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.review-card p { color: var(--text-secondary); font-size: 0.95rem; font-style: italic; line-height: 1.6; }
.review-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }

.r-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

.review-author strong { display: block; font-size: 0.95rem; }
.review-author span { font-size: 0.8rem; color: var(--text-muted); }

/* PROJECT COST CALCULATOR */
.calc-box {
  background: var(--bg-card);
  
  border: 1px solid var(--border-glass);
  border-radius: 32px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.calc-group { margin-bottom: 28px; }
.calc-group label { display: block; font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 12px; color: var(--cyan); }
.calc-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.calc-btn {
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.calc-btn.active {
  background: var(--gradient-pill);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.calc-checkboxes { display: flex; flex-direction: column; gap: 12px; }
.calc-check { display: flex; align-items: center; gap: 12px; cursor: pointer; font-size: 0.92rem; color: var(--text-secondary); }
.calc-check input { accent-color: var(--purple); width: 18px; height: 18px; }

.calc-result {
  background: rgba(7, 7, 10, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.res-tag { font-family: var(--font-heading); font-size: 0.75rem; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 8px; }
.res-price { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--cyan); text-shadow: 0 0 30px var(--cyan); margin-bottom: 8px; }
.res-time { font-size: 0.88rem; color: var(--text-muted); }
.mt-24 { margin-top: 24px; }

/* LIVE DEMO MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(7, 7, 10, 0.9);
  
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-card {
  background: #0e0e15;
  border: 1px solid var(--border-neon);
  border-radius: 24px;
  width: 100%;
  max-width: 900px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.2rem;
  color: var(--text-muted);
  z-index: 10;
}

.modal-header { padding: 24px 28px 16px; border-bottom: 1px solid var(--border-glass); }
.modal-header h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; margin-bottom: 4px; }
.modal-tag { font-size: 0.8rem; color: var(--cyan); font-weight: 600; }

.modal-body { padding: 24px 28px; }
.modal-iframe-box { width: 100%; height: 420px; border-radius: 16px; overflow: hidden; margin-bottom: 16px; }
.modal-iframe-box iframe { width: 100%; height: 100%; }

/* FAQ SECTION */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--bg-card);  border: 1px solid var(--border-glass); border-radius: 18px; overflow: hidden; transition: border-color 0.3s ease; }
.faq-item.active { border-color: var(--border-neon); }

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-icon { font-size: 1.4rem; color: var(--cyan); transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease; padding: 0 28px; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 28px 22px; }
.faq-answer p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* CONTACT SECTION & COPY CLICKABLE */
.contact-card-glass {
  background: var(--bg-card);
  
  border: 1px solid var(--border-glass);
  border-radius: 32px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}

.contact-info h3 { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.contact-info p { color: var(--text-secondary); margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }

.copy-clickable {
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.copy-clickable:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-neon);
  transform: translateX(6px);
}

.cd-item { display: flex; align-items: center; gap: 16px; }
.cd-text-group { display: flex; flex-direction: column; gap: 4px; }
.cd-value { color: var(--text-secondary); font-size: 0.95rem; }
.click-hint { font-size: 0.8rem; color: var(--cyan); opacity: 0.8; font-weight: normal; margin-left: 6px; }
.cd-icon { font-size: 1.5rem; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.contact-form input, .contact-form textarea {
  background: rgba(7, 7, 10, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 16px 20px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.25);
}

.w-full { width: 100%; }

/* FOOTER */
footer { padding: 40px 0; border-top: 1px solid var(--border-glass); position: relative; z-index: 2; }
.footer-content { display: flex; align-items: center; justify-content: space-between; }
.footer-left { display: flex; align-items: center; gap: 12px; font-family: var(--font-heading); font-weight: 700; }
.footer-links { display: flex; gap: 20px; font-size: 0.9rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--text-primary); }

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(18, 18, 28, 0.85);
  border: 1px solid var(--border-glass);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--purple); transform: translateY(-4px); }
.back-to-top svg { width: 20px; height: 20px; }

/* INSTANT ZERO-LAG REVEALS */
.reveal,
.reveal-hero {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

/* ─── TABLET (≤1024px) ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-status-ticker { display: none; }
  .lh-badge-grid, .gh-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: flex; justify-content: center; }
  .contact-card-glass { grid-template-columns: 1fr; padding: 36px 28px; gap: 36px; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── MOBILE (≤768px) ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Navbar */
  #navbar { padding: 0 16px; height: 68px; }
  .nav-links, .nav-socials, .nav-hire-btn, .theme-switcher { display: none; }
  .hamburger { display: flex; }
  .logo-text { font-size: 0.95rem; }

  /* Hero */
  .hero { padding: 90px 20px 50px; }
  .hero-title .title-top { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-title .title-bottom { font-size: clamp(1rem, 4vw, 1.4rem); }
  .hero-subtitle { font-size: 0.9rem; padding: 0 8px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions a { width: 220px; justify-content: center; }
  .hero-socials { gap: 20px; margin-top: 24px; }
  .hero-socials a svg { width: 24px; height: 24px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .stat-number { font-size: 2.4rem; }

  /* GitHub stats */
  .gh-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .github-card { padding: 24px 20px; }
  .github-bar { margin-top: -30px; }

  /* Projects */
  .projects-grid { grid-template-columns: 1fr; }
  .project-card { border-radius: 20px; }
  .project-image { height: 200px; }

  /* Experience */
  .timeline::before { left: 16px; }
  .timeline-item { flex-direction: column; padding-left: 44px; }
  .timeline-dot { left: 8px; top: 24px; }
  .timeline-content { width: 100%; }

  /* Skills */
  .skills-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .skill-card { padding: 22px 16px; }
  .skill-filter-bar { flex-wrap: wrap; gap: 8px; justify-content: center; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-card-3d { transform: none !important; }
  .about-avatar-ring { width: 200px; height: 200px; }
  .about-content { text-align: center; }
  .about-highlights { text-align: left; }
  .contact-card-glass { padding: 28px 20px; border-radius: 20px; gap: 28px; }

  /* Code showcase */
  .ide-window { border-radius: 16px; }
  .ide-tabs { overflow-x: auto; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-info h3 { font-size: 1.6rem; }

  /* FAQ */
  .faq-question { font-size: 0.95rem; padding: 18px 20px; }
  .faq-answer { padding: 0 20px; }
  .faq-item.active .faq-answer { padding: 0 20px 18px; }

  /* Footer */
  .footer-content { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  /* Section titles */
  .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .section { padding: 60px 0; }
}

/* ─── SMALL PHONES (≤480px) ────────────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title .title-top { font-size: 1.7rem; }
  .hero-title .title-bottom { font-size: 1rem; }
  .skills-grid { grid-template-columns: 1fr; }
  .gh-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .btn { padding: 12px 22px; font-size: 0.85rem; }
  .section-title { font-size: 1.7rem; }
  .about-avatar-ring { width: 170px; height: 170px; }
  .contact-card-glass { padding: 20px 16px; }
  .project-image { height: 180px; }
  .hero-socials a svg { width: 22px; height: 22px; }
}
