/* ==========================================================================
   ASHRAFUL ISLAM MINHAJ (ASHHDIGITAL) - CINEMATIC DARK DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #070709;
  --bg-surface: #0e0d13;
  --bg-card: rgba(18, 16, 24, 0.65);
  --bg-card-hover: rgba(28, 24, 38, 0.85);
  
  --primary-orange: #FF5E00;
  --primary-orange-light: #FF8533;
  --primary-orange-glow: rgba(255, 94, 0, 0.4);
  --primary-coral: #FF2A4D;
  --accent-amber: #FFA940;
  --accent-gradient: linear-gradient(135deg, #FF6A00 0%, #FF2A4D 100%);
  --accent-gradient-warm: linear-gradient(135deg, #FFA940 0%, #FF5E00 100%);
  --glow-radial: radial-gradient(circle, rgba(255,94,0,0.25) 0%, rgba(255,94,0,0) 70%);

  /* Text Colors */
  --text-pure: #FFFFFF;
  --text-main: #ECEBF0;
  --text-muted: #9E9AA8;
  --text-dim: #6B6877;

  /* Borders & Glass */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-orange: rgba(255, 94, 0, 0.25);
  --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  --blur-amount: blur(20px);

  /* Typography */
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', Georgia, serif;
  --font-mono: 'Space Grotesk', monospace;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  position: relative;
  min-height: 100vh;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #070709;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 94, 0, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-orange);
}

/* ==========================================================================
   LOADER
   ========================================================================== */
.loader {
  position: fixed;
  inset: 0;
  background: #070709;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-smooth), visibility 0.6s var(--ease-smooth);
}

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

.loader-content {
  text-align: center;
  max-width: 320px;
  width: 90%;
}

.loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.loader-brand-img {
  max-width: 240px;
  height: auto;
  object-fit: contain;
  display: block;
  animation: pulseLogo 2s infinite ease-in-out;
  filter: drop-shadow(0 0 20px rgba(255, 24, 68, 0.6));
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(255,42,77,0.5)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 25px rgba(255,42,77,0.9)); }
}

.progress-bar-container {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: var(--accent-gradient);
  box-shadow: 0 0 12px var(--primary-orange);
  transition: width 0.1s linear;
}

.loader-status {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CANVAS CONTAINER (Fixed Background Video Animation)
   ========================================================================== */
.canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#scroll-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Canvas Overlays: Vignette & Warm Neon Rim Glows */
.canvas-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.canvas-vignette {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(7, 7, 9, 0.2) 0%,
    rgba(7, 7, 9, 0.6) 70%,
    rgba(7, 7, 9, 0.92) 100%
  );
}

.canvas-glow-left {
  background: radial-gradient(
    circle at 20% 40%,
    rgba(255, 94, 0, 0.18) 0%,
    transparent 60%
  );
  mix-blend-mode: screen;
}

.canvas-glow-right {
  background: radial-gradient(
    circle at 80% 60%,
    rgba(255, 60, 0, 0.12) 0%,
    transparent 55%
  );
  mix-blend-mode: screen;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 9, 14, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 14px rgba(255, 24, 68, 0.45));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-brand:hover .brand-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 22px rgba(255, 24, 68, 0.8));
}

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

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  background: var(--primary-coral);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-smooth);
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease-smooth);
}

.btn-join {
  background: var(--accent-gradient);
  color: #fff;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 0.92rem;
  box-shadow: 0 4px 20px rgba(255, 42, 77, 0.4);
}

.btn-join:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 42, 77, 0.65);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

/* ==========================================================================
   MAIN CONTENT & SECTIONS
   ========================================================================== */
.main-content {
  position: relative;
  z-index: 10;
}

.section {
  position: relative;
  padding: 100px 0;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.section-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 40px;
}

.hero-container {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 170px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

/* Left Column: Hero Text */
.hero-copy-col {
  position: relative;
  z-index: 5;
}

.hero-kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #D1C9DF;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.08;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.highlight-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.18em;
  background: linear-gradient(135deg, #FFAE52 0%, #FF5900 50%, #FF2A4D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transform: skewX(-4deg);
  letter-spacing: 0.01em;
  filter: drop-shadow(0 4px 25px rgba(255, 42, 77, 0.45));
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #BDB7CC;
  max-width: 540px;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-description strong {
  color: #FFFFFF;
}

/* CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-pill {
  border-radius: 999px;
  padding: 6px 8px 6px 28px;
  font-size: 1rem;
  gap: 16px;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #FFFFFF;
  box-shadow: 0 8px 32px rgba(255, 42, 77, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 42, 77, 0.65);
}

.btn-icon-bubble {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.btn-icon-bubble svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.btn-primary:hover .btn-icon-bubble {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.35);
}

.btn-ghost {
  background: transparent;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  gap: 12px;
  padding: 8px 0;
}

.btn-ghost:hover {
  color: #FFA04D;
}

.btn-icon-play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-icon-play svg {
  width: 16px;
  height: 16px;
  color: #fff;
  margin-left: 2px;
}

.btn-ghost:hover .btn-icon-play {
  border-color: var(--primary-orange);
  background: rgba(255, 94, 0, 0.2);
  transform: scale(1.1);
}

/* Social Badges Strip */
.hero-social-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.social-strip-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social-badges-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D6D2E2;
  transition: all 0.25s ease;
}

.social-badge svg {
  width: 16px;
  height: 16px;
}

.social-badge:hover {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 42, 77, 0.4);
}

/* Audio Visualizer Bars */
.audio-visualizer-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 48px;
  margin-top: 10px;
  opacity: 0.6;
}

.audio-visualizer-bars .bar {
  width: 6px;
  background: linear-gradient(to top, rgba(255,94,0,0.1), #FF2A4D);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(255, 42, 77, 0.4);
}

.bar-1 { height: 35%; animation: soundBar 1.4s infinite ease-in-out alternate; }
.bar-2 { height: 60%; animation: soundBar 1.1s infinite ease-in-out alternate 0.2s; }
.bar-3 { height: 95%; animation: soundBar 1.6s infinite ease-in-out alternate 0.4s; }
.bar-4 { height: 75%; animation: soundBar 1.3s infinite ease-in-out alternate 0.1s; }
.bar-5 { height: 45%; animation: soundBar 1.5s infinite ease-in-out alternate 0.3s; }
.bar-6 { height: 25%; animation: soundBar 1.2s infinite ease-in-out alternate 0.5s; }

@keyframes soundBar {
  0% { transform: scaleY(0.4); }
  100% { transform: scaleY(1.1); }
}

/* Right Column: Floating Data Cards */
.hero-metrics-col {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
  pointer-events: none;
}

.metric-card {
  pointer-events: auto;
  background: rgba(14, 12, 20, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 16px 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 42, 77, 0.08);
  transition: transform 0.4s var(--ease-smooth), border-color 0.3s ease;
  animation: floatBadge 6s infinite ease-in-out alternate;
}

.metric-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(255, 42, 77, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 42, 77, 0.2);
}

.metric-card-growth {
  align-self: flex-end;
  margin-right: 20px;
  animation-delay: 0s;
}

.metric-card-engagement {
  align-self: flex-end;
  margin-right: 0px;
  animation-delay: 1.5s;
}

.metric-card-income {
  align-self: flex-end;
  margin-right: 40px;
  text-align: center;
  padding: 14px 20px 18px 20px;
  animation-delay: 3s;
}

@keyframes floatBadge {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

.metric-value {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 800;
  color: #FF2A4D;
  text-shadow: 0 0 20px rgba(255, 42, 77, 0.4);
  line-height: 1;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 0.82rem;
  color: #C3BFD2;
  font-weight: 500;
  line-height: 1.3;
}

/* Semi Circle Gauge */
.gauge-wrapper {
  position: relative;
  width: 120px;
  height: 65px;
  margin: 0 auto 4px auto;
}

.gauge-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.gauge-arc {
  filter: drop-shadow(0 0 8px rgba(255, 42, 77, 0.5));
}

.gauge-value {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FF2A4D;
  text-shadow: 0 0 14px rgba(255, 42, 77, 0.5);
}

/* Scroll Hint */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 20px auto 10px auto;
  opacity: 0.7;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 6px;
  background: var(--primary-coral);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.8s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* ==========================================================================
   BOTTOM GLASSMORHPIC BAR
   ========================================================================== */
.hero-bottom-glass-bar {
  background: rgba(14, 12, 20, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 42, 77, 0.2);
  border-radius: 28px;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.65), 0 0 40px rgba(255, 42, 77, 0.12);
  margin-top: 15px;
  position: relative;
  z-index: 10;
}

.glass-partners-block {
  flex: 1.1;
}

.glass-header-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #9D96AD;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.partner-logos-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.partner-logo {
  font-weight: 700;
  font-size: 1.05rem;
  color: #DAD5E6;
  opacity: 0.85;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.partner-logo:hover {
  opacity: 1;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.logo-forbes {
  font-family: 'Playfair Display', serif, 'Times New Roman';
  font-weight: 900;
  font-size: 1.15rem;
}

.logo-entrepreneur {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.15rem;
}

.logo-imh {
  font-size: 0.88rem;
  font-weight: 700;
}

.inline-logo-icon {
  width: 14px;
  height: 14px;
  color: var(--primary-coral);
}

.logo-later {
  font-weight: 800;
  font-size: 1.05rem;
}

.glass-divider {
  width: 1px;
  height: 54px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 36px;
}

/* Stats Block */
.glass-stats-block {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.stat-icon-wrapper {
  margin-bottom: 6px;
  filter: drop-shadow(0 0 10px rgba(255, 42, 77, 0.4));
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon-wrapper {
  transform: scale(1.15);
}

.stat-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.stat-number {
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
}

.stat-title {
  font-size: 0.75rem;
  color: #A39DB5;
  font-weight: 500;
  margin-top: 2px;
}

/* ==========================================================================
   GENERIC GLASS CARDS & SECTIONS
   ========================================================================== */
.glass-card {
  background: rgba(15, 13, 22, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.glass-card:hover {
  border-color: rgba(255, 42, 77, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 42, 77, 0.1);
}

.badge-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 42, 77, 0.12);
  border: 1px solid rgba(255, 42, 77, 0.3);
  color: #FFA552;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.section-header {
  max-width: 820px;
  margin: 0 auto 60px auto;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #A9A3BB;
  line-height: 1.6;
}

/* ==========================================================================
   SERVICES SECTION (01 - 09)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
}

.service-card.featured {
  border-color: rgba(255, 42, 77, 0.4);
  background: rgba(24, 16, 28, 0.78);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 35px rgba(255, 42, 77, 0.15);
}

.featured-tag {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: var(--accent-gradient);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(255, 42, 77, 0.3);
  margin-bottom: 12px;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 42, 77, 0.12);
  border: 1px solid rgba(255, 42, 77, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-coral);
}

.service-icon-box svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.service-card p {
  color: #A8A2B8;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==========================================================================
   EXPERIENCE & TIMELINE SECTION
   ========================================================================== */
.timeline-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.timeline-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.timeline-period {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFA552;
  background: rgba(255, 94, 0, 0.12);
  padding: 4px 12px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 16px;
}

.timeline-role {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.timeline-company {
  font-size: 0.95rem;
  color: #DDD8EB;
  margin-bottom: 6px;
}

.timeline-location {
  font-size: 0.82rem;
  color: #9D96AD;
}

/* Education Sub-Block */
.education-block {
  padding: 40px 32px;
}

.education-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.edu-item {
  border-left: 2px solid var(--primary-coral);
  padding-left: 20px;
}

.edu-badge {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #FFA552;
  font-weight: 700;
  margin-bottom: 6px;
}

.edu-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.edu-item p {
  color: #A8A2B8;
  font-size: 0.92rem;
}

/* ==========================================================================
   SKILLS & AI SECTION
   ========================================================================== */
.skills-showcase-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.skill-chip {
  background: rgba(18, 15, 26, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 22px;
  border-radius: 999px;
  color: #E2DEEE;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s var(--ease-smooth);
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF5E00;
  box-shadow: 0 0 8px rgba(255, 94, 0, 0.6);
}

.highlight-chip {
  border-color: rgba(255, 42, 77, 0.4);
  background: rgba(30, 16, 30, 0.8);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(255, 42, 77, 0.15);
}

.chip-dot-ai {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF2A4D;
  box-shadow: 0 0 10px rgba(255, 42, 77, 0.8);
}

.skill-chip:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--primary-coral);
  box-shadow: 0 8px 25px rgba(255, 42, 77, 0.3);
}

/* ==========================================================================
   CERTIFICATIONS SECTION
   ========================================================================== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cert-card {
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
}

.cert-badge-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.cert-card h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: #ECEAF4;
  line-height: 1.35;
}

/* ==========================================================================
   CONTACT & CTA SECTION
   ========================================================================== */
.cta-banner {
  background: radial-gradient(circle at 50% 0%, rgba(255, 42, 77, 0.25) 0%, rgba(18, 14, 26, 0.9) 75%);
  border: 1px solid rgba(255, 42, 77, 0.35);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 60px rgba(255, 42, 77, 0.15);
  padding: 60px 40px;
  border-radius: 32px;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: #BDB7CC;
  margin-bottom: 36px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.contact-methods-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contact-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
}

.whatsapp-btn {
  background: #25D366;
  color: #050407;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

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

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.email-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.email-btn svg {
  width: 20px;
  height: 20px;
  color: var(--primary-coral);
}

.email-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--primary-coral);
  transform: translateY(-3px);
}

/* Contact Socials Grid */
.contact-socials-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-resume-mobile {
  display: none;
}

.social-contact-item {
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  min-width: 150px;
}

.social-contact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 4px;
}

.social-arrow {
  font-size: 0.88rem;
  color: var(--primary-coral);
  font-weight: 700;
  transition: transform 0.25s ease;
}

.social-contact-item:hover .social-arrow {
  transform: translate(2px, -2px);
}

.social-contact-name {
  font-size: 0.78rem;
  color: #8C869D;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.social-contact-handle {
  font-size: 0.92rem;
  color: #FFFFFF;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-contact-item:hover {
  background: rgba(255, 42, 77, 0.15);
  border-color: var(--primary-coral);
  transform: translateY(-3px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  position: relative;
  z-index: 10;
  background: #050407;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 40px 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(255, 24, 68, 0.35));
}

.footer-tagline {
  color: #8C869D;
  font-size: 0.92rem;
  margin-top: 16px;
  max-width: 380px;
  line-height: 1.6;
}

.footer-tagline strong {
  color: #fff;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  color: #8C869D;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
  color: var(--primary-coral);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: #6C677C;
}

.footer-socials a {
  color: #8C869D;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: #fff;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .services-grid,
  .timeline-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-metrics-col {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    min-height: auto;
  }
  .metric-card-growth,
  .metric-card-engagement,
  .metric-card-income {
    align-self: auto;
    margin: 0;
  }
  .hero-bottom-glass-bar {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .glass-divider {
    width: 100%;
    height: 1px;
    margin: 10px 0;
  }
  .partner-logos-row {
    justify-content: center;
  }
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .education-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* 1st: Background Canvas & Mobile Vignette */
  .canvas-vignette {
    background: radial-gradient(
      circle at 50% 35%,
      rgba(7, 7, 9, 0.4) 0%,
      rgba(7, 7, 9, 0.75) 65%,
      rgba(7, 7, 9, 0.95) 100%
    );
  }
  .canvas-glow-left {
    opacity: 0.6;
  }
  .canvas-glow-right {
    opacity: 0.6;
  }

  /* Navigation on Mobile: Left Menu Icon, Middle Logo, Right Let's Talk */
  .navbar {
    padding: 8px 0;
  }
  .nav-container {
    padding: 0 16px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 6px;
    z-index: 1002;
    cursor: pointer;
  }
  .nav-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    z-index: 1001;
  }
  .brand-logo-img {
    height: 28px;
    max-width: 125px;
  }
  .nav-actions {
    order: 3; /* Right side */
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    margin-left: auto;
  }
  .btn-resume-nav {
    display: none !important; /* Removed from phone view header */
  }
  .btn-join {
    padding: 7px 16px;
    font-size: 0.84rem;
    white-space: nowrap;
    border-radius: 999px;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: rgba(10, 8, 15, 0.97);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    padding: 90px 28px 40px 28px;
    gap: 20px;
    transition: right 0.4s var(--ease-smooth);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-resume-mobile {
    display: flex !important; /* Put inside mobile slideout menu */
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    background: rgba(255, 42, 77, 0.18);
    border: 1px solid rgba(255, 42, 77, 0.4);
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 8px;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }

  /* Hero Section on Mobile: Proper Spacing for Kicker & Top Header */
  .section-hero {
    padding-top: 135px !important;
    padding-bottom: 30px;
  }
  .hero-container {
    padding: 0 20px;
  }
  .hero-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    line-height: 1.5;
    padding: 7px 14px;
    margin-top: 6px;
    margin-bottom: 22px;
    display: inline-block;
    max-width: 100%;
  }
  .hero-title {
    font-size: 2.35rem;
    line-height: 1.12;
  }
  .hero-description {
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 24px;
  }
  .btn-pill {
    white-space: nowrap;
    justify-content: space-between;
    font-size: 0.92rem;
    padding: 6px 8px 6px 20px;
  }
  .hero-metrics-col {
    gap: 14px;
  }
  .metric-card {
    padding: 14px 18px;
  }
  .metric-value {
    font-size: 1.8rem;
  }

  /* Sections Spacing */
  .section {
    padding: 70px 0;
  }
  .section-container {
    padding: 0 20px;
  }
  .section-title {
    font-size: 1.95rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
  }
  .services-grid,
  .timeline-container,
  .cert-grid {
    grid-template-columns: 1fr;
  }
  .hero-bottom-glass-bar {
    padding: 20px 16px;
    border-radius: 20px;
  }
  .glass-stats-block {
    gap: 16px;
    justify-content: space-around;
    width: 100%;
  }
  .stat-number {
    font-size: 1.25rem;
  }
  .stat-title {
    font-size: 0.72rem;
  }

  /* Professional Skills & Tools 2-Column Mobile Grid */
  .skills-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .skill-chip {
    padding: 10px 12px;
    font-size: 0.85rem;
    justify-content: flex-start;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
  }

  /* WhatsApp Button on One Single Line on Mobile */
  .contact-methods-row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
  }
  .contact-pill-btn {
    width: 100%;
    max-width: 380px;
    padding: 14px 18px;
    font-size: 0.95rem;
    white-space: nowrap;
    justify-content: center;
    box-sizing: border-box;
  }
  .whatsapp-btn,
  .email-btn {
    white-space: nowrap;
  }
  .whatsapp-btn span,
  .email-btn span {
    white-space: nowrap;
  }

  /* Social Media Buttons Layout on Mobile */
  .contact-socials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 24px;
  }
  .social-contact-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    min-height: 72px;
    min-width: unset;
    box-sizing: border-box;
    text-decoration: none;
    overflow: hidden;
  }
  .social-contact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 4px;
  }
  .social-contact-name {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8C869D;
  }
  .social-arrow {
    font-size: 0.82rem;
    color: var(--primary-coral);
    font-weight: 700;
  }
  .social-contact-handle {
    font-size: 0.78rem;
    font-weight: 600;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
  }

  /* Footer Proper Mobile Layout */
  .footer {
    padding: 50px 0 25px 0;
  }
  .footer-container {
    padding: 0 20px;
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 36px;
  }
  .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
  .footer-col:last-child {
    grid-column: span 2;
  }
  .footer-col h5 {
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: #fff;
  }
  .footer-col a {
    font-size: 0.88rem;
    margin-bottom: 10px;
    display: block;
    word-break: break-word;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .contact-pill-btn {
    font-size: 0.88rem;
    padding: 13px 12px;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-col:last-child {
    grid-column: auto;
  }
  .skills-showcase-grid {
    gap: 8px;
  }
  .skill-chip {
    padding: 8px 10px;
    font-size: 0.8rem;
    gap: 8px;
  }
  .social-contact-item {
    padding: 10px 11px;
    min-height: 66px;
  }
  .social-contact-name {
    font-size: 0.68rem;
  }
  .social-contact-handle {
    font-size: 0.74rem;
  }
}
