/* Full-screen slider container */
.looping-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #74ebd5, #acb6e5);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Container for slides */
.slides {
  display: flex;
  width: max-content; /* Allows slides to fit content and loop infinitely */
  animation: continuousSlide 20s linear infinite;
}

/* Individual slide */
.slide {
  width: 200px;
  height: 150px;
  margin: 0 10px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Images inside slides */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Continuous sliding animation */
@keyframes continuousSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Slide by half of the total slides width */
}
