.navbar {
  opacity: 0;
  transition: none !important;

}

.gsap_split_word {
  will-change: transform;
}

#left-comet {
  transform: scale(0.5);
  opacity: 0;
  will-change: transform, opacity, filter;
}

#right-comet {
  transform: scale(0.5);
  opacity: 0;
  will-change: transform, opacity, filter;
}

.home_hero_grid-left>*,
.div-block-57 {
  opacity: 0;
  will-change: transform, opacity;
}

/* Force CSS animation to work */
.clients-slider {
  overflow: hidden !important;
  width: 100% !important;
  position: relative !important;
  mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.clients-slider .splide__track {
  overflow: visible !important;
  width: 100% !important;
}

.clients-slider .splide__list {
  display: flex !important;
  gap: 6rem !important;
  width: max-content !important;
  animation: moveSlides 40s linear infinite !important;
  animation-play-state: running !important;
}

.clients-slider .splide__slide {
  flex-shrink: 0 !important;
  width: auto !important;
  margin: 0 !important;
}

@keyframes moveSlides {
  0% {
    transform: translateX(0);
  }

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

/* Test animation - remove this after it works */
.test-moving {
  animation: testMove 5s linear infinite !important;
}

@keyframes testMove {
  0% {
    transform: translateX(0);
  }

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

//////////
[set="text-scroll"] {
  max-width: 20ch;
  /* Control line width */
  word-break: break-word;
  /* Break long words if needed */
  overflow-wrap: break-word;
  /* Safer wrapping behavior */
  display: inline-block;
  /* Prevent width auto-expansion */
  line-height: 1.2;
}

[set="text-scroll"] .char {
  display: inline-block;
  /* Isolate each character's layout */
  will-change: filter;
  /* Hint to browser that filter will change */
  text-shadow: none;
  /* Default state: no glow */
  transition: text-shadow 0.3s ease-out;
}

[set="text-scroll"] .word {
  display: inline-block;
  /* Keeps characters together within word */
}

[set="text-scroll"] .space {
  white-space: pre;
  /* Preserve space characters */
}

/* Optional: Anti-aliasing and text rendering improvements */
[set="text-scroll"] {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
