
.slide-track {
  width: max-content;
}
/* Slider */
.slider {
  overflow: hidden;
  width: 100%;
  padding: 30px 0;
}

/* Track */
.slide-track {
  display: flex;
  gap: 10px; /* ✅ use gap instead of margin */
  animation: scroll 40s linear infinite;
}

/* Item */
.slide-item-pro {
  position: relative;
  flex: 0 0 auto;
  width: 275px;
}

/* Image */
.slide-item-pro img {
	width: 100%;
	/* height: 160px; */
	object-fit: cover;
	border-radius: 10px;
	border: 1px solid;
}

/* Title */
.title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 8px;
  font-size: 16px;
  color: #fff;
  background: rgba(0,102, 178,0.8);
  border-radius: 0 0 10px 10px;
  text-align: center;
    font-weight: 700;
}

/* Pause on hover */
.slider:hover .slide-track {
  animation-play-state: paused;
}

/* Smooth animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50%));
  }
}

