/* Infinite Marquee Slider Styles for SMSIndiaHub */
.marquee-wrapper {
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
}

.animate-marquee-left {
  animation: marqueeLeft 32s linear infinite;
}

.animate-marquee-right {
  animation: marqueeRight 32s linear infinite;
}

.marquee-wrapper:hover .animate-marquee-left,
.marquee-wrapper:hover .animate-marquee-right {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.client-logo-pill {
  width: 180px;
  height: 84px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.client-logo-pill:hover {
  border-color: #38bdf8;
  box-shadow: 0 20px 30px -5px rgba(56, 189, 248, 0.35), 0 0 15px rgba(56, 189, 248, 0.2);
  transform: translateY(-6px) scale(1.12);
  z-index: 30;
}

.client-logo-pill img {
  height: 58px;
  max-height: 60px;
  width: 155px;
  max-width: 155px;
  object-fit: contain;
  transform: scale(1.28);
  filter: none !important;
  opacity: 1 !important;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.client-logo-pill:hover img {
  transform: scale(1.42);
}
