.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  height: 140px; /* Adjust as needed */
  position: relative;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
  will-change: transform;
}

.marquee-wrapper:hover .marquee {
  animation-play-state: paused;
}

.marquee img {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  margin-right: 20px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  user-select: none;
}

.marquee img.clicked {
  transform: scale(1.3);
  box-shadow: 0 0 25px #00f2ff;
  z-index: 10;
  position: relative;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .marquee img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
  }
  .marquee-wrapper {
    height: 100px;
  }
}

/* Video Container */
.video-container {
  position: relative;
  max-width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  margin-top: -4.5rem;
  margin-top: 1.5rem; /* Added margin for spacing */
}
