body , html{
    direction: rtl !important;
    text-align: right !important;
}

.track {
  display: flex;
  width: max-content;
  animation: marquee 90s linear infinite;
}

.logos {
  display: flex;
  gap: 48px;
  padding: 0 16px;
  white-space: nowrap;
}

/* الحركة البطيئة */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover (اختياري) */
.track:hover {
  animation-play-state: paused;
}

/* تحسين الأداء */
.track {
  will-change: transform;
}

/* الـ fades */
.fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 10;
}

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

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