/* logo */
/* Explicit animation styles to ensure they work */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
  
.animate-scroll-left {
    animation: scroll-left 25s linear infinite;
    display: flex;
    width: 200%;
}
  
.animate-scroll-right {
    animation: scroll-right 25s linear infinite;
    display: flex;
    width: 200%;
}
  
.scroll-container {
    overflow: hidden;
    width: 100%;
}
  