/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 24 2025 | 10:34:18 */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .marquee {
    display: flex;
    white-space: nowrap;
    font-size: 90px;
    font-weight: 600;
    will-change: transform;
  }

  /* 👇 spacing kam kar di gayi hai */
  .marquee span {
    padding: 0 20px;
  }

  /* directions */
  .left { animation: moveLeft linear infinite; }
  .right { animation: moveRight linear infinite; }

  @keyframes moveLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  @keyframes moveRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
  }

  

  @media (max-width: 768px) {
    .marquee { font-size: 40px; }
  }