/*------------------------------------------------------***Style for Dev 2***------------------------------------------------------*/
/* Seamless loop: we will have two identical <p> nodes in the belt */
@keyframes txt-marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* -50% works with 2 copies */
}

/* Mobile: slow it down a bit for readability */
@media (max-width: 768px){
  .txt-animation-1 .elementor-widget-container{ animation-duration: 28s; }
  .txt-animation-1 p{ line-height: 1.05;padding-bottom:40px; }
}

@media (prefers-reduced-motion: reduce){
  .txt-animation-1 .elementor-widget-container{ animation: none; }
}