  /* Ensure container uses LTR for marquee logic, even if page is RTL */
  .testimonial-container {
      unicode-bidi: embed;
      direction: ltr;
  }

  /* Animation */
  @keyframes marqueeScroll {
      0% {
          transform: translateX(0%);
      }

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

  .marquee-row {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      overflow: hidden;
      position: relative;
  }

  .marquee-inner {
      display: flex;
      min-width: 200%;
      animation: marqueeScroll 25s linear infinite;
      padding: 40px 0 20px 0;
  }

  .marquee-inner.marquee-reverse {
      animation-direction: reverse;
  }

  .marquee-row::before,
  .marquee-row::after {
      content: "";
      position: absolute;
      top: 0;
      width: 80px;
      height: 100%;
      pointer-events: none;
      z-index: 10;
  }

  .marquee-row::before {
      left: 0;
      background: linear-gradient(to right, white, transparent);
  }

  .marquee-row::after {
      right: 0;
      background: linear-gradient(to left, white, transparent);
  }

  .testimonial-card {
      width: 290px;
      padding: 16px;
      margin: 0 16px;
      border-radius: 12px;
      background: #fff;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      flex-shrink: 0;
      transition: box-shadow 0.2s ease-in-out;
  }

  .testimonial-card:hover {
      box-shadow: 0 3px 18px rgba(0, 0, 0, 0.2);
  }

  .testimonial-header {
      display: flex;
      gap: 8px;
      align-items: center;
  }

  .testimonial-user-img {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
  }

  .testimonial-user-info {
      display: flex;
      flex-direction: column;
      text-align: left;
  }

  .testimonial-text {
      padding: 16px 0;
      font-size: 14px;
      color: #333;
      line-height: 1.5;
  }

  .testimonial-footer {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      color: #687280;
  }