/* 
   stillLoud CSS Stylesheet (v2 Redesign)
   Theme: Bold, Premium, High Contrast — stillLoud Brand Palette
   Palette: Orange #FB5607 | Purple #8338EC | Dark #212529 | Light #E9ECEF
*/

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

:root {
  /* ========================================
     StillLoud Brand Colors
  ======================================== */

  --color-primary: #8338EC;
  /* Purple */
  --color-secondary: #FB5607;
  /* Orange */

  --color-dark: #212529;
  /* Background */
  --color-dark-2: #2D3136;
  /* Slightly lighter dark */

  --color-light: #E9ECEF;
  /* Main light */
  --color-light-2: #F8F9FA;
  /* Cards */

  --color-white: #FFFFFF;
  --color-black: #000000;

  --color-gray: #8B8C91;
  --color-gray-light: #C8CDD2;
  --color-gray-dark: #5F6368;

  /* Text */
  --text-primary: #212529;
  --text-secondary: #8B8C91;
  --text-light: #E9ECEF;
  --text-white: #FFFFFF;

  /* Backgrounds */
  --bg-primary: #212529;
  --bg-secondary: #2D3136;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-glass: rgba(255, 255, 255, 0.08);

  /* Borders */
  --border-primary: #8338EC;
  --border-secondary: rgba(233, 236, 239, 0.15);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg,
      #8338EC 0%,
      #A855F7 100%);

  --gradient-orange: linear-gradient(135deg,
      #FB5607 0%,
      #FF7A29 100%);

  --gradient-dark: linear-gradient(180deg,
      #212529 0%,
      #2D3136 100%);

  /* Shadows */
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, .15);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, .25);
  --shadow-purple: 0 0 30px rgba(131, 56, 236, .35);
  --shadow-orange: 0 0 30px rgba(251, 86, 7, .35);

  /* Fonts */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Manrope', sans-serif;

  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 50px;

  /* Borders */
  --border-thin: 1.5px solid var(--border-primary);
  --border-thick: 2px solid var(--color-light);

  /* Animation */
  --transition-smooth: all .35s cubic-bezier(.25, .8, .25, 1);
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.05;
}

p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
}

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

.highlight-red {
  color: var(--color-primary);
}

/* Global Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1.5px solid transparent;
  gap: 10px;
}

.btn-pill-red {
  background-color: var(--color-secondary);
  color: var(--color-white);
  box-shadow: var(--shadow-orange);
}

.btn-pill-red:hover {
  transform: translateY(-3px) scale(1.02);
  background-color: var(--color-white);
  color: var(--color-secondary);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

/* Floating Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-orange);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-white);
  color: var(--color-secondary);
  transform: translateY(-5px);
}

/* Eyebrows with bullets */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gray);
  margin-bottom: 20px;
}

.bullet-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  display: inline-block;
}

/* 1. Navbar & Hero Section Wrapper (Light Card) */
.top-hero-card {
  background-color: var(--color-light);
  border: 1.5px solid var(--border-secondary);
  border-radius: 36px;
  margin: 24px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.top-hero-card .grid-overlay {
  opacity: 0.6;
  z-index: 1;
}

/* ========================================
   Premium Navbar — Redesigned Layout
   ======================================== */

/* Slide-in animation */
@keyframes navbarSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

/* Staggered link fade-up */
@keyframes navLinkFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

/* Sticky Navbar Styles */
.navbar-wrapper {
  position: sticky;
  top: 10px;
  z-index: 1000;
  width: 100%;
  animation: navbarSlideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.navbar {
  background-color: var(--color-dark);
  border-radius: 999px;
  padding: 14px 20px 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
  gap: 12px;
}

/* Brand Logo (Far Left) */
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-left: 8px;
  text-decoration: none;
  z-index: 1001;
  position: relative;
}

.nav-logo {
  display: block;
  height: 46px;
  width: auto;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, width 0.4s ease;
}

.desktop-logo {
  opacity: 1;
}

.mobile-logo {
  position: absolute;
  left: 8px;
  opacity: 0;
  pointer-events: none;
}

.nav-brand:hover .nav-logo {
  transform: scale(1.08);
}

/* Navigation Links */
.nav-container {
  display: flex;
  align-items: center;
}

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

.nav-links li {
  animation: navLinkFadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.nav-links li:nth-child(1) {
  animation-delay: 0.15s;
}

.nav-links li:nth-child(2) {
  animation-delay: 0.22s;
}

.nav-links li:nth-child(3) {
  animation-delay: 0.29s;
}

.nav-links li:nth-child(4) {
  animation-delay: 0.36s;
}

.nav-links li:nth-child(5) {
  animation-delay: 0.43s;
}

.nav-links li:nth-child(6) {
  animation-delay: 0.50s;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-white);
  text-transform: uppercase;
  padding: 8px 2px;
  position: relative;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: var(--gradient-orange);
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

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

.nav-links a:hover {
  color: var(--color-secondary);
  transform: translateY(-2px);
}

.nav-links a.active {
  color: var(--color-secondary);
}

/* CTA Button (Far Right) */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-orange);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 999px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 12px rgba(251, 86, 7, 0.25);
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(251, 86, 7, 0.45);
}

.nav-cta i {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}

.nav-cta:hover i {
  transform: translateX(3px);
}

.nav-spacer {
  display: none;
}

/* Hamburger button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 18px;
  position: relative;
  z-index: 1002;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-light);
  position: absolute;
  left: 0;
  transition: var(--transition-smooth);
}

.mobile-menu-btn span:nth-child(1) {
  top: 0;
}

.mobile-menu-btn span:nth-child(2) {
  top: 8px;
}

.mobile-menu-btn span:nth-child(3) {
  top: 16px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
  background-color: var(--color-light);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
  background-color: var(--color-light);
}

/* Hero Section */
.hero-section {
  padding: 64px 40px;
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.join-us-btn {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-orange);
}

.join-us-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 86, 7, 0.4);
}

.hero-headline {
  font-size: clamp(3.2rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  margin-bottom: 36px;
}

.hero-headline span {
  display: block;
}

.hero-headline .highlight-dark {
  color: var(--color-dark);
}

.hero-actions-pill {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  border-radius: 40px;
  padding: 2px;
  box-shadow: var(--shadow-orange);
  transition: var(--transition-smooth);
}

.hero-actions-pill:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(251, 86, 7, 0.4);
}

.btn-portfolio-pill {
  background-color: var(--color-white);
  color: var(--color-dark);
  border-radius: 50px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.btn-contact-pill {
  background-color: transparent;
  color: var(--color-white);
  border-radius: 50px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.btn-portfolio-pill:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.btn-contact-pill:hover {
  color: var(--color-light);
}

.hero-right {
  display: flex;
  justify-content: center;
}

.hero-graphic-container {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  position: relative;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(131, 86, 236, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 86, 236, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

/* Hero Graphic */
@keyframes click-float {
  0%, 100% { transform: translateX(0) scale(1); }
  25% { transform: translateX(-30px) scale(1.05); }
  75% { transform: translateX(30px) scale(1.05); }
}

.hero-illustration-img {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: auto;
  z-index: 2;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 15px 35px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
  cursor: pointer;
}

.hero-illustration-img:hover {
  transform: scale(1.03);
}

.hero-illustration-img.animate-click {
  animation: click-float 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Common Section Layout */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 2. About Section */
.about-section {
  /* Background color overridden by wrapper below */
  color: var(--color-white);
  padding: 100px 0;
}

/* ========================================
   Continuous Premium Background Wrapper
   Spans from About to Pricing Sections
======================================== */
.premium-bg-wrapper {
  position: relative;
  background-color: var(--color-dark);
}

/* Make inner sections transparent so the wrapper BG shows through */
.premium-bg-wrapper .about-section,
.premium-bg-wrapper .services-section,
.premium-bg-wrapper .portfolio-section,
.premium-bg-wrapper .testimonials-section,
.premium-bg-wrapper .marquee-section,
.premium-bg-wrapper .pricing-section {
  background-color: transparent;
  position: relative;
  z-index: 2;
  /* Content sits above the background layers */
}

/* ── Continuous BG: SVG decorative layer ── */
.premium-bg-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  /* BG only.svg as background */
  background-image: url('/v2/assets/BG_only.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  /* Creates parallax/seamless canvas effect */
  opacity: 10;
  /* 10% — very subtle */
  pointer-events: none;
  z-index: 0;
}

/* ── Continuous BG: atmosphere / depth overlay layer ── */
.premium-bg-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    /* Large soft radial purple glow — top right */
    radial-gradient(ellipse 70% 30% at 80% 5%, rgba(131, 56, 236, 0.08) 0%, transparent 70%),
    /* Mid-section orange accent glow — left side */
    radial-gradient(ellipse 60% 25% at 5% 45%, rgba(251, 86, 7, 0.05) 0%, transparent 65%),
    /* Lower purple glow — bottom right */
    radial-gradient(ellipse 70% 25% at 90% 85%, rgba(131, 56, 236, 0.06) 0%, transparent 70%),
    /* Subtle center bloom for depth */
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(131, 56, 236, 0.03) 0%, transparent 75%),
    /* Vignette: dark edges draw eye to center content */
    radial-gradient(ellipse 120% 110% at 50% 50%, transparent 45%, rgba(0, 0, 0, 0.35) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.visuals-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.col-left {
  margin-top: 40px;
}

.col-right {
  margin-bottom: 40px;
}

.about-img-card {
  border-radius: 24px;
  border: 1.5px solid var(--border-secondary);
  overflow: hidden;
  height: 360px;
  box-shadow: var(--shadow-sm);
}

.about-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(10%) contrast(105%);
  transition: var(--transition-smooth);
}

.about-img-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(100%);
}

.about-stat-card {
  background-color: var(--color-dark);
  border: 1.5px solid var(--border-secondary);
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 160px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.about-stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
}

.about-stat-card h3 {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 8px;
}

.about-stat-card p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gray);
  letter-spacing: 0.05em;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-description {
  color: var(--color-light);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 36px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  width: 100%;
}

.about-feature-card {
  background-color: var(--color-dark);
  border: 1.5px solid var(--border-secondary);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.about-feature-card:hover {
  border-color: var(--color-secondary);
  transform: translateY(-3px);
}

.feature-icon-wrapper {
  color: var(--color-secondary);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.about-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
}

.about-feature-card p {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-light);
  line-height: 1.4;
}

/* 3. Services Section */
.services-section {
  background-color: var(--color-dark);
  padding: 100px 0;
  border-top: 1px solid rgba(233, 236, 239, 0.15);
}

.services-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.75fr;
  gap: 40px;
  align-items: stretch;
}

.services-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.services-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 32px;
}

.services-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
  width: 100%;
}

.service-pill {
  /* Reset button defaults */
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--bg-card);
  border: 1.5px solid var(--border-secondary);
  color: var(--color-white);
  padding: 18px 28px;
  border-radius: 18px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  cursor: pointer;
  width: 100%;
  min-height: 64px;
  text-align: left;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
  position: relative;
  overflow: hidden;
}

.service-pill i {
  color: var(--color-secondary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.service-pill:hover {
  background-color: rgba(251, 86, 7, 0.08);
  border-color: var(--color-secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(251, 86, 7, 0.25), 0 0 0 1px var(--color-secondary);
  color: var(--color-white);
}

.service-pill:hover i {
  color: var(--color-secondary);
  transform: scale(1.15);
}

.service-pill:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 14px rgba(251, 86, 7, 0.2);
  transition: all 0.1s ease;
}

.service-pill.active,
.service-pill:focus-visible {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  box-shadow: 0 8px 28px rgba(251, 86, 7, 0.35);
  outline: none;
}

.service-pill.active i,
.service-pill:focus-visible i {
  color: var(--color-white);
}

.services-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.puzzle-card {
  background-color: var(--color-primary);
  border: 1.5px solid var(--border-primary);
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  max-height: 390px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.puzzle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

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

.services-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: center;
}

.projects-delivered-card {
  background-color: var(--color-dark);
  border: 1.5px solid var(--border-secondary);
  border-radius: 24px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-height: 160px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.projects-delivered-card:hover {
  border-color: var(--color-primary);
}

.projects-delivered-card h3 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 6px;
}

.projects-delivered-card p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gray);
  letter-spacing: 0.05em;
}

.services-list-card {
  background: var(--gradient-primary);
  border: 1.5px solid var(--color-primary);
  border-radius: 24px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-purple);
  position: relative;
  transition: var(--transition-smooth);
}

.services-list-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(131, 56, 236, 0.45);
}

.services-list-header {
  display: flex;
  justify-content: flex-end;
}

.services-arrow-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 1rem;
  backdrop-filter: blur(4px);
  transition: var(--transition-smooth);
}

.services-arrow-btn:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  transform: scale(1.08);
}

.services-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-bullet-list li {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.red-bullet {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
}

/* 4. Portfolio Section */
.portfolio-section {
  background-color: var(--color-dark);
  padding: 100px 0;
  border-top: 1px solid rgba(233, 236, 239, 0.15);
}

.portfolio-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 48px;
}

.portfolio-subtitle {
  color: var(--color-light);
  max-width: 600px;
  font-size: 1.05rem;
}

.portfolio-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: 100%;
}

.portfolio-card {
  background-color: var(--color-primary);
  border: 1.5px solid var(--border-primary);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-purple);
}

.portfolio-card-img {
  width: 100%;
  /* aspect-ratio: 16/10; */
  /* overflow: hidden; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: var(--color-primary); */
}

.portfolio-card-img img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: block;
  /* transition: var(--transition-smooth); */
}

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

/* Navigation Arrow Overlaps */
.carousel-nav-btn {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-dark);
  border: 1.5px solid var(--border-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: var(--transition-smooth);
}

.carousel-nav-btn:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
  transform: scale(1.1);
}

.prev-btn {
  left: -30px;
}

.next-btn {
  right: -30px;
}

.portfolio-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1.5px solid rgba(233, 236, 239, 0.15);
  padding-top: 40px;
}

.portfolio-footer-title {
  font-size: 1.8rem;
  font-weight: 800;
}

.red-dot {
  display: inline-block;
  font-size: 1.2rem;
  margin-left: 4px;
  color: var(--color-secondary);
}

.btn-explore-more {
  background-color: var(--color-white);
  color: var(--color-dark);
  border: 1.5px solid var(--border-secondary);
}

.btn-explore-more:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

/* 5. Testimonials Section */
.testimonials-section {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section .grid-overlay {
  opacity: 0.4;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.testimonials-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--color-white);
}

.testimonials-subtitle {
  font-size: 1.05rem;
  color: var(--color-gray-light);
  max-width: 500px;
  margin: 0 auto;
}

/* ── Carousel Shell ── */
.testimonials-carousel-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Viewport: clips the overflowing track */
.testimonials-viewport {
  overflow: hidden;
  flex: 1;
  /* edge fade on both sides */
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
}

/* Track: moves via JS translateX */
.testimonials-track {
  display: flex;
  gap: 28px;
  padding: 20px 0;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── Cards ── */
.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  /* 3-up on desktop */
  background-color: #222222;
  /* Dark gray background */
  color: #ffffff;
  border-radius: 32px;
  /* Extra rounded corners */
  border: 4px solid #7c3aed;
  /* Thick purple border */
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

/* Hover State - mimics the purple center card in your image */
.testimonial-card:hover {
  transform: translateY(-6px);
  background-color: #7c3aed;
  /* Bright purple fill */
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.3);
}

/* Card Header: Wrapper for Author Info + Stars */
.testimonial-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

/* Left side: Logo & Author Name */
.author-info-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Circular Logo Container */
.logo-container {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #ffffff;
  /* White background for transparent logos */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.t-company-logo {
  height: 100%;
  width: 100%;
  object-fit: cover;
  /* Ensures logo fills the circle */
}

/* Author Details (Moved to Top) */
.author-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.author-details p {
  font-size: 0.85rem;
  color: #ff5e00;
  /* Vibrant orange/red color */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  font-weight: 600;
}

/* Dark Pill Stars Badge */
.stars-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #1a1a1a;
  /* Dark inner pill */
  padding: 6px 6px 6px 12px;
  border-radius: 50px;
}

/* Adjust badge color slightly when card is purple (hovered) */
.testimonial-card:hover .stars-badge {
  background-color: rgba(0, 0, 0, 0.4);
}

.stars-row {
  color: #facc15;
  /* Bright yellow stars */
  font-size: 0.85rem;
  display: flex;
  gap: 4px;
}

/* White Pill for the "5/5" Text inside the Badge */
.rating-num {
  font-family: var(--font-heading, sans-serif);
  font-size: 0.8rem;
  font-weight: 800;
  color: #000000;
  background-color: #ffffff;
  padding: 4px 10px;
  border-radius: 50px;
}

/* Testimonial Paragraph */
.testimonial-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #e5e5e5;
  margin: 0;
}

/* Make text crisp white on hover/active */
.testimonial-card:hover .testimonial-text {
  color: #ffffff;
}


/* ── Navigation Buttons ── */
.testimonial-nav-btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 0 20px rgba(131, 56, 236, 0.4);
  transition: var(--transition-smooth);
  z-index: 3;
}

.testimonial-nav-btn:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 0 28px rgba(131, 56, 236, 0.55);
  transform: scale(1.08);
}

.testimonial-nav-btn:active {
  transform: scale(0.95);
}

/* ── Dot Indicators ── */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.t-dot.active {
  background-color: var(--color-primary);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(131, 56, 236, 0.6);
}


/* 6. Client Logo Marquee */
.marquee-section {
  background-color: var(--color-dark);
  border-top: 2px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  padding: 30px 0;
  overflow: hidden;
}

.marquee-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  gap: 50px;
  min-width: 100%;
  animation: marquee-scroll 25s linear infinite;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--color-white);
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.marquee-item:hover {
  color: var(--color-secondary);
  transform: scale(1.05);
}

.marquee-dot {
  color: var(--color-secondary);
  font-size: 1.5rem;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* 7. Pricing Section */
.pricing-section {
  background-color: var(--color-dark);
  padding: 100px 0;
}

.pricing-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

.pricing-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  width: 100%;
  height: auto;
  border-radius: 32px;
  border: 4px solid var(--color-primary);
  background-color: #212125;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0;
  -webkit-mask-image: linear-gradient(225deg, transparent 48px, black 49px);
  mask-image: linear-gradient(225deg, transparent 48px, black 49px);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-purple);
}

.pricing-card.active {
  transform: scale(1.05);
  border-color: #f5f5f5;
  z-index: 5;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.active:hover {
  transform: scale(1.06) translateY(-4px);
}

.best-badge {
  position: absolute;
  top: 16px;
  right: 65px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 50px;
  z-index: 10;
}

.pricing-card-header {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 36px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top-left-radius: 28px;
}

.pricing-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.card-starter .pricing-icon,
.card-authority .pricing-icon {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.card-growth .pricing-icon {
  background-color: rgba(131, 56, 236, 0.15);
  color: var(--color-primary);
}

.pricing-card-header h3 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.card-growth .pricing-card-header {
  background-color: #f5f5f5;
  color: var(--color-primary);
}

.card-growth .pricing-card-header h3 {
  color: var(--color-primary);
}

.pricing-subtitle {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.9;
}

.pricing-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 500;
  opacity: 0.9;
}

.card-growth .pricing-desc {
  color: var(--color-primary);
  font-weight: 700;
}

.pricing-card-body {
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: transparent;
  color: #ffffff;
}

.pricing-features-section {
  margin-bottom: 24px;
}

.features-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #a0a0a0;
  margin-bottom: 16px;
}

.features-title span {
  color: var(--color-primary);
  font-weight: 800;
}

.deliverables-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features li {
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li i {
  font-size: 1.15rem;
  width: 24px;
  text-align: center;
}

.custom-list-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-left: 2px;
  margin-right: 2px;
}

.content-features li i {
  color: var(--color-primary);
  font-weight: 400;
  /* For regular icons if any */
}

.deliverables-total {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}

.d-slash {
  font-size: 2.8rem;
  font-weight: 300;
  color: #555;
  line-height: 0.9;
}

.d-count {
  display: flex;
  flex-direction: column;
}

.d-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.d-text {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  font-weight: 700;
}

.includes-features li i.fa-check {
  color: #22c55e;
  /* Green */
}

.includes-features li i.fa-xmark {
  color: #ef4444;
  /* Red */
}

.includes-features li.disabled {
  opacity: 0.9;
}

.btn-pricing-quote {
  width: 100%;
  border-radius: 50px;
  background-color: #fff;
  color: var(--color-secondary);
  font-weight: 800;
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border: none;
  font-size: 1.15rem;
  margin-top: auto;
  transition: transform 0.2s ease;
  text-transform: uppercase;
}

.btn-pricing-quote i {
  font-size: 1.6rem;
}

.btn-pricing-quote:hover {
  transform: scale(1.03);
  color: #e64e05;
  /* slightly darker orange */
}

/* 8. Footer Section */
.footer-section {
  background-color: var(--color-light);
  color: var(--color-dark);
  padding: 80px 0 40px 0;
  border-top: 1.5px solid var(--border-secondary);
}

.footer-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.footer-upper-text h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
}

.btn-hire-us {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 18px 48px;
  font-size: 1.1rem;
  box-shadow: var(--shadow-orange);
}

.btn-hire-us:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(33, 37, 41, 0.25);
}

.footer-divider {
  height: 1.5px;
  background-color: var(--border-secondary);
  margin-bottom: 50px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.brand-bio {
  font-size: 0.95rem;
  color: var(--color-dark);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.footer-social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--color-dark);
  border: 1.5px solid var(--border-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: var(--transition-smooth);
}

.footer-social-links a:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-3px) scale(1.05);
}

.col-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 24px;
}

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

.footer-nav-list a {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.8;
}

.footer-nav-list a:hover {
  color: var(--color-primary);
  opacity: 1;
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-gray);
  letter-spacing: 0.05em;
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-value a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1.5px solid var(--border-secondary);
  padding-top: 30px;
  text-align: center;
}

.copyright-text {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.6;
}