/* Base marquee-achiev styles */
.marquee-achiev {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

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

.marquee-achiev::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, rgba(9, 15, 27, 0));
}

.marquee-achiev::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, rgba(9, 15, 27, 0));
}

.marquee-achiev .scroll {
  display: flex;
  will-change: transform;
  /* Animation removed - handled by JavaScript */
}

.marquee-achiev .scroll > div {
  flex-shrink: 0;
  margin-right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-width: 160px;
}

.marquee-achiev img {
  max-height: 60px;
  width: auto;
  display: block;
  height: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.marquee-achiev img:hover {
  transform: scale(1.05);
}

/* All animations now handled by JavaScript for smooth, no-reset scrolling */

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .marquee-achiev {
    padding: 15px 0;
  }

  .marquee-achiev::before,
  .marquee-achiev::after {
    width: 30px;
  }

  .marquee-achiev .scroll > div {
    margin-right: 30px;
    min-width: 120px;
  }

  .marquee-achiev img {
    max-height: 40px;
  }

  /* Animation speeds now controlled by JavaScript */
}

/* For very small screens */
@media (max-width: 480px) {
  .marquee-achiev img {
    max-height: 35px;
  }

  /* Animation speeds now controlled by JavaScript */
}

.custom-bullet li::marker {
  color: white;
}