/* AutoPower Oman — Our Clients marquee (Home page) */
.ap-marquee-wrap{
  overflow:hidden;
  position:relative;
  width:100%;
  margin-top:2.5rem;
}
.ap-marquee-wrap::before,
.ap-marquee-wrap::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:90px;
  z-index:2;
  pointer-events:none;
}
.ap-marquee-wrap::before{
  left:0;
  background:linear-gradient(90deg,#0a192f,rgba(10,25,47,0));
}
.ap-marquee-wrap::after{
  right:0;
  background:linear-gradient(270deg,#0a192f,rgba(10,25,47,0));
}
.ap-marquee-track{
  display:flex;
  align-items:center;
  width:max-content;
  gap:2.25rem;
  animation:ap-marquee-scroll 32s linear infinite;
}
.ap-marquee-wrap:hover .ap-marquee-track{
  animation-play-state:paused;
}
@keyframes ap-marquee-scroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
.ap-marquee-chip{
  background:#ffffff;
  border-radius:14px;
  padding:14px 22px;
  height:88px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  box-shadow:0 6px 18px rgba(0,0,0,.28);
}
.ap-marquee-chip img{
  max-height:56px;
  max-width:170px;
  width:auto;
  height:auto;
  object-fit:contain;
  display:block;
}
@media (max-width:768px){
  .ap-marquee-track{ gap:1.5rem; animation-duration:22s; }
  .ap-marquee-chip{ height:68px; padding:10px 16px; }
  .ap-marquee-chip img{ max-height:42px; max-width:130px; }
}
@media (prefers-reduced-motion: reduce){
  .ap-marquee-track{ animation:none; }
}
