.moving-text-container {
  width: 100%;
  overflow: hidden;
}

.moving-text {
  display: inline-block;
  padding-left: 100%; /* Start off-screen to the right */
  animation: marquee 19.5s linear infinite; /* 30% slower animation (15s * 1.3 = 19.5s) */
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%); /* Move to the left */
  }
}

.moving-text-features {
  animation-delay: 400ms; /* Delay animation to start after feature cards fade in */
}

.moving-text-gallery {
  animation-delay: 400ms; /* Delay animation to start after gallery images fade in */
}
