/* ==========================================================================
   Premium Futuristic Creative Agency Hero Section - style.css
   Based on DESIGN.md tokens & ElevenLabs styling language
   ========================================================================== */

/* Font Imports */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Syne:wght@700;800&family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Unbounded:wght@200..900&display=swap');

:root {
  /* Colors from DESIGN.md */
  --color-primary: #292524;
  --color-primary-active: #0c0a09;
  --color-ink: #0c0a09;
  --color-body: #4e4e4e;
  --color-body-strong: #292524;
  --color-muted: #777169;
  --color-muted-soft: #a8a29e;
  --color-hairline: #e7e5e4;
  --color-hairline-soft: #f0efed;
  --color-hairline-strong: #d6d3d1;
  --color-canvas: #f5f5f5;
  --color-canvas-soft: #fafafa;
  --color-canvas-deep: #0c0a09;
  --color-surface-card: #ffffff;
  --color-surface-strong: #f0efed;
  --color-surface-dark: #0c0a09;
  --color-surface-dark-elevated: #1c1917;
  --color-on-primary: #ffffff;
  --color-on-dark: #ffffff;
  --color-on-dark-soft: #a8a29e;

  /* Atmospheric Gradient Stops */
  --gradient-mint: #a7e5d3;
  --gradient-peach: #f4c5a8;
  --gradient-lavender: #c8b8e0;
  --gradient-sky: #a8c8e8;
  --gradient-rose: #e8b8c4;

  /* Typography */
  --font-display: 'Unbounded', sans-serif;
  /* Futuristic Auvora alternative */
  /* --font-serif: 'EB Garamond', serif; */
  /* ElevenLabs custom serif alternative */
  --font-body: 'Raleway', sans-serif;

  /* Border Radii */
  --rounded-none: 0px;
  --rounded-xs: 4px;
  --rounded-sm: 6px;
  --rounded-md: 8px;
  --rounded-lg: 12px;
  --rounded-xl: 16px;
  --rounded-xxl: 24px;
  --rounded-xxxl: 32px;
  --rounded-pill: 9999px;
  --rounded-full: 9999px;

  /* Transitions */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-card: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease, filter 0.8s ease;
  --transition-fast: all 0.2s ease;
  --bg-grid: #e2e2e2b7;
}

/* Base resets & styles */
body {
  /* background-color: var(--color-canvas); */
  background-image: linear-gradient(var(--bg-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--bg-grid) 1px, transparent 1px);
  color: var(--color-ink);
  font-family: var(--font-body);
  letter-spacing: 0.16px;
  /* +0.16px letter-spacing for editorial Inter */
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  /* background-color: #efe7d2; */
  background-color: #fff7e4;
  background-image: linear-gradient(var(--bg-grid) 1px, transparent 1px), linear-gradient(90deg, var(--bg-grid) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Minimal scrollbar — transparent track, only the pill visible */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}

/* Top Navigation Header (DESIGN.md aligned) */
.main-header {
  height: 64px;
  /* backdrop-filter: blur(10px); */
  /* background: #00000036; */
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 48px;
  /* position: sticky;
  top: 0; */
  z-index: 100;
}


.main-header .navbar-brand img {
  width: 150px;
}

@media (max-width: 991px) {
  .main-header {
    padding: 0 24px;
    height: auto;
    min-height: 64px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

.main-header .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
}

/* Light mode primary button (ink pill) */
.btn-ink-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  /* Aligned to 40px height from DESIGN.md */
  padding: 0 6px 0 16px;
  border-radius: var(--rounded-pill);
  border: 1px solid var(--color-primary);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(41, 37, 36, 0.15);
}

.btn-ink-primary .btn-text {
  margin-right: 8px;
}

.btn-ink-primary .btn-circle-icon {
  width: 28px;
  height: 28px;
  background-color: #ffffff;
  color: var(--color-ink);
  border-radius: var(--rounded-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-ink-primary .btn-circle-icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-ink-primary:hover {
  background-color: var(--color-primary-active);
  border-color: var(--color-primary-active);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(12, 10, 9, 0.25);
  color: #ffffff;
}

.btn-ink-primary:hover .btn-circle-icon svg {
  transform: translate(1px, -1px) rotate(-45deg);
}

/* App container background to frame the hero section beautifully */
.app-wrapper {
  padding: 24px;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .app-wrapper {
    padding: 12px;
  }
}

/* Hero Section Container */
.hero-section {
  position: relative;
  width: 100%;
  max-width: 1400px;
  background-color: var(--color-canvas-deep);
  border-radius: var(--rounded-xxxl);
  overflow: hidden;
  padding: 96px 64px;
  /* Section rhythm padding */
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
  .hero-section {
    padding: 64px 32px;
    border-radius: var(--rounded-xxl);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 48px 20px;
    border-radius: var(--rounded-xl);
  }
}

/* Hero Background Video */
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Dark overlay on top of video so text stays legible */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 10, 9, 0.55);
  z-index: 0;
  pointer-events: none;
}

/* Animated Ambient Gradient Orbs */
.glow-orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.glow-orb {
  position: absolute;
  border-radius: var(--rounded-full);
  filter: blur(140px);
  opacity: 0.25;
  mix-blend-mode: screen;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--gradient-lavender);
  top: -150px;
  right: -50px;
  animation: floatOrb1 25s infinite alternate ease-in-out;
}

.orb-2 {
  width: 450px;
  height: 450px;
  background: var(--gradient-sky);
  bottom: -100px;
  left: 20%;
  animation: floatOrb2 20s infinite alternate ease-in-out;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: var(--gradient-mint);
  top: 30%;
  right: 25%;
  animation: floatOrb3 18s infinite alternate ease-in-out;
}

.orb-4 {
  width: 300px;
  height: 300px;
  background: var(--gradient-rose);
  top: 10%;
  left: -50px;
  animation: floatOrb4 22s infinite alternate ease-in-out;
}

/* Animations for orbs */
@keyframes floatOrb1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-100px, 80px) scale(1.1);
  }
}

@keyframes floatOrb2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(80px, -90px) scale(0.95);
  }
}

@keyframes floatOrb3 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-70px, -50px) scale(1.15);
  }
}

@keyframes floatOrb4 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(60px, 60px) scale(0.9);
  }
}

/* Subtle technological grid pattern overlay */
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 2;
  mask-image: radial-gradient(circle at 60% 50%, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at 60% 50%, black 30%, transparent 85%);
}

/* Hero Content Grid (Asymmetrical Layout) */
.hero-content {
  position: relative;
  z-index: 3;
}

/* Left Side Content */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  color: var(--color-on-dark);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
}

.hero-tag::before {
  content: '';
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gradient-mint);
  border-radius: var(--rounded-full);
  box-shadow: 0 0 10px var(--gradient-mint);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--color-on-dark);
  margin-bottom: 28px;
  max-width: 580px;
}

/* Responsive heading text sizes matching DESIGN.md with modern tweaks */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 44px;
    letter-spacing: -1px;
    margin-bottom: 20px;
  }
}

.hero-title span {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 30%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span.accent {
  background: linear-gradient(135deg, var(--gradient-mint) 0%, var(--gradient-lavender) 50%, var(--gradient-peach) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShift 12s infinite alternate ease-in-out;
}

@keyframes textShift {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(45deg);
  }
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-on-dark-soft);
  margin-bottom: 40px;
  max-width: 480px;
  font-weight: 400;
  letter-spacing: 0.16px;
}

@media (max-width: 768px) {
  .hero-desc {
    font-size: 15px;
    margin-bottom: 28px;
  }
}

/* Buttons System */
.cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* White filled primary button */
.btn-premium-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  height: 52px;
  padding: 0 8px 0 24px;
  /* Room for the circular icon */
  border-radius: var(--rounded-pill);
  border: 1px solid #ffffff;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-premium-primary .btn-text {
  margin-right: 12px;
  z-index: 2;
}

.btn-premium-primary .btn-circle-icon {
  width: 36px;
  height: 36px;
  background-color: var(--color-ink);
  color: #ffffff;
  border-radius: var(--rounded-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 2;
}

.btn-premium-primary .btn-circle-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Primary Button Hover Actions */
.btn-premium-primary:hover {
  background-color: #ffffff;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-premium-primary:hover .btn-circle-icon {
  transform: scale(1.05);
}

.btn-premium-primary:hover .btn-circle-icon svg {
  transform: translate(2px, -2px) rotate(-45deg);
}

/* Secondary outline button */
.btn-premium-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-on-dark);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--rounded-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}

.btn-premium-outline:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Right Side - Slider Container */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 480px;
}

@media (max-width: 991px) {
  .hero-right {
    min-height: 400px;
    margin-top: 48px;
  }
}

/* Overlapping Slider Track */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 400px;
  perspective: 1000px;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

/* Premium Floating Cards */
.slide-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 360px;
  border-radius: var(--rounded-xxl);
  padding: 28px;
  background: rgba(28, 25, 23, 0.45);
  /* Transparent Surface Dark Elevated */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  user-select: none;
  cursor: grab;
  transition: var(--transition-card);
}

.slide-card:active {
  cursor: grabbing;
}

/* Glassmorphism gradient orb inside card (Atmospheric branding) */
.slide-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 200px;
  height: 200px;
  border-radius: var(--rounded-full);
  filter: blur(40px);
  opacity: 0.15;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Custom card themes using atmospheric gradients */
.slide-card[data-theme="mint"]::before {
  background: var(--gradient-mint);
}

.slide-card[data-theme="peach"]::before {
  background: var(--gradient-peach);
}

.slide-card[data-theme="lavender"]::before {
  background: var(--gradient-lavender);
}

.slide-card[data-theme="sky"]::before {
  background: var(--gradient-sky);
}

/* Card components */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
}

.card-category {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-on-dark-soft);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: var(--rounded-pill);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--rounded-full);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 16px;
}

/* Card central visual graphics built in CSS */
.card-graphic {
  position: relative;
  width: 100%;
  height: 120px;
  margin: 16px 0;
  border-radius: var(--rounded-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-graphic-bg {
  position: absolute;
  width: 120%;
  height: 120%;
  opacity: 0.15;
  filter: blur(15px);
  background-size: cover;
  transition: opacity 0.5s ease;
}

.slide-card[data-theme="mint"] .card-graphic-bg {
  background-image: radial-gradient(circle, var(--gradient-mint), transparent);
}

.slide-card[data-theme="peach"] .card-graphic-bg {
  background-image: radial-gradient(circle, var(--gradient-peach), transparent);
}

.slide-card[data-theme="lavender"] .card-graphic-bg {
  background-image: radial-gradient(circle, var(--gradient-lavender), transparent);
}

.slide-card[data-theme="sky"] .card-graphic-bg {
  background-image: radial-gradient(circle, var(--gradient-sky), transparent);
}

/* SVG Canvas / Vector lines inside cards */
.card-graphic svg {
  width: 80%;
  height: auto;
  opacity: 0.8;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-footer {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.card-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-on-dark-soft);
  margin-bottom: 0;
  line-height: 1.4;
}

/* Active / Inactive states animations */
.slide-card.inactive {
  pointer-events: none;
}

.slide-card.active {
  z-index: 10;
  opacity: 1;
  filter: blur(0);
}

.slide-card.active:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-4deg) !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.18);
}

.slide-card.active:hover::before {
  opacity: 0.35;
}

.slide-card.active:hover .card-graphic svg {
  transform: scale(1.05);
}

/* Slider Navigation & Progress Line */
.slider-footer {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}

@media (max-width: 991px) {
  .slider-footer {
    position: relative;
    margin-top: 20px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
}

.slider-navigation {
  display: flex;
  gap: 12px;
  align-items: center;
}

.slider-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--rounded-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-arrow-btn:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.slider-arrow-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Bottom Progress Line and Number Count */
.slider-progress-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-grow: 1;
  margin-left: 24px;
}

.slider-counter {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-on-dark-soft);
  min-width: 35px;
}

.slider-counter .active-num {
  color: #ffffff;
  font-weight: 700;
}

.slider-progress-bar {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  flex-grow: 1;
  border-radius: var(--rounded-pill);
  overflow: hidden;
}

.slider-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, var(--gradient-mint), var(--gradient-lavender));
  border-radius: var(--rounded-pill);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Vertical Scroll Down Indicator */
.scroll-indicator-wrap {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 5;
}

@media (max-width: 1024px) {
  .scroll-indicator-wrap {
    display: none;
    /* Hide on smaller screens to maximize layout space */
  }
}

.scroll-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--color-on-dark-soft);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.scroll-line-container {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.scroll-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, var(--gradient-mint), transparent);
  animation: scrollAnim 2s infinite ease-in-out;
}

@keyframes scrollAnim {
  0% {
    transform: translateY(-100%);
  }

  80% {
    transform: translateY(350%);
  }

  100% {
    transform: translateY(350%);
  }
}

/* Premium micro-interactions and transitions */
.hero-tag,
.hero-title,
.hero-desc,
.cta-group {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tag {
  animation-delay: 0.1s;
}

.hero-title {
  animation-delay: 0.2s;
}

.hero-desc {
  animation-delay: 0.3s;
}

.cta-group {
  animation-delay: 0.4s;
}

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

/* ==========================================================================
   Why Choose Us Section - style.css
   ========================================================================== */

.why-choose-us-section {
  /* background-color: #f3f3f3;  */
  padding: 96px 0;
  /* 96px section padding rhythm */
  position: relative;
  overflow: hidden;
  color: var(--color-ink);
}

.why-content-wrap {
  padding-left: 20px;
}

@media (max-width: 991px) {
  .why-content-wrap {
    padding-left: 0;
    margin-top: 32px;
  }
}

.why-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.why-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--color-ink);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .why-title {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
}

.why-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-body);
  margin-bottom: 36px;
  max-width: 520px;
  letter-spacing: 0.16px;
}

.service-highlights {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.service-highlight-card {
  background-color: var(--color-surface-dark-elevated);
  background-image: url(../img/gradient-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 102%;
  border: 0;
  border-radius: 50px;
  padding: 32px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  transition: var(--transition-fast);
  position: relative;
  corner-shape: squircle;
  overflow: hidden;
}

.service-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
}

.service-highlight-label {
  display: inline-block;
  color: var(--color-on-dark-soft);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-highlight-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 12px;
}

.service-highlight-copy {
  color: #f3f3f3;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.home-contact-section {
  padding: 80px 0;
}

.home-contact-section p {
  margin-bottom: 0;
}


@media (max-width: 768px) {
  .service-highlight-card {
    padding: 24px;
  }
}

/* White filled CTA with black circular arrow */
.btn-light-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  height: 52px;
  padding: 0 8px 0 24px;
  border-radius: var(--rounded-pill);
  border: 1px solid var(--color-hairline-strong);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.btn-light-primary .btn-text {
  margin-right: 12px;
}

.btn-light-primary .btn-circle-icon {
  width: 36px;
  height: 36px;
  background-color: var(--color-ink);
  color: #ffffff;
  border-radius: var(--rounded-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-light-primary .btn-circle-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Button Hover states */
.btn-light-primary:hover {
  background-color: #ffffff;
  border-color: var(--color-ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
  color: var(--color-ink);
}

.btn-light-primary:hover .btn-circle-icon svg {
  transform: translate(2px, -2px) rotate(-45deg);
}

/* Image Container Styles */
.why-image-container {
  position: relative;
  border-radius: 50px;
  corner-shape: squircle;
  /* 28px+ rounded corners */
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
  /* aspect-ratio: 4 / 3.4; */
  width: 100%;
}





.why-img,
.why-video,
.why-video-poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-video-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0s, visibility 0s;
}

.why-video {
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0s;
}

.why-image-container--playing .why-video-poster {
  opacity: 0;
  visibility: hidden;
}

.why-image-container--playing .why-video {
  opacity: 1;
}

.why-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.15));
  pointer-events: none;
}

.why-image-container:hover .why-img,
.why-image-container:hover .why-video,
.why-image-container:hover .why-video-poster {
  transform: scale(1.04);
}

/* Bottom Metric Cards */
.why-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.015);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  height: 100%;
  transition: var(--transition-card);
  position: relative;
}

@media (max-width: 768px) {
  .why-card {
    padding: 32px;
    min-height: 360px;
  }
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.04);
  border-color: var(--color-hairline-strong);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.stat-wrap {
  display: flex;
  align-items: baseline;
  color: var(--color-ink);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-ink);
  margin-left: 2px;
}

/* Badge overlay inside card */
.growth-badge {
  background-color: rgba(167, 229, 211, 0.35);
  /* Soft light mint overlay */
  color: #0f5132;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--rounded-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.growth-badge svg {
  transform: translateY(-1px);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-muted);
  background: #f5f5f5;
  padding: 6px 14px;
  border-radius: var(--rounded-pill);
}

/* Dashboard Visuals Area */
.why-card-visual {
  height: 80px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

/* Card 1 Line Graph Animation */
.growth-line-svg {
  overflow: visible;
}

.graph-path {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.growth-line-svg.animate .graph-path {
  stroke-dashoffset: 0;
}

.graph-point {
  transform: scale(0);
  transform-origin: 190px 10px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s;
}

.growth-line-svg.animate .graph-point {
  transform: scale(1);
}

/* Card 2 Vertical Bar Chart */
.bar-chart-container {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 100%;
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-hairline-soft);
}

.chart-bar {
  flex-grow: 1;
  max-width: 24px;
  background-color: var(--color-hairline);
  border-radius: 4px 4px 0 0;
  height: 0;
  transition: height 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.chart-bar.active {
  background-color: var(--color-ink);
  /* Highlighted active dark bar */
}

/* Card 3 Avatar List */
.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--rounded-full);
  border: 2px solid #ffffff;
  margin-right: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.avatar-circle.plus-more {
  background-color: var(--color-ink);
  color: #ffffff;
  font-size: 12px;
}

/* Card Footer Content */
.card-bottom {
  position: relative;
  width: 100%;
}

.card-headline {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.card-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-body);
  margin-bottom: 0;
}

.card-index {
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: rgba(12, 10, 9, 0.025);
  /* Muted layout index indicator */
  user-select: none;
}

/* Intersection Scroll Reveal System */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Selected Work Showcase - style.css
   ========================================================================== */

.project-showcase-section {
  /* background-color: var(--color-canvas); */
  /* ElevenLabs Canvas #f5f5f5 */
  padding: 96px 0;
  /* Spacing rhythm */
  color: var(--color-ink);
  position: relative;

}

.showcase-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.showcase-title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--color-ink);
  margin-bottom: 0;
}

.whatsapp-link {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

@media (max-width: 768px) {
  .showcase-title {
    font-size: 40px;
    letter-spacing: -1px;
  }
}

.showcase-count {
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  color: var(--color-muted);
  font-weight: 500;
}

.showcase-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-body);
  margin-top: 16px;
  max-width: 520px;
  letter-spacing: 0.16px;
}

.stacking-deck {
  position: relative;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 
.project-card {
  position: sticky;
  top: 120px;
  width: 100%;
  max-width: 1300px;
  height: 560px;
  border-radius: var(--rounded-xxxl);
  overflow: hidden;
  background-color: var(--color-ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s ease,
    filter 0.6s ease;
  transform-origin: top center;
}

.project-card:hover {
  cursor: none;
} */

.project-card-small-img {
  height: 300px;
  width: 500px;
  object-fit: cover;
}

.project-card-small-img img {
  border-radius: 20px;
}

.project-card-big-img img {
  border-radius: 20px;
}

.project-card-big-img {
  height: 500px;
  width: 600px;
  object-fit: cover;
}

.project-card-small-text h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.project-card-big-text h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.project-card-big-text p {
  margin-bottom: 0;
}

.project-card-small-text p {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .project-card {
    height: 480px;
    margin-bottom: 80px;
  }

  .project-card:hover {
    cursor: auto;
    /* Fallback on mobile/tablet */
  }
}

@media (max-width: 768px) {
  .project-card {
    height: 420px;
    border-radius: var(--rounded-xxl);
    margin-bottom: 60px;
  }
}

/* Dark wavy carbon structure */
.card-bg-mesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.01) 25%, transparent 25%) -10px 0,
    linear-gradient(225deg, rgba(255, 255, 255, 0.01) 25%, transparent 25%) -10px 0,
    linear-gradient(45deg, rgba(255, 255, 255, 0.01) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.01) 25%, transparent 25%),
    radial-gradient(circle at 20% 30%, rgba(200, 184, 224, 0.12), transparent 50%),
    /* Atmospheric lavender */
    radial-gradient(circle at 80% 70%, rgba(167, 229, 211, 0.08), transparent 50%),
    /* Atmospheric mint */
    var(--color-surface-dark);
  /* Ink deep background */
  background-size: 20px 20px, 20px 20px, 20px 20px, 20px 20px, 100% 100%, 100% 100%, 100% 100%;
  pointer-events: none;
}

/* Inner Frosted Glass Card */
.inner-glass-card {
  position: absolute;
  top: 48px;
  left: 48px;
  right: 48px;
  bottom: 48px;
  z-index: 2;
  border-radius: var(--rounded-xxl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 25px 60px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .inner-glass-card {
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 24px;
    border-radius: var(--rounded-xl);
  }
}

.inner-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  /* Dark integrated portrait feel */
  z-index: 1;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  filter: grayscale(10%) contrast(105%);
}

.project-card:hover .inner-card-img {
  transform: scale(1.05);
  opacity: 0.55;
}

.inner-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(12, 10, 9, 0.95) 15%, rgba(12, 10, 9, 0.45) 55%, transparent 100%);
  pointer-events: none;
}

.inner-card-content {
  position: relative;
  z-index: 3;
  padding: 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .inner-card-content {
    padding: 24px;
  }
}

.card-wordmark {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -2px;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .card-wordmark {
    font-size: 38px;
  }
}

.inner-card-footer {
  width: 100%;
}

.project-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.meta-tag {
  color: var(--gradient-mint);
  text-shadow: 0 0 10px rgba(167, 229, 211, 0.3);
}

.meta-separator {
  color: rgba(255, 255, 255, 0.2);
}

.meta-loc {
  color: var(--color-on-dark-soft);
}

.project-headline {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  font-weight: 400;
}

@media (max-width: 768px) {
  .project-headline {
    font-size: 13px;
    line-height: 1.4;
  }
}

.btn-read-more {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
  transition: var(--transition-fast);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
}

.btn-read-more:hover {
  color: var(--gradient-mint);
  border-color: var(--gradient-mint);
  text-shadow: 0 0 8px rgba(167, 229, 211, 0.4);
}

/* Custom Cursor floating view badge */
.floating-view-badge {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 20;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Active followers */
.project-card:hover .floating-view-badge {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 991px) {
  .floating-view-badge {
    display: none !important;
    /* Disable mouse badges on touch interfaces */
  }
}

/* ==========================================================================
   Our Services Section - style.css
   ========================================================================== */

.services-section {
  background-color: var(--color-canvas-deep);
  padding: 96px 70px;
  color: #ffffff;
  position: relative;
  border-radius: 50px;
  corner-shape: squircle;
}

.services-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-on-dark-soft);
  margin-bottom: 12px;
}

.services-title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .services-title {
    font-size: 40px;
    letter-spacing: -1px;
  }
}

.services-count {
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  color: var(--color-on-dark-soft);
  font-weight: 500;
}

.services-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
  letter-spacing: 0.16px;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .services-desc {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Stacking Cards */
.services-deck {
  position: relative;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card {
  position: sticky;
  top: 130px;
  /* Sticky anchor limit */
  width: 100%;
  max-width: 1300px;
  height: 480px;
  border-radius: 50px;
  corner-shape: squircle;
  background-color: var(--color-surface-dark-elevated);
  /* Slightly lighter dark card #1c1917 */
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  margin-bottom: 100px;
  /* Overlap scroll depth */
  padding: 48px 64px;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s ease,
    filter 0.6s ease;
  transform-origin: top center;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .service-card {
    height: auto;
    padding: 48px 32px;
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .service-card {
    padding: 32px 24px;
    border-radius: var(--rounded-xxl);
    margin-bottom: 40px;
  }
}

/* Overlapping title typography system */
.service-title-group {
  position: relative;
}

.service-title-stroke {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: -1px;
  display: block;
  line-height: 1;
}

.service-title-solid {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
  margin-top: -24px;
  /* Stack overlap pull */
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {

  .service-title-stroke,
  .service-title-solid {
    font-size: 44px;
  }

  .service-title-solid {
    margin-top: -20px;
  }
}

@media (max-width: 768px) {

  .service-title-stroke,
  .service-title-solid {
    font-size: 32px;
  }

  .service-title-solid {
    margin-top: -14px;
  }
}

/* Service Pills */
.service-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-pill {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-on-dark-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: var(--rounded-pill);
  background: rgba(255, 255, 255, 0.02);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-on-dark-soft);
  max-width: 520px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-text {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Image styling */
.service-image-wrap {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* aspect-ratio: 4 / 3; */
  corner-shape: squircle;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .service-image-wrap {
    margin-top: 16px;
  }
}

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

.service-card:hover .service-img {
  transform: scale(1.04);
}

/* ==========================================================================
   Sticky Bottom Toggle Menu Styles (Glassmorphic & Morphing Capsule)
   ========================================================================== */

.sticky-bottom-menu-wrap {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate3d(-50%, 120px, 0);
  /* Starts off screen */
  z-index: 999;
  border-radius: var(--rounded-pill);
  background: rgba(12, 10, 9, 0.85);
  /* Deep Ink theme */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  height: 52px;
  max-width: 190px;
  /* Collapsed width */
  width: calc(100vw - 48px);
  /* Constraint for smaller sizes */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    max-width 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

/* Slide in from bottom when header is not in viewport */
.sticky-bottom-menu-wrap.visible {
  transform: translate3d(-50%, 0, 0);
}

/* Expanded state on user toggle click */
.sticky-bottom-menu-wrap.expanded {
  max-width: 660px;
  /* Expands dynamically to hold links & CTA */
  background: rgba(12, 10, 9, 0.95);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sticky-bottom-menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Space logo, links, and toggle button */
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0 6px;
}

/* Always Left: Brand Logo Symbol */
.sticky-menu-brand {
  width: 100px;
  /* height: 50px; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  /* Inset slightly inside the capsule */
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-menu-brand img {
  width: 100%;
  height: auto;
  /* filter: brightness(0) invert(1); */
  /* Ensure Cravio brand icon is pure white */
  /* opacity: 0.95; */
}

/* Collapsed Toggle Button (Always Right) */
.sticky-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 0 10px;
  width: 40px;
  height: 40px;
  border-radius: var(--rounded-pill);
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  flex-shrink: 0;
  margin-right: 4px;
  transition: background-color 0.2s ease,
    padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    margin 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Expanded Toggle Button - Turns into a compact circular close button at the end */
.expanded .sticky-menu-toggle {
  padding: 0;
  width: 40px;
  margin-right: 6px;
}

/* Menu Text Label - Hides during expansion */
.sticky-menu-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  max-width: 80px;
  opacity: 1;
  display: inline-block;
  overflow: hidden;
  transition: max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease,
    margin 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.35s ease;
}

.expanded .sticky-menu-label {
  max-width: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Burger to Close Icon Animation */
.sticky-menu-icon {
  width: 14px;
  height: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger-bar {
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: var(--rounded-full);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
}

.expanded .burger-bar.line-1 {
  transform: translateY(4px) rotate(45deg);
}

.expanded .burger-bar.line-2 {
  opacity: 0;
  transform: scaleX(0);
}

.expanded .burger-bar.line-3 {
  transform: translateY(-4px) rotate(-45deg);
}

/* Links & CTA Container (Fades in dynamically) */
.sticky-menu-links-container {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 6px;
  opacity: 0;
  visibility: hidden;
  max-width: 0;
  overflow: hidden;
  transform: translate3d(20px, 0, 0);
  transition: opacity 0.3s ease,
    max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s ease,
    visibility 0s 0.3s;
  width: max-content;
  flex-shrink: 0;
}

.expanded .sticky-menu-links-container {
  opacity: 1;
  visibility: visible;
  max-width: 500px;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.4s ease 0.15s,
    max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s,
    transform 0.4s ease 0.15s,
    visibility 0s;
}

/* Links Layout */
.sticky-menu-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.sticky-link {
  color: var(--color-on-dark-soft);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.sticky-link:hover,
.sticky-link.active {
  color: #ffffff;
}

/* Modern underline sliding micro-animation */
.sticky-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gradient-mint);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-link:hover::after,
.sticky-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* CTA Adaptation inside menu capsule */
.sticky-menu-cta {
  display: flex;
  align-items: center;
}

.sticky-menu-cta .btn-ink-primary.compact {
  height: 38px;
  font-size: 13px;
  padding: 0 4px 0 14px;
  border-radius: var(--rounded-pill);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sticky-menu-cta .btn-ink-primary.compact .btn-text {
  margin-right: 6px;
}

.sticky-menu-cta .btn-ink-primary.compact .btn-circle-icon {
  width: 30px;
  height: 30px;
}

.sticky-menu-cta .btn-ink-primary.compact .btn-circle-icon svg {
  width: 12px;
  height: 12px;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

@media (max-width: 768px) {
  .sticky-bottom-menu-wrap {
    bottom: 16px;
    height: 48px;
  }

  .sticky-menu-toggle {
    height: 36px;
  }

  .sticky-menu-links-container {
    gap: 16px;
  }

  .sticky-menu-links {
    gap: 14px;
  }

  .sticky-link {
    font-size: 13px;
  }

  .sticky-menu-cta .btn-ink-primary.compact {
    height: 34px;
    padding: 0 4px 0 12px;
    font-size: 12px;
  }

  .sticky-menu-cta .btn-ink-primary.compact .btn-circle-icon {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 640px) {
  .sticky-bottom-menu-wrap.expanded {
    max-width: calc(100vw - 32px);
  }

  .sticky-menu-cta {
    display: none;
    /* Hide heavy CTA on mobile sizes to maintain horizontal layout */
  }

  .sticky-menu-links {
    gap: 16px;
    padding-right: 8px;
  }

  /* Hide intermediate links on mobile grids to guarantee fit and premium spacing */
  .sticky-menu-links li:nth-child(2),
  /* Services */
  .sticky-menu-links li:nth-child(4)

  /* About */
    {
    display: none;
  }
}

/* ==========================================================================
   Premium Underline Drawing Hover Effect (DrawSVG)
   ========================================================================== */

.text-draw {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none !important;
  position: relative;
  cursor: pointer;
}

.text-draw__p {
  font-family: var(--font-body);
  color: var(--color-ink);
  margin: 0;
  transition: opacity 0.3s ease;
}

.text-draw__box {
  width: 100%;
  height: 12px;
  position: relative;
  margin-top: -2px;
  /* Moves the drawing line closer to the text */
  pointer-events: none;
}

.text-draw__box-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: visible !important;
}

/* See our process button styling */
.process-btn {
  margin-top: 32px !important;
}

.process-btn .text-draw__p {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-ink);
}

.process-btn .text-draw__box {
  color: var(--color-primary);
  /* Dark ink stroke */
  height: 14px;
  margin-top: -1px;
}

/* Project Explore button styling */
.project-card-btn {
  margin-top: 14px !important;
  margin-bottom: 4px;
}

.project-card-btn .text-draw__p {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-body-strong);
  transition: color 0.3s ease;
}

.project-card-btn .text-draw__box {
  color: #0c0a09;
  /* Use beautiful branding peach color for the underline stroke */
  height: 10px;
  margin-top: -2px;
  opacity: 0.85;
}

.project-card-btn:hover .text-draw__p {
  color: var(--color-ink);
}

/* Kinetic Arrow styling & transitions */
.text-draw__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-draw__arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.text-draw:hover .text-draw__arrow {
  transform: translate3d(4px, 0, 0);
}

/* ==========================================================================
   Premium Collaborative Interactive Footer (GSAP Mouse Physics Enabled)
   ========================================================================== */

.footer-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 96px 0 48px 0;
  z-index: 10;
  background-color: #fff7e4;
  /* Warm brand canvas background */
  background-image: linear-gradient(var(--bg-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--bg-grid) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Enable pointer events on the footer section but let background images float behind */
.footer-section.codrops_mwg {
  height: auto;
  /* Fit content vertically, override full height */
  min-height: 80vh;
}

.footer-content-wrap {
  position: relative;
  z-index: 10;
  /* Ensure content is on top of falling images */
  pointer-events: auto;
}

.footer-tag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-muted);
}

.footer-talk-title {
  font-family: var(--font-display);
  font-size: min(80px, 8vw);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--color-ink);
  margin-top: 12px;
  margin-bottom: 0;
}

/* Falling bouncing images styles */
.footer-section img {
  width: 12vw;
  height: 12vw;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: 8px;
  z-index: 1;
  /* Sits behind content */
  pointer-events: none;
  /* Crucial: clicks pass straight through to links! */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-section .medias img {
  width: 1px;
  height: 1px;
  top: 0;
  left: 0;
  position: absolute;
  visibility: hidden;
  pointer-events: none;
}

/* Columns styles */
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 24px;
  display: block;
}

.footer-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-link {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-body-strong);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-col-link:hover {
  color: var(--color-ink);
  transform: translate3d(4px, 0, 0);
}

.footer-contact-primary {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-ink);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  transition: opacity 0.2s ease;
  word-break: break-all;
}

.footer-contact-primary:hover {
  opacity: 0.8;
}

.footer-contact-phone {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-muted);
  display: block;
}

/* Ecosystem Rows */
.footer-ecosystem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.ecosystem-item {
  border-bottom: 1px solid var(--color-hairline-strong);
}

.ecosystem-item:first-child {
  border-top: 1px solid var(--color-hairline-strong);
}

.ecosystem-link {
  display: flex;
  align-items: center;
  padding: 14px 0;
  text-decoration: none;
  color: var(--color-body-strong);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.ecosystem-link:hover {
  color: var(--color-ink);
  padding-left: 8px;
}

.eco-num {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-muted);
  width: 48px;
  display: inline-block;
}

.eco-name {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  flex-grow: 1;
}

.eco-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.eco-arrow svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.ecosystem-link:hover .eco-arrow {
  transform: translate3d(3px, -3px, 0);
}

/* Bottom Hairline section */
.footer-bottom-hairline {
  border-top: 1px solid var(--color-hairline);
  margin-top: 64px;
  padding-top: 24px;
}

.footer-copy,
.footer-design-credit {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .footer-section {
    padding: 64px 0 32px 0;
  }

  .footer-talk-title {
    font-size: 56px;
  }

  .footer-col-link {
    font-size: 18px;
  }

  .footer-contact-primary {
    font-size: 20px;
  }

  .footer-bottom-hairline {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start !important;
  }

  .footer-section img {
    width: 25vw;
    height: 25vw;
  }
}