/*
Theme Name: Stryder Child
Theme URI: https://stryderconsulting.com/
Description: A custom child theme for Stryder Consulting, built for Hello Elementor. Supports custom GSAP animations, ambient particle backgrounds, and custom page transitions.
Author: Antigravity
Author URI: https://google.com/
Template: hello-elementor
Version: 1.1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&display=swap');

/* â”€â”€ GLOBAL & BRAND COLORS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --velocity-red: #E60023;
  --ambitious-black: #212121;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --card-dark: #2a2a2a;
}

html {
  scroll-behavior: smooth;
  transition: background-color 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Light Mode Defaults */
body {
  cursor: none; /* hide default cursor for custom cursor */
  background-color: var(--white);
  color: var(--ambitious-black);
  overflow-x: hidden;
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  padding: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dark Mode Overrides */
html.dark body {
  background-color: var(--ambitious-black);
  color: var(--white);
}

/* Text selection */
::selection {
  background: var(--velocity-red);
  color: var(--white);
}

/* â”€â”€ CUSTOM SCROLLBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  transition: background-color 0.3s;
}
html.dark ::webkit-scrollbar-track {
  background: #111111;
}
::-webkit-scrollbar-thumb {
  background: var(--velocity-red);
}
::-webkit-scrollbar-thumb:hover {
  background: #ff1a3d;
}

/* â”€â”€ CUSTOM CURSOR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--velocity-red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out, background-color 0.3s;
  will-change: transform;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--velocity-red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99996;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
  will-change: transform;
}

@media (max-width: 1024px) {
  .cursor, .cursor-follower {
    display: none !important;
  }
  body {
    cursor: auto !important;
  }
}

/* â”€â”€ PRELOADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--velocity-red);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--velocity-red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* â”€â”€ EXIT OVERLAY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: var(--velocity-red);
  z-index: 99998;
  transform: translateY(100%);
  will-change: transform;
}

/* â”€â”€ MARQUEE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

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

/* â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-sharp {
  border-radius: 9999px; /* Pill shape */
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  cursor: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.btn-sharp:hover {
  transform: scale(1.05) !important;
}

.btn-sharp > * {
  position: relative;
  z-index: 1;
}

/* â”€â”€ BUTTON SLIDING CROSSOVER ANIMATION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-slide .btn-slide-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(0);
}

.btn-slide .btn-slide-text {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(0);
}

.btn-slide:hover .btn-slide-icon {
  transform: translateX(var(--slide-icon-dist, 120px)) !important;
}

.btn-slide:hover .btn-slide-text {
  transform: translateX(var(--slide-text-dist, -37px)) !important;
}

/* Ripple span inside button */
.btn-ripple {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  z-index: 2;
}

/* â”€â”€ NAVBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  transition: border-bottom 0.3s, backdrop-filter 0.3s, background-color 0.3s;
  will-change: transform;
}

html.dark .navbar {
  background: var(--ambitious-black);
}

.navbar.scrolled {
  border-bottom: 2px solid var(--velocity-red);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
}

html.dark .navbar.scrolled {
  background: rgba(33, 33, 33, 0.92);
}

/* Hamburger lines */
.ham-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ambitious-black);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}

html.dark .ham-line {
  background: #ffffff;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transition: background-color 0.3s;
}

html.dark .mobile-menu {
  background: var(--ambitious-black);
}

.mobile-nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--ambitious-black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s;
}

html.dark .mobile-nav-link {
  color: #ffffff;
}

.mobile-nav-link:hover {
  color: var(--velocity-red);
}

/* â”€â”€ HERO WORD SPLIT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.hero-word-inner {
  display: inline-block;
  will-change: transform, opacity;
}

/* â”€â”€ HEADLINE WIPE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.headline-wipe {
  will-change: clip-path, opacity;
}

/* â”€â”€ SERVICE CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.service-card {
  border: 1px solid #e5e7eb;
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background-color 0.3s;
}

html.dark .service-card {
  border: 1px solid #333333;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--velocity-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.card-arrow {
  display: inline-block;
  will-change: transform;
}

/* â”€â”€ CASE STUDY CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.case-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.case-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--velocity-red);
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}

/* â”€â”€ STAT COUNTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stat-counter {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 4.5rem;
  color: var(--velocity-red);
  line-height: 1;
}

/* â”€â”€ FORM FIELDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-field {
  position: relative;
  padding-top: 24px;
  margin-bottom: 32px;
}

.form-label {
  position: absolute;
  top: 28px;
  left: 0;
  color: #9ca3af;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  pointer-events: none;
  transform-origin: left center;
  transition: transform 0.3s, color 0.3s;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #cccccc;
  color: var(--ambitious-black);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  padding: 8px 0;
  outline: none;
  transition: border-bottom-color 0.3s;
}

html.dark .form-input {
  border-bottom: 1px solid #444444;
  color: #ffffff;
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #cccccc;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

html.dark .form-line {
  background: #444444;
}

/* â”€â”€ VALUE SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.value-number-bg {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 8rem;
  color: var(--velocity-red);
  opacity: 0.06;
  top: -10px;
  left: -10px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.value-line {
  display: block;
  height: 1px;
  background: var(--velocity-red);
  margin: 24px 0;
  transform-origin: left;
  will-change: transform;
}

/* â”€â”€ LOGO CHIPS (placeholder for real logos) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100px; /* Balanced height for readability */
  padding: 10px; /* Decreased padding to make brand logos larger and more visible */
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  cursor: default;
  background: var(--white);
}

html.dark .logo-chip {
  border-color: #333333;
  color: #888888;
  background: transparent;
}

.logo-chip:hover {
  border-color: var(--velocity-red);
  color: var(--ambitious-black);
  background: rgba(230, 0, 35, 0.03);
}

html.dark .logo-chip:hover {
  color: #ffffff;
  background: rgba(230, 0, 35, 0.05);
}

/* â”€â”€ FAQ â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-item {
  border: 1px solid #e5e7eb;
  padding: 24px;
  margin-bottom: 16px;
  transition: border-color 0.3s;
}

html.dark .faq-item {
  border: 1px solid #333333;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ambitious-black);
  background: transparent;
  border: none;
  width: 100%;
}

html.dark .faq-question {
  color: #ffffff;
}

.faq-arrow {
  color: var(--velocity-red);
  font-size: 1.5rem;
  flex-shrink: 0;
  will-change: transform;
}

.faq-answer {
  color: #4b5563;
  font-family: 'DM Sans', sans-serif;
  padding-top: 0;
  height: 0;
  overflow: hidden;
  line-height: 1.7;
  will-change: height, padding-top;
}

html.dark .faq-answer {
  color: #9ca3af;
}

/* â”€â”€ PREMIUM MOCKUPS FOR GRID / SERVICES / IMAGES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.premium-bg-gradient {
  background: linear-gradient(135deg, #f9f9f9 0%, #ececec 100%);
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
}

html.dark .premium-bg-gradient {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.premium-bg-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 0, 37, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

html.dark .premium-bg-gradient::before {
  background: radial-gradient(circle, rgba(230, 0, 37, 0.08) 0%, transparent 60%);
}

.service-graphic-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 10rem;
  line-height: 1;
  color: rgba(230, 0, 35, 0.03);
  user-select: none;
  pointer-events: none;
  transition: color 0.3s;
}

html.dark .service-graphic-text {
  color: rgba(230, 0, 35, 0.05);
}

/* â”€â”€ VERTICAL MARQUEE HERO COLUMN â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.vertical-marquee-col {
  display: flex;
  flex-direction: column;
  height: max-content;
}

.vertical-marquee-up {
  animation: verticalMarqueeUp 24s linear infinite;
}

.vertical-marquee-down {
  animation: verticalMarqueeDown 24s linear infinite;
}

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

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

/* Ambient Background Particle Canvas */
.ambient-bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  display: block;
}

/* Make all direct body content wrappers transparent to expose the background animation,
   but keep solid CTA sections opaque to ensure readability */
body > header,
body > section:not(.bg-velocity-red),
body > footer {
  background-color: transparent !important;
}

/* â”€â”€ BRAND STORY CAROUSEL SLIDER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.brand-slide {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.brand-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  position: relative;
}

/* â”€â”€ SERVICES TABS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.services-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.services-tab-btn.active {
  box-shadow: 0 4px 12px rgba(230, 0, 35, 0.2);
}

/* â”€â”€ CLONE PAGE NAV & GENERAL OVERRIDES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.qc-page .navbar {
  background: #ffffff !important;
  border-bottom: 1px solid #eaeaea !important;
}
.qc-page .nav-link {
  color: #212121 !important;
}
.qc-page .nav-link:hover {
  color: #E60023 !important;
}
.qc-page .ham-line {
  background: #212121 !important;
}
.qc-page select.form-input {
  appearance: none;
}

@keyframes bounceSlow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.animate-bounce-slow {
  animation: bounceSlow 3s infinite ease-in-out;
}

/* â”€â”€ POPUP MODALS FOR BRIEF OVERVIEW â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  background-color: #ffffff;
  border-radius: 1rem;
  width: 90%;
  max-width: 56rem;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  
  /* Zoom Out/Default State */
  transform: scale(0.85) translateY(15px);
  opacity: 0;
  
  /* Premium elastic zoom curve */
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  will-change: transform, opacity;
}
.modal-overlay.active .modal-box {
  /* Zoom In/Active State */
  transform: scale(1) translateY(0);
  opacity: 1;
}
.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #E60023;
  color: #ffffff;
  border: none;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 0.25rem;
}
.modal-close-btn:hover {
  background-color: #212121;
}
.modal-body-container {
  background-color: #E60023;
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}
@media (min-width: 768px) {
  .modal-body-container {
    padding: 2rem;
  }
}
.modal-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .modal-card {
    flex-direction: row;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .modal-card-left {
    width: 33.333333%;
  }
  .modal-card-right {
    width: 66.666667%;
  }
}
.modal-card-title {
  color: #E60023;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  margin-top: 0;
}
.modal-card-desc {
  color: #E60023;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

/* â”€â”€ OVERVIEW CARDS ZOOM EFFECT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.overview-card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.overview-card:hover {
  transform: scale(1.06) translateY(-5px) !important;
  box-shadow: 0 20px 40px rgba(230, 0, 35, 0.3) !important;
}
.overview-card svg {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.overview-card:hover svg {
  transform: scale(1.15) rotate(3deg);
}
.overview-card .arrow-icon {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.overview-card:hover .arrow-icon {
  transform: translateX(8px);
}

/* â”€â”€ SERVICES DASHBOARD TABS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-tab-btn.active {
  background-color: #ffffff !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid #eaeaea !important;
}
html.dark .services-tab-btn.active {
  background-color: #2a2a2a !important;
  border-color: #3a3a3a !important;
}
.services-tab-btn.active .tab-label {
  color: #E60023 !important;
}
.services-tab-btn.active .tab-num {
  background-color: #E60023 !important;
  color: #ffffff !important;
}
.services-tab-btn.active .tab-arrow {
  opacity: 1 !important;
}
.services-tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.services-tab-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* â”€â”€ SERVICES DASHBOARD ENHANCEMENTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Hide tab arrow on mobile layout */
@media (max-width: 1023px) {
  .services-tab-btn .tab-arrow {
    display: none !important;
  }
}

/* Timeline step interaction styles */
.timeline-step:hover .step-num-circle {
  background-color: #E60023 !important;
  color: #ffffff !important;
  box-shadow: 0 0 12px rgba(230, 0, 35, 0.4);
}
.timeline-step:hover h4 {
  color: #E60023 !important;
}

.step-num-circle {
  transition: all 0.3s ease;
}


/* ── CUSTOM CURSIVE FONT CLASS ── */
.font-cursive {
  font-family: 'Caveat', cursive !important;
  text-transform: none !important;
}

/* ── ELEMENTOR EDITOR COMPATIBILITY OVERRIDES ────────────────── */
body.elementor-editor-active .preloader,
body.elementor-editor-active .exit-overlay {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.elementor-editor-active .cursor,
body.elementor-editor-active .cursor-follower {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ── MOUSE POINTER FALLBACK ──────────────────────────────────── */
body:not(.has-custom-cursor) {
  cursor: auto !important;
}
body:not(.has-custom-cursor) a,
body:not(.has-custom-cursor) button,
body:not(.has-custom-cursor) [role="button"],
body:not(.has-custom-cursor) .nav-link,
body:not(.has-custom-cursor) .btn-primary {
  cursor: pointer !important;
}
