/* ==========================================================================
   MUHAMMAD DHANI - CREATIVE & EVENT SPECIALIST PORTFOLIO
   Design Theme: Vibrant Creative Dark Mode with Doodles & Playful Aesthetics
   ========================================================================== */

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

:root {
  /* Core Color Palette */
  --bg-main: #0c0e14;
  --bg-secondary: #12151f;
  --bg-card: #161a26;
  --bg-card-hover: #1c2132;
  --bg-glass: rgba(22, 26, 38, 0.75);
  --bg-glass-strong: rgba(18, 21, 31, 0.9);

  /* Accents */
  --neon-lime: #d4ff32;
  --neon-lime-glow: rgba(212, 255, 50, 0.35);
  --neon-cyan: #00f0ff;
  --neon-cyan-glow: rgba(0, 240, 255, 0.35);
  --electric-purple: #8b5cf6;
  --electric-purple-glow: rgba(139, 92, 246, 0.4);
  --vibrant-pink: #ff3b81;
  --warm-orange: #ff8c00;
  --bright-yellow: #ffd000;

  /* Typography Colors */
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-subtle: #6b7280;
  --text-dark: #0c0e14;

  /* Borders & Shadows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: #23283b;
  --border-focus: rgba(212, 255, 50, 0.5);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 25px var(--neon-lime-glow);

  /* Fonts */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Syne', sans-serif;
  --font-doodle: 'Permanent Marker', cursive;
  --font-heading: 'Outfit', sans-serif;

  /* Layout */
  --container-max: 1240px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-main);
  overflow-x: hidden;
}

body {
  background-color: var(--bg-main);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

button, input, textarea {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* Background Animated Blobs */
.bg-blobs-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  filter: blur(100px);
  border-radius: 50%;
  opacity: 0.15;
  animation: floatBlob 18s ease-in-out infinite alternate;
}

.blob-1 {
  width: 450px;
  height: 450px;
  background: var(--electric-purple);
  top: -100px;
  right: -50px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--neon-cyan);
  top: 35%;
  left: -150px;
  animation-delay: -5s;
}

.blob-3 {
  width: 500px;
  height: 500px;
  background: var(--neon-lime);
  bottom: 10%;
  right: -100px;
  opacity: 0.08;
  animation-delay: -10s;
}

@keyframes floatBlob {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.85rem 0;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  text-transform: uppercase;
}

.nav-brand span.dot {
  color: var(--neon-lime);
  font-size: 2rem;
  line-height: 0;
}

.nav-brand .brand-tag {
  font-family: var(--font-doodle);
  font-size: 0.75rem;
  color: var(--neon-cyan);
  margin-left: 0.3rem;
  transform: rotate(-5deg);
  display: inline-block;
  background: rgba(0, 240, 255, 0.12);
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-full);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--neon-lime);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--neon-lime);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--neon-lime);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.15rem;
  background: #1e2333;
  color: var(--text-main);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-nav-contact:hover {
  background: var(--neon-lime);
  color: var(--text-dark);
  border-color: var(--neon-lime);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.nav-toggle-btn {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  color: var(--text-main);
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 8.5rem 0 4rem;
  min-height: 92vh;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  position: relative;
}

/* Hey, I'm with arrow doodle */
.hero-intro-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.hero-intro-text {
  font-family: var(--font-doodle);
  font-size: 1.75rem;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.hero-arrow-doodle {
  width: 44px;
  height: 28px;
  stroke: var(--neon-lime);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Big Name with Crown */
.hero-title-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.hero-crown-doodle {
  position: absolute;
  top: -24px;
  right: 18%;
  width: 42px;
  height: 32px;
  fill: var(--bright-yellow);
  filter: drop-shadow(0 0 6px rgba(255, 208, 0, 0.6));
  animation: crownBob 3s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes crownBob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(6deg); }
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7vw, 6.2rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-roles {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.role-dot {
  color: var(--neon-lime);
  font-size: 1.3rem;
  line-height: 0;
}

.hero-bio {
  font-size: 1.05rem;
  color: #a3aab8;
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.hero-bio strong {
  color: var(--text-main);
  font-weight: 700;
}

/* Hero CTA Buttons */
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--neon-lime);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 6px 20px var(--neon-lime-glow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(212, 255, 50, 0.5);
  background: #e1ff54;
}

.btn-primary .icon-play {
  font-size: 0.95rem;
  display: inline-block;
  line-height: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #181c2b;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-card);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: #22283d;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: #ffffff;
}

.btn-icon-link {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: #181c2b;
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.15rem;
  transition: var(--transition);
}

.btn-icon-link:hover {
  background: var(--neon-lime);
  color: var(--text-dark);
  border-color: var(--neon-lime);
  transform: translateY(-3px);
}

/* Scroll Down Indicator */
.hero-scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-subtle);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mouse-icon {
  width: 20px;
  height: 32px;
  border: 2px solid var(--border-card);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background: var(--neon-lime);
  border-radius: 2px;
  animation: mouseWheel 2s infinite;
}

@keyframes mouseWheel {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Hero Character & Visual Right Side */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-art-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 480px;
  max-height: 480px;
  background: radial-gradient(circle at 60% 40%, rgba(139, 92, 246, 0.4) 0%, rgba(0, 240, 255, 0.2) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
}

.hero-character-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
  animation: heroFloat 6s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

/* Speech Bubble */
.hero-speech-bubble {
  position: absolute;
  top: 8%;
  left: -10%;
  z-index: 3;
  background: #00b4d8;
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 20px 20px 20px 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: speechBob 4s ease-in-out infinite alternate;
  max-width: 220px;
  text-align: center;
}

@keyframes speechBob {
  0% { transform: translateY(0) rotate(-4deg); }
  100% { transform: translateY(-6px) rotate(-1deg); }
}

/* Floating Doodles */
.doodle-item {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.doodle-star-1 {
  top: -10px;
  right: 15%;
  width: 32px;
  height: 32px;
  fill: var(--bright-yellow);
  animation: spinSlow 12s linear infinite;
}

.doodle-smiley {
  bottom: 12%;
  left: 5%;
  width: 38px;
  height: 38px;
  stroke: var(--neon-lime);
  fill: none;
  stroke-width: 3;
}

.doodle-spark {
  bottom: 8%;
  left: 20%;
  width: 28px;
  height: 28px;
  fill: var(--neon-lime);
}

.doodle-clapper {
  bottom: 14%;
  right: 2%;
  width: 58px;
  height: 58px;
  transform: rotate(-10deg);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.5));
}

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

/* ==========================================================================
   SHOWREEL HIGHLIGHT CARD
   ========================================================================== */
.showreel-section {
  position: relative;
  z-index: 2;
  padding: 1rem 0 4.5rem;
}

.showreel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.showreel-card:hover {
  border-color: rgba(212, 255, 50, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.showreel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.showreel-badge .star-icon {
  color: var(--neon-lime);
  font-size: 1.2rem;
}

.showreel-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.showreel-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--neon-lime);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}

.showreel-link-btn:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Showreel Player Banner */
.showreel-video-banner {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  group: pointer;
}

.showreel-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.showreel-video-banner:hover .showreel-banner-img {
  transform: scale(1.05);
}

.showreel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.65) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-pulse-btn {
  width: 68px;
  height: 68px;
  background: var(--neon-lime);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  padding-left: 4px;
  box-shadow: 0 0 0 0 rgba(212, 255, 50, 0.6);
  animation: pulsePlay 2s infinite;
  transition: var(--transition);
}

.showreel-video-banner:hover .play-pulse-btn {
  transform: scale(1.15);
  background: #ffffff;
}

@keyframes pulsePlay {
  0% { box-shadow: 0 0 0 0 rgba(212, 255, 50, 0.6); }
  70% { box-shadow: 0 0 0 20px rgba(212, 255, 50, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 255, 50, 0); }
}

.showreel-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(12, 14, 20, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   FEATURED PROJECTS & FILTERABLE SHOWCASE
   ========================================================================== */
.projects-section {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.title-squiggle {
  color: var(--electric-purple);
  font-size: 1.8rem;
  font-family: var(--font-doodle);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 0.4rem;
}

/* Filter Tabs */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.8rem;
  margin-bottom: 2.5rem;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  padding: 0.6rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
}

.filter-btn:hover {
  background: var(--bg-card-hover);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
  background: var(--neon-lime);
  color: var(--text-dark);
  border-color: var(--neon-lime);
  box-shadow: 0 4px 15px var(--neon-lime-glow);
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 255, 50, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.project-thumb-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #000000;
  overflow: hidden;
}

.project-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.project-badge-pill {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(12, 14, 20, 0.85);
  backdrop-filter: blur(6px);
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-lime);
  border: 1px solid rgba(212, 255, 50, 0.3);
}

.project-info {
  padding: 1.25rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.project-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.project-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
}

.project-arrow {
  color: var(--text-subtle);
  font-size: 1.1rem;
  transition: var(--transition);
  flex-shrink: 0;
  margin-top: 2px;
}

.project-card:hover .project-arrow {
  color: var(--neon-lime);
  transform: translate(3px, -3px);
}

.project-category-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   SKILLS & SOFTWARE STACK
   ========================================================================== */
.skills-section {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.skills-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  position: relative;
}

.skills-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.skills-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.25rem;
}

.skill-item {
  background: #11141e;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  transition: var(--transition);
}

.skill-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  background: #181d2c;
}

.skill-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
}

/* Brand specific icon colors */
.icon-blender { background: rgba(234, 118, 0, 0.15); color: #ea7600; border: 1px solid rgba(234, 118, 0, 0.3); }
.icon-figma { background: rgba(242, 78, 30, 0.15); color: #f24e1e; border: 1px solid rgba(242, 78, 30, 0.3); }
.icon-photoshop { background: rgba(49, 168, 255, 0.15); color: #31a8ff; border: 1px solid rgba(49, 168, 255, 0.3); }
.icon-illustrator { background: rgba(255, 154, 0, 0.15); color: #ff9a00; border: 1px solid rgba(255, 154, 0, 0.3); }
.icon-premiere { background: rgba(153, 153, 255, 0.15); color: #9999ff; border: 1px solid rgba(153, 153, 255, 0.3); }
.icon-aftereffects { background: rgba(210, 145, 255, 0.15); color: #d291ff; border: 1px solid rgba(210, 145, 255, 0.3); }
.icon-web { background: rgba(0, 240, 255, 0.15); color: #00f0ff; border: 1px solid rgba(0, 240, 255, 0.3); }
.icon-cloud { background: rgba(212, 255, 50, 0.15); color: var(--neon-lime); border: 1px solid rgba(212, 255, 50, 0.3); }

.skill-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
}

.skill-role {
  font-size: 0.75rem;
  color: var(--text-subtle);
  line-height: 1.2;
}

/* ==========================================================================
   ABOUT ME SECTION (DUAL STICKER CARD)
   ========================================================================== */
.about-section {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.about-dual-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: stretch;
}

/* Left Sticker Card */
.about-sticker-card {
  background: #ccff00;
  background: linear-gradient(135deg, #ccff00, #95d400);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(204, 255, 0, 0.25);
}

.sticker-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}

.sticker-tag {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.1;
  color: var(--text-dark);
  text-transform: uppercase;
}

.sticker-crown {
  width: 36px;
  height: 28px;
  fill: var(--text-dark);
}

.sticker-char-img {
  width: 90%;
  max-width: 320px;
  margin: 1.5rem auto 0;
  z-index: 2;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.sticker-footer-badge {
  background: var(--text-dark);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  align-self: flex-start;
  z-index: 2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Right Content Card */
.about-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: #ffffff;
}

.about-highlight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.about-chip {
  background: #11141e;
  border: 1px solid var(--border-card);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neon-cyan);
}

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

/* ==========================================================================
   EXPERIENCE & TIMELINE SECTION
   ========================================================================== */
.experience-section {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.timeline-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.timeline-tabs {
  background: var(--bg-card);
  padding: 0.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-card);
  display: inline-flex;
  gap: 0.35rem;
}

.timeline-tab-btn {
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-muted);
  transition: var(--transition);
}

.timeline-tab-btn.active {
  background: var(--neon-lime);
  color: var(--text-dark);
  box-shadow: 0 4px 15px var(--neon-lime-glow);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
}

.timeline-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.timeline-item-card:hover {
  border-color: rgba(212, 255, 50, 0.4);
  transform: translateY(-4px);
}

.timeline-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.timeline-year-tag {
  background: rgba(212, 255, 50, 0.12);
  color: var(--neon-lime);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 255, 50, 0.3);
}

.timeline-role {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.timeline-org {
  font-size: 0.95rem;
  color: var(--neon-cyan);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.timeline-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-subtle);
}

/* ==========================================================================
   CERTIFICATIONS & ACHIEVEMENTS
   ========================================================================== */
.credentials-section {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.credentials-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.cred-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.cred-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
}

.cred-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cred-item {
  background: #10131d;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}

.cred-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: #161a28;
}

.cred-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(212, 255, 50, 0.12);
  color: var(--neon-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cred-content {
  flex-grow: 1;
}

.cred-name {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.cred-issuer {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cred-id {
  font-size: 0.75rem;
  color: var(--neon-cyan);
  font-family: monospace;
  margin-top: 0.3rem;
}

/* ==========================================================================
   CONTACT / LET'S MAKE SOMETHING DOPE SECTION
   ========================================================================== */
.contact-section {
  position: relative;
  z-index: 2;
  padding: 5rem 0 3rem;
}

.contact-card-main {
  background: #131724;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-banner-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.contact-heading-wrap {
  margin-bottom: 2rem;
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.contact-dope-circle {
  position: relative;
  display: inline-block;
  color: var(--neon-lime);
}

.contact-dope-circle::before {
  content: '';
  position: absolute;
  inset: -6px -12px;
  border: 3px solid var(--electric-purple);
  border-radius: 40px;
  transform: rotate(-3deg);
}

.contact-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-top: 1.25rem;
  line-height: 1.6;
}

/* Direct Contact List */
.direct-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #1c2132;
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-lime);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-copy-btn {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  margin-left: 0.5rem;
  transition: var(--transition);
}

.contact-copy-btn:hover {
  background: var(--neon-lime);
  color: var(--text-dark);
}

/* Quick WhatsApp Box */
.whatsapp-chat-box {
  background: #0d101a;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #25d366;
  margin-bottom: 1rem;
}

.wa-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.wa-input,
.wa-textarea {
  background: #141724;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: #ffffff;
  font-size: 0.95rem;
  transition: var(--transition);
}

.wa-input:focus,
.wa-textarea:focus {
  border-color: var(--neon-lime);
  background: #191e2e;
}

.wa-textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-send-wa {
  background: #25d366;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-send-wa:hover {
  background: #22bf5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Character in Contact Right Column */
.contact-char-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-char-img {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
  animation: heroFloat 7s ease-in-out infinite;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-subtle);
  background: #090a0f;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

.footer-copy strong {
  color: var(--text-main);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-pill {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #141724;
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.social-pill:hover {
  background: var(--neon-lime);
  color: var(--text-dark);
  border-color: var(--neon-lime);
  transform: translateY(-2px);
}

/* ==========================================================================
   MODAL LIGHTBOX & VIDEO PLAYER
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 2.25rem;
}

.modal-backdrop.open .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1c2132;
  border: 1px solid var(--border-card);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--vibrant-pink);
  color: #ffffff;
  transform: rotate(90deg);
}

.modal-media-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000000;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-main-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.modal-category-badge {
  display: inline-block;
  background: rgba(212, 255, 50, 0.12);
  color: var(--neon-lime);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.modal-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.modal-sidebar {
  background: #10131d;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-subtle);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.modal-meta-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.modal-btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--neon-lime);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  margin-top: 0.5rem;
}

.modal-btn-link:hover {
  background: #e1ff54;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Toast notification */
.toast-notice {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--neon-lime);
  color: var(--text-dark);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 3000;
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-intro-wrapper,
  .hero-roles,
  .hero-actions {
    justify-content: center;
  }

  .hero-bio {
    margin: 0 auto 2rem;
  }

  .hero-character-img {
    max-width: 380px;
  }

  .hero-speech-bubble {
    left: 5%;
    top: 0%;
  }

  .showreel-card {
    grid-template-columns: 1fr;
  }

  .about-dual-card {
    grid-template-columns: 1fr;
  }

  .contact-banner-row {
    grid-template-columns: 1fr;
  }

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

  .modal-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
    transition: right 0.35s ease;
    border-left: 1px solid var(--border-card);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle-btn {
    display: flex;
    z-index: 1001;
  }

  .btn-nav-contact {
    display: none;
  }

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

  .skills-wrapper {
    padding: 1.75rem 1.25rem;
  }

  .contact-card-main {
    padding: 2.25rem 1.5rem;
  }

  .modal-card {
    padding: 1.5rem;
  }
}
