@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens & Variables --- */
:root {
  --bg-primary: #07080c;
  --bg-secondary: #0d0e18;
  --bg-tertiary: #141524;
  
  --neon-pink: #ff007f;
  --neon-pink-bright: #ff3b94;
  --neon-pink-glow: rgba(255, 0, 128, 0.55);
  
  --neon-cyan: #00f5d4;
  --neon-cyan-bright: #00f0ff;
  --neon-cyan-glow: rgba(0, 245, 212, 0.55);
  
  --accent-color: #ff007f;
  --accent-hover: #ff3b94;
  --accent-gradient: linear-gradient(135deg, #ff007f 0%, #ff00ba 50%, #00f5d4 100%);
  --accent-glow: rgba(255, 0, 128, 0.45);
  
  --text-primary: #ffffff;
  --text-secondary: #a8a8be;
  --text-muted: #6f7088;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-sm: 10px;
  --border-radius-md: 18px;
  --border-radius-lg: 28px;
}

/* --- Reset & Base Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

/* --- Glowing Laser Scroll Progress Bar --- */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #ff007f 0%, #ff5500 35%, #ffaa00 70%, #00f5d4 100%);
  box-shadow: 0 0 10px #ff5500, 0 0 20px #ffaa00, 0 0 30px #ff007f;
  z-index: 100000;
  pointer-events: none;
  transition: width 0.08s ease-out;
}

/* --- High Performance GPU & Layout Optimizations --- */
.services, .about, .skills, .projects, .contact, .music-grid, .faq-box, .concept-card {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

img {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

/* ============================================================
   NEON BUTTONS (Electric Gradient Glow & Glowing Neon Outlines)
   ============================================================ */
button, .btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, #ff007f 0%, #ff00ba 50%, #ff3b94 100%);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-text-stroke: 0px transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 0 20px rgba(255, 0, 128, 0.6),
    0 0 40px rgba(255, 0, 128, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.4);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 32px rgba(255, 0, 128, 0.85),
    0 0 65px rgba(255, 0, 128, 0.5),
    inset 0 1px 3px rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #ff1493 0%, #ff007f 100%);
}

.btn-secondary {
  background: rgba(13, 14, 24, 0.85);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-text-stroke: 0px transparent !important;
  border: 1.8px solid #00f5d4;
  box-shadow:
    0 0 18px rgba(0, 245, 212, 0.4),
    inset 0 0 12px rgba(0, 245, 212, 0.15),
    0 10px 25px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-shadow: 0 0 6px rgba(0, 245, 212, 0.4);
}

.btn-secondary:hover {
  border-color: #00f5d4;
  background: rgba(0, 245, 212, 0.16);
  color: #00f5d4 !important;
  -webkit-text-fill-color: #00f5d4 !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 28px rgba(0, 245, 212, 0.75),
    0 0 50px rgba(0, 245, 212, 0.4),
    inset 0 0 15px rgba(0, 245, 212, 0.25);
}

/* --- Floating Background Elements (Parallax) --- */
.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  transition: transform 0.1s ease-out;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-color);
  top: 10%;
  right: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: #0077ff;
  bottom: 10%;
  left: -150px;
  opacity: 0.08;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: #8000ff;
  top: 50%;
  right: 30%;
  opacity: 0.05;
}

/* --- Navigation Header --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(8, 8, 10, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 20px 0;
}

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

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: 0 0 10px rgba(255, 0, 128, 0.5), 0 0 20px rgba(255, 0, 128, 0.25);
  filter: none !important;
  transition: var(--transition-smooth);
}

.logo span {
  color: #00f5d4 !important;
  -webkit-text-fill-color: #00f5d4 !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: 0 0 10px rgba(0, 245, 212, 0.6), 0 0 20px rgba(0, 245, 212, 0.3);
  filter: none !important;
}

.logo:hover {
  text-shadow: 0 0 14px rgba(255, 0, 128, 0.8), 0 0 28px rgba(255, 0, 128, 0.5);
}

.logo:hover span {
  text-shadow: 0 0 14px rgba(0, 245, 212, 0.9), 0 0 28px rgba(0, 245, 212, 0.6);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

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

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

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

.nav-btn {
  padding: 10px 24px;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  z-index: 101;
  padding: 8px;
  width: 42px;
  height: 42px;
  transition: var(--transition-smooth);
}

.nav-toggle:hover {
  background: rgba(255, 106, 0, 0.15);
  border-color: var(--accent-color);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
  display: block;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--accent-color);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--accent-color);
}

/* --- Hero Section --- */
section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  padding-top: 140px;
  padding-bottom: 60px;
  overflow: hidden;
}

/* Subtle, Less Visible Cybernetic Grid Lines in Hero Background */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(0, 245, 212, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 0, 128, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, black 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, black 25%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

/* ============================================================
   WHITE SHINING NEON BORDER TEXT (BRIGHT & HIGHLY READABLE, 100% TRANSPARENT INSIDE)
   ============================================================ */
.neon-title,
.neon-text,
.neon-outline-text,
.hero-title,
.section-title,
.blog-header h1,
.project-hero h1,
.program-hero h1,
.modal-title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: 2.2px #ffffff;
  letter-spacing: 1.5px;
  display: inline-block;
  position: relative;
  text-shadow: none !important;
  /* Brilliant white shining core border + vibrant magenta neon spark aura */
  filter: drop-shadow(0 0 2px #ffffff) drop-shadow(0 0 5px #ff007f) drop-shadow(0 0 10px rgba(255, 0, 128, 0.8));
  animation: neon-outline-spark 3s ease-in-out infinite alternate;
}

.hero-title {
  font-size: 4.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  -webkit-text-stroke: 2.6px #ffffff;
}

.section-title {
  font-size: 2.6rem;
  -webkit-text-stroke: 2px #ffffff;
  margin-top: 4px;
}

.modal-title {
  font-size: 2rem;
  -webkit-text-stroke: 1.8px #ffffff;
}

.blog-header h1,
.project-hero h1,
.program-hero h1 {
  font-size: 2.5rem;
  -webkit-text-stroke: 2px #ffffff;
  margin-bottom: 12px;
}

@keyframes neon-outline-spark {
  0% {
    filter: drop-shadow(0 0 2px #ffffff) drop-shadow(0 0 5px #ff007f) drop-shadow(0 0 10px rgba(255, 0, 128, 0.8));
  }
  50% {
    filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 8px #ff3b94) drop-shadow(0 0 14px #ff007f);
  }
  100% {
    filter: drop-shadow(0 0 2px #ffffff) drop-shadow(0 0 5px #ff007f) drop-shadow(0 0 10px rgba(255, 0, 128, 0.8));
  }
}

.hero-role-wrapper {
  min-height: 50px;
  margin-bottom: 24px;
}

.hero-role {
  font-size: 2.2rem;
  font-weight: 800;
  color: #00f5d4;
  text-shadow: 0 0 10px rgba(0, 245, 212, 0.7), 0 0 25px rgba(0, 245, 212, 0.4);
  display: inline-block;
  border-right: 3px solid #00f5d4;
  padding-right: 4px;
  white-space: nowrap;
  animation: blink 0.75s step-end infinite;
}

.hero-socials {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(14, 16, 26, 0.8);
  border: 1.5px solid rgba(255, 0, 128, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #ff3b94;
  box-shadow: 0 0 14px rgba(255, 0, 128, 0.25), inset 0 0 8px rgba(255, 0, 128, 0.1);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: rgba(0, 245, 212, 0.15);
  color: #00f5d4;
  border-color: #00f5d4;
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 0 22px rgba(0, 245, 212, 0.7), inset 0 0 10px rgba(0, 245, 212, 0.3);
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

/* Hero Stats Container with Bright Neon Border (Zero Spread, Full Transparent) */
.hero-stats {
  display: flex;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 2px solid #ff007f;
  border-radius: var(--border-radius-md);
  padding: 26px 28px;
  gap: 36px;
  max-width: 540px;
  box-shadow: 0 0 3px #ffffff, 0 0 8px rgba(255, 0, 128, 0.75), inset 0 0 4px rgba(255, 0, 128, 0.4);
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.stat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding-right: 20px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #00f5d4;
  text-shadow: 0 0 10px rgba(0, 245, 212, 0.7), 0 0 25px rgba(0, 245, 212, 0.4);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-plus {
  color: #ff007f;
  font-size: 1.4rem;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(255, 0, 128, 0.7), 0 0 22px rgba(255, 0, 128, 0.4);
  margin-left: 2px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Hero Right: 3D Stage & Standout Image / Neon Hologram Card */
.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  perspective: 1200px;
}

.hero-3d-stage {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.1, 1, 0.1, 1);
}

/* ============================================================
   ULTRA-PREMIUM NEON CYBER PROFILE CARD (Full Transparent & Glowing)
   ============================================================ */
.neon-glass-card {
  position: relative;
  z-index: 5;
  width: 330px;
  max-width: 92vw;
  padding: 28px 24px 24px;
  border-radius: 30px;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 2px solid transparent;
  
  /* Precision Neon Rim Border with dual-tone gradient outline */
  background-image: linear-gradient(transparent, transparent), linear-gradient(135deg, #ff007f 0%, #ff00ba 35%, #00f0ff 70%, #00f5d4 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  
  box-shadow:
    0 0 3px #ffffff,
    0 0 8px rgba(255, 0, 128, 0.6),
    0 0 8px rgba(0, 245, 212, 0.4),
    inset 0 0 3px rgba(255, 255, 255, 0.3);
  
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateZ(40px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  overflow: hidden;
}

/* Subtle Animated Holographic Diagonal Shimmer */
.neon-card-shine {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 45%,
    rgba(255, 255, 255, 0.04) 48%,
    rgba(0, 245, 212, 0.08) 50%,
    rgba(255, 0, 128, 0.08) 52%,
    transparent 55%,
    transparent 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  animation: holo-sweep 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes holo-sweep {
  0%, 100% { transform: translateY(-120%) rotate(25deg); }
  50% { transform: translateY(120%) rotate(25deg); }
}

.hero-3d-stage:hover .neon-glass-card {
  transform: translateZ(55px) scale(1.02);
  box-shadow:
    0 0 4px #ffffff,
    0 0 14px rgba(255, 0, 128, 0.8),
    0 0 14px rgba(0, 245, 212, 0.6),
    inset 0 0 5px rgba(255, 255, 255, 0.4);
}

/* Card Header (App Icon & Available for Hire Pill) */
.neon-card-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.neon-card-app-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.2px solid rgba(0, 245, 212, 0.6);
  box-shadow: 0 0 8px rgba(0, 245, 212, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00f5d4;
  font-size: 1.15rem;
  transition: all 0.3s ease;
}

.neon-card-app-icon:hover {
  transform: scale(1.1);
  border-color: #00f5d4;
  box-shadow: 0 0 16px rgba(0, 245, 212, 0.7);
  color: #ffffff;
}

.neon-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 245, 212, 0.06);
  border: 1px solid rgba(0, 245, 212, 0.4);
  box-shadow: 0 0 8px rgba(0, 245, 212, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #00f5d4;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.neon-card-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00f5d4;
  box-shadow: 0 0 8px #00f5d4, 0 0 16px #00f5d4;
  animation: neon-dot-pulse 2s infinite;
}

@keyframes neon-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* Center Avatar with Glowing Dual-Tone Neon Ring */
.neon-avatar-wrapper {
  position: relative;
  margin: 4px 0 16px;
  z-index: 2;
}

.neon-avatar-ring {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  padding: 3.5px;
  background: linear-gradient(135deg, #00f5d4 0%, #00d2ff 40%, #ff007f 100%);
  box-shadow:
    0 0 3px #ffffff,
    0 0 12px rgba(0, 245, 212, 0.7),
    0 0 20px rgba(255, 0, 128, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
  animation: avatar-ring-glow 4s ease-in-out infinite alternate;
}

@keyframes avatar-ring-glow {
  0% {
    box-shadow:
      0 0 3px #ffffff,
      0 0 10px rgba(0, 245, 212, 0.6),
      0 0 18px rgba(255, 0, 128, 0.35);
  }
  100% {
    box-shadow:
      0 0 4px #ffffff,
      0 0 16px rgba(0, 245, 212, 0.85),
      0 0 26px rgba(255, 0, 128, 0.6);
  }
}

.neon-glass-card:hover .neon-avatar-ring {
  transform: scale(1.04);
}

.neon-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  background: #0d0e18;
  display: block;
}

/* Card Identity Typography */
.neon-card-info {
  margin-bottom: 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.neon-card-name {
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.neon-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 0, 128, 0.08);
  border: 1px solid rgba(255, 0, 128, 0.45);
  box-shadow: 0 0 8px rgba(255, 0, 128, 0.25);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ff3b94;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.neon-role-badge i {
  color: #ff007f;
  font-size: 0.75rem;
}

.neon-handle-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.neon-handle-pill i {
  color: #00f5d4;
  font-size: 0.95rem;
}

.neon-handle-pill:hover {
  background: rgba(0, 245, 212, 0.12);
  border-color: #00f5d4;
  box-shadow: 0 0 12px rgba(0, 245, 212, 0.5);
  color: #00f5d4;
  transform: translateY(-2px);
}

/* Bottom Stats Row */
.neon-card-stats {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 14px 8px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.neon-stat-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.neon-stat-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #00f5d4;
  text-shadow: 0 0 8px rgba(0, 245, 212, 0.6);
  line-height: 1.2;
  margin-bottom: 2px;
}

.neon-stat-val .stat-plus {
  color: #ff007f;
  font-size: 1rem;
  margin-left: 1px;
  text-shadow: 0 0 8px rgba(255, 0, 128, 0.6);
}

.neon-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
  letter-spacing: 0.4px;
}

.neon-stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.12);
}

/* Floating 3D Interactive Badges with Neon Borders */
.floating-badge {
  position: absolute;
  z-index: 10;
  background: rgba(14, 16, 26, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateZ(60px);
  transition: all 0.4s ease;
}

.badge-aws {
  top: 8%;
  left: 20px;
  border-color: rgba(255, 106, 0, 0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 15px rgba(255, 106, 0, 0.25);
  animation: float3d-1 6s ease-in-out infinite;
}
.badge-aws i { color: #ff9900; font-size: 1.1rem; }

.badge-devops {
  top: 25%;
  right: 15px;
  border-color: rgba(0, 245, 212, 0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 15px rgba(0, 245, 212, 0.25);
  animation: float3d-2 7s ease-in-out infinite;
}
.badge-devops i { color: #00f5d4; font-size: 1.1rem; }

.badge-linux {
  bottom: 25%;
  left: 15px;
  border-color: rgba(255, 0, 128, 0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 15px rgba(255, 0, 128, 0.25);
  animation: float3d-1 6.5s ease-in-out infinite;
}
.badge-linux i { color: #ff007f; font-size: 1.1rem; }

.badge-java {
  bottom: 8%;
  right: 20px;
  border-color: rgba(0, 210, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 15px rgba(0, 210, 255, 0.25);
  animation: float3d-3 8s ease-in-out infinite;
}
.badge-java i { color: #00d2ff; font-size: 1.1rem; }

.floating-badge:hover {
  transform: translateZ(85px) scale(1.1);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 0, 128, 0.5);
}

/* Floating Animations */
@keyframes float3d-1 {
  0%, 100% { transform: translateZ(60px) translateY(0px) rotate(0deg); }
  50% { transform: translateZ(75px) translateY(-10px) rotate(1deg); }
}

@keyframes float3d-2 {
  0%, 100% { transform: translateZ(65px) translateY(0px) rotate(0deg); }
  50% { transform: translateZ(80px) translateY(-12px) rotate(-1.5deg); }
}

@keyframes float3d-3 {
  0%, 100% { transform: translateZ(55px) translateY(0px) rotate(0deg); }
  50% { transform: translateZ(70px) translateY(10px) rotate(1deg); }
}

/* 3D Stage Ground Neon Holographic Base */
.stage-ground-3d {
  position: absolute;
  bottom: -20px;
  width: 360px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 245, 212, 0.35) 0%, rgba(255, 0, 128, 0.25) 45%, transparent 75%);
  filter: blur(18px);
  transform: rotateX(65deg) translateZ(-20px);
  z-index: 1;
  pointer-events: none;
  animation: aura-pulse 4s ease-in-out infinite alternate;
}

@keyframes aura-pulse {
  0% { transform: rotateX(65deg) translateZ(-20px) scale(0.92); opacity: 0.7; }
  100% { transform: rotateX(65deg) translateZ(-20px) scale(1.08); opacity: 1; }
}

/* --- Section Layout & Headers --- */
.section-header {
  margin-bottom: 60px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #00f5d4;
  letter-spacing: 2px;
  margin-bottom: 8px;
  background: rgba(0, 245, 212, 0.08);
  border: 1px solid rgba(0, 245, 212, 0.45);
  box-shadow: 0 0 14px rgba(0, 245, 212, 0.25);
  padding: 5px 14px;
  border-radius: 20px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
}

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

.about-graphics {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
}

.about-image-frame {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--bg-secondary);
  border: 2px solid rgba(255, 0, 128, 0.45);
  box-shadow: 0 0 30px rgba(255, 0, 128, 0.35), 0 20px 40px rgba(0, 0, 0, 0.7);
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.about-image-frame:hover img {
  transform: scale(1.05);
}

.about-floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(13, 14, 24, 0.9);
  border: 1.8px solid #00f5d4;
  border-radius: var(--border-radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  box-shadow: 0 0 25px rgba(0, 245, 212, 0.35), 0 15px 35px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  white-space: nowrap;
}

.about-card {
  background: rgba(13, 14, 24, 0.8);
  border: 1.5px solid rgba(0, 245, 212, 0.35);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 380px;
  position: relative;
  box-shadow: 0 0 25px rgba(0, 245, 212, 0.15), 0 15px 35px rgba(0,0,0,0.5);
  overflow: hidden;
}

.about-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff007f 0%, #00f5d4 100%);
  box-shadow: 0 0 12px #ff007f;
}

.about-badge {
  font-size: 3rem;
  color: #ff007f;
  text-shadow: 0 0 15px rgba(255, 0, 128, 0.6);
  margin-bottom: 15px;
}

.about-info-item {
  margin-bottom: 20px;
}

.about-info-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-info-val {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.about-floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1.8px solid #00f5d4;
  border-radius: var(--border-radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  box-shadow: 0 0 25px rgba(0, 245, 212, 0.35), 0 15px 35px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
}

.about-card {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1.5px solid rgba(0, 245, 212, 0.35);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 380px;
  position: relative;
  box-shadow: 0 0 25px rgba(0, 245, 212, 0.15), 0 15px 35px rgba(0,0,0,0.5);
  overflow: hidden;
}

.about-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff007f 0%, #00f5d4 100%);
  box-shadow: 0 0 12px #ff007f;
}

.about-badge {
  font-size: 3rem;
  color: #ff007f;
  text-shadow: 0 0 15px rgba(255, 0, 128, 0.6);
  margin-bottom: 15px;
}

.about-info-item {
  margin-bottom: 20px;
}

.about-info-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-info-val {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.about-floating-card .about-info-label {
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  margin-bottom: 3px;
  color: #00f5d4;
}

.about-floating-card .about-info-val {
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.highlight-box {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1.5px solid rgba(255, 0, 128, 0.35);
  padding: 22px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  box-shadow: 0 0 18px rgba(255, 0, 128, 0.12);
}

.highlight-box:hover {
  border-color: #ff007f;
  box-shadow: 0 0 28px rgba(255, 0, 128, 0.45);
  transform: translateY(-5px);
}

.highlight-icon {
  font-size: 1.5rem;
  color: #ff007f;
  text-shadow: 0 0 12px rgba(255, 0, 128, 0.6);
  margin-bottom: 8px;
}

.highlight-box h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: #ffffff;
}

.highlight-box p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--text-secondary);
}

/* --- Experience Section --- */
.experience-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.experience-card {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1.8px solid rgba(0, 245, 212, 0.4);
  border-radius: var(--border-radius-lg);
  padding: 36px;
  display: flex;
  gap: 24px;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 0 25px rgba(0, 245, 212, 0.15), 0 15px 35px rgba(0, 0, 0, 0.6);
}

.experience-card:hover {
  border-color: #00f5d4;
  transform: translateY(-5px);
  box-shadow: 0 0 35px rgba(0, 245, 212, 0.5), 0 20px 45px rgba(0, 0, 0, 0.8);
}

.experience-badge {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-md);
  background: rgba(0, 245, 212, 0.12);
  border: 1.5px solid rgba(0, 245, 212, 0.5);
  color: #00f5d4;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(0, 245, 212, 0.3);
}

.experience-content {
  flex: 1;
}

.experience-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.experience-role {
  font-size: 1.4rem;
  color: var(--text-primary);
}

.experience-company {
  font-size: 1rem;
  font-weight: 600;
  color: #ff007f;
  text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

.duration-pill {
  font-size: 0.8rem;
  font-weight: 600;
  color: #00f5d4;
  background: rgba(0, 245, 212, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0, 245, 212, 0.4);
  box-shadow: 0 0 10px rgba(0, 245, 212, 0.2);
}

.experience-desc {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.98rem;
}

.experience-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-mini-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 0, 128, 0.08);
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 0, 128, 0.4);
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.2);
}

/* --- Projects / Portfolio Section --- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.project-card {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 2px solid #ff007f;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 3px #ffffff, 0 0 8px rgba(255, 0, 128, 0.7);
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: #ff3b94;
  box-shadow: 0 0 4px #ffffff, 0 0 12px #ff007f, inset 0 0 4px rgba(255, 0, 128, 0.5);
}

/* Browser Frame Top Bar */
.project-browser-frame {
  background: #18181e;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27c93f; }

.browser-address-bar {
  flex: 1;
  background: #0f0f13;
  border-radius: 12px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: monospace;
  display: flex;
  align-items: center;
  gap: 6px;
}

.browser-address-bar i {
  color: #27c93f;
  font-size: 0.7rem;
}

/* Project Card Image & Screenshot */
.project-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.project-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-screenshot {
  transform: scale(1.08);
}

/* Mockup Themes */
.mockup-afsha {
  background: linear-gradient(135deg, #1f140e 0%, #361705 100%);
  border-bottom: 2px solid var(--accent-color);
}

.mockup-programmingwala {
  background: linear-gradient(135deg, #0e1c24 0%, #06283d 100%);
  border-bottom: 2px solid #0077ff;
}

.mockup-rancom {
  background: linear-gradient(135deg, #191024 0%, #290a38 100%);
  border-bottom: 2px solid #8000ff;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mockup-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #ffffff;
}

.mockup-tag {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 10px;
  border-radius: 12px;
  color: #ffffff;
}

.mockup-hero-text h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #ffffff;
}

.mockup-hero-text p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.mockup-cta-btn {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* Hover Overlay */
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 10, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.project-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-client-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.project-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.project-snippet {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  flex: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.project-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-tertiary);
  padding: 3px 10px;
  border-radius: 10px;
}

.more-details-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ff007f;
  text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.project-card:hover .more-details-link {
  gap: 10px;
  color: #00f5d4;
  text-shadow: 0 0 10px rgba(0, 245, 212, 0.6);
}

/* --- Project Interactive Modal --- */
.project-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: rgba(4, 4, 8, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.project-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: rgba(13, 14, 24, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.8px solid rgba(255, 0, 128, 0.5);
  border-radius: var(--border-radius-lg);
  max-width: 750px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow:
    0 0 35px rgba(255, 0, 128, 0.35),
    0 25px 60px rgba(0, 0, 0, 0.9),
    inset 0 0 25px rgba(255, 0, 128, 0.05);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-modal.active .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(14, 16, 26, 0.8);
  border: 1.5px solid rgba(255, 0, 128, 0.5);
  color: #ff3b94;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 14px rgba(255, 0, 128, 0.3);
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: rgba(255, 0, 128, 0.2);
  border-color: #ff007f;
  color: #ffffff;
  box-shadow: 0 0 22px rgba(255, 0, 128, 0.7);
  transform: rotate(90deg) scale(1.1);
}

.modal-body {
  padding: 40px;
}

.modal-header-graphic {
  border-radius: var(--border-radius-md);
  padding: 30px;
  margin-bottom: 28px;
  position: relative;
}

.modal-title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.modal-section-title {
  font-size: 1.1rem;
  margin: 20px 0 10px 0;
  color: #00f5d4;
  text-shadow: 0 0 10px rgba(0, 245, 212, 0.4);
}

.modal-features-list {
  list-style: none;
  margin-bottom: 24px;
}

.modal-features-list li {
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.modal-features-list li i {
  color: #00f5d4;
  margin-top: 4px;
}

.modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 2px solid #00f5d4;
  border-radius: var(--border-radius-lg);
  padding: 40px;
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 0 3px #ffffff, 0 0 8px rgba(0, 245, 212, 0.7);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #00f0ff;
  box-shadow: 0 0 4px #ffffff, 0 0 12px #00f5d4, inset 0 0 4px rgba(0, 245, 212, 0.5);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-md);
  background: rgba(0, 245, 212, 0.1);
  border: 1.5px solid rgba(0, 245, 212, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #00f5d4;
  margin-bottom: 28px;
  box-shadow: 0 0 10px rgba(0, 245, 212, 0.3);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: rgba(0, 245, 212, 0.2);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(0, 245, 212, 0.7);
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* --- Skills Section --- */
.skills-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.skills-intro h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #ffffff;
}

.skills-intro p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.skills-categories {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.skill-category {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 2px solid #00f5d4;
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 0 3px #ffffff, 0 0 8px rgba(0, 245, 212, 0.6);
  transition: var(--transition-smooth);
}

.skill-category:hover {
  border-color: #00f0ff;
  box-shadow: 0 0 4px #ffffff, 0 0 12px #00f5d4;
}

.skill-category-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}

.skill-category-title i {
  color: #00f5d4;
  text-shadow: 0 0 10px rgba(0, 245, 212, 0.5);
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-tag {
  background: rgba(0, 245, 212, 0.08);
  border: 1px solid rgba(0, 245, 212, 0.4);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 8px rgba(0, 245, 212, 0.2);
  transition: var(--transition-smooth);
}

.skill-tag i {
  color: #00f5d4;
}

.skill-tag:hover {
  background: rgba(0, 245, 212, 0.2);
  color: #00f5d4;
  border-color: #00f5d4;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 16px rgba(0, 245, 212, 0.6);
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
}

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

.contact-card {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 2px solid #00f5d4;
  border-radius: var(--border-radius-lg);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 0 3px #ffffff, 0 0 8px rgba(0, 245, 212, 0.6);
  transition: var(--transition-smooth);
}

.contact-card:hover {
  border-color: #00f0ff;
  box-shadow: 0 0 4px #ffffff, 0 0 12px #00f5d4;
  transform: translateX(5px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 245, 212, 0.1);
  border: 1.5px solid rgba(0, 245, 212, 0.45);
  color: #00f5d4;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 245, 212, 0.25);
  transition: var(--transition-smooth);
}

.contact-card:hover .contact-icon {
  background: rgba(0, 245, 212, 0.2);
  box-shadow: 0 0 18px rgba(0, 245, 212, 0.6);
  transform: scale(1.08);
}

.contact-details h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #00f5d4;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-details p {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Form Styling with Neon Borders */
.contact-form-container {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 2px solid #ff007f;
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: 0 0 3px #ffffff, 0 0 10px rgba(255, 0, 128, 0.7);
}

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

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-control {
  width: 100%;
  background: rgba(8, 8, 14, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-sm);
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: #00f5d4;
  background: rgba(0, 245, 212, 0.04);
  box-shadow: 0 0 18px rgba(0, 245, 212, 0.45);
}

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

/* --- Footer --- */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  background: #060608;
  padding: 40px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

.footer-socials .social-icon {
  width: 36px;
  height: 36px;
  font-size: 0.95rem;
}

/* --- Animations --- */
@keyframes rotate-dashed {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes blink {
  from, to { border-color: transparent }
  50% { border-color: var(--accent-color); }
}

/* --- Scroll Animation Reveals --- */
.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
  section {
    padding: 70px 24px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding-top: 120px;
    padding-bottom: 40px;
  }
  
  .hero-content {
    display: contents;
  }
  
  .hero-subtitle {
    order: 1;
    margin-bottom: 0px;
    font-size: 0.95rem;
  }

  .hero-title {
    order: 2;
    font-size: 3.2rem;
    margin-bottom: 0;
  }

  .hero-image-container {
    order: 3;
    min-height: auto;
    width: 100%;
    margin: 15px 0 20px 0;
  }

  .hero-3d-stage {
    width: 100%;
    max-width: 440px;
    height: 540px;
    margin: 0 auto;
  }

  .neon-glass-card {
    width: 300px;
    padding: 24px 18px 20px;
  }

  .neon-avatar-ring {
    width: 120px;
    height: 120px;
  }

  .floating-badge {
    padding: 8px 16px;
    font-size: 0.82rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  }

  .badge-aws {
    top: 5%;
    left: 5px;
  }

  .badge-devops {
    top: 22%;
    right: 5px;
  }

  .badge-linux {
    bottom: 22%;
    left: 5px;
  }

  .badge-java {
    bottom: 5%;
    right: 5px;
  }

  .stage-ground-3d {
    width: 300px;
    height: 70px;
  }

  .hero-role-wrapper {
    order: 4;
    min-height: 40px;
    margin-bottom: 12px;
  }

  .hero-role {
    font-size: 1.6rem;
  }

  .hero-socials {
    order: 5;
    margin-bottom: 24px;
  }

  .hero-ctas {
    order: 6;
    margin-bottom: 32px;
    justify-content: center;
  }

  .hero-stats {
    order: 7;
    margin: 0 auto;
    width: 100%;
  }

  .about-grid, .skills-container, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-graphics {
    order: 2;
  }
  
  .contact-info {
    order: 2;
  }
}

@media (max-width: 992px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  header {
    padding: 14px 0;
  }
  
  .nav-container {
    padding: 0 24px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 68px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 68px);
    background: rgba(8, 8, 10, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 36px 24px 80px 24px;
    gap: 18px;
    z-index: 99;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
  }
  
  .nav-menu.open {
    left: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
    border-radius: 12px;
  }

  .nav-link:hover, .nav-link.active {
    background: rgba(255, 106, 0, 0.12);
    color: var(--accent-color);
  }

  .nav-btn {
    display: none;
  }

  .hero-title {
    font-size: 2.6rem;
    -webkit-text-stroke: 1.8px #ffffff;
  }

  .hero-role {
    font-size: 1.35rem;
  }

  .section-title {
    font-size: 2.1rem;
    -webkit-text-stroke: 1.6px #ffffff;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 20px;
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
    letter-spacing: 0.5px;
    -webkit-text-stroke: 1.4px #ffffff;
  }

  .section-title {
    font-size: 1.75rem;
    -webkit-text-stroke: 1.3px #ffffff;
  }

  .logo {
    font-size: 1.3rem;
  }

  .hero-3d-stage {
    width: 100%;
    max-width: 340px;
    height: 480px;
  }

  .neon-glass-card {
    width: 275px;
    padding: 20px 14px 18px;
    border-radius: 24px;
  }

  .neon-avatar-ring {
    width: 105px;
    height: 105px;
  }

  .neon-card-name {
    font-size: 1.4rem;
  }

  .neon-card-role {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .neon-handle-pill {
    font-size: 0.78rem;
    padding: 4px 14px;
  }

  .neon-stat-val {
    font-size: 1.1rem;
  }

  .neon-stat-label {
    font-size: 0.65rem;
  }

  .floating-badge {
    padding: 5px 10px;
    font-size: 0.7rem;
    gap: 4px;
  }

  .badge-aws {
    top: 2%;
    left: -5px;
  }

  .badge-devops {
    top: 18%;
    right: -5px;
  }

  .badge-linux {
    bottom: 18%;
    left: -5px;
  }

  .badge-java {
    bottom: 2%;
    right: -5px;
  }

  .stage-ground-3d {
    width: 240px;
    height: 50px;
    bottom: -10px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 0;
    padding-bottom: 15px;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
}
