
  /* =========================================
   CORE RESET
========================================= */
body {
  margin: 0;
}

/* =========================================
   ICONS
========================================= */
.icon-bold {
  stroke: currentColor;
  stroke-width: 0.75;
}

/* =========================================
   FADE-IN
========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   FADE-SCALE
========================================= */
.fade-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-scale.show {
  opacity: 1;
  transform: scale(1);
}

/* =========================================
   HERO PARALLAX
========================================= */
.v2-hero-parallax {
  position: fixed;
  top: 65px;
  left: 0;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  z-index: 1;
}

/* =========================================
   HERO BG WRAPPER
========================================= */
.v2-hero-bg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* =========================================
   HERO IMAGES (BASE)
========================================= */
.v2-hero-img {
  position: absolute; /* 🔑 required for parallax movement */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none; /* hide all by default */
  will-change: transform;
}

/* =========================================
   DESKTOP (LG)
========================================= */
.v2-hero-img.img-lg {
  display: block;
}

/* =========================================
   TABLET (MD)
========================================= */
@media (max-width: 991px) {
  .v2-hero-parallax {
    height: 60vh;
  }

  .v2-hero-img {
    display: none;
  }

  .v2-hero-img.img-md {
    display: block;
  }
}

/* =========================================
   MOBILE (SM)
========================================= */
@media (max-width: 767px) {
  .v2-hero-parallax {
    height: 50vh;
  }

  .v2-hero-img {
    display: none;
  }

  .v2-hero-img.img-sm {
    display: block;
  }
}

/* =========================================
   HERO CONTENT
========================================= */
.v2-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 2;
}

/* =========================================
   CONTENT WRAPPER
========================================= */
.v2-content-wrapper {
  position: relative;
  z-index: 2;
  background: #fff;
}

/* =========================================
   LOGO CAROUSEL
========================================= */
.logo-carousel {
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.logo-track img {
  height: 140px;
  opacity: 0.6;
  transition: 0.3s ease;
}

.logo-track img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* =========================================
   STATS CAROUSEL
========================================= */
.stats-carousel {
  overflow: hidden;
}

.stats-track {
  display: flex;
  width: max-content;
  gap: 24px;
  will-change: transform;
}

.stat-card {
  flex: none;
  min-width: 260px;
}

.stat-inner {
  opacity: 0;
  transform: translateY(12px);
  transition: 0.6s ease;
}

.stat-inner.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   MOBILE FIX
========================================= */
@media (max-width: 1279px) {
  .v2-hero-parallax {
    position: relative;
    top: 0;
    height: auto;
    min-height: 70vh;
  }

  .v2-content-wrapper {
    margin-top: 0 !important;
  }
}

