.gallery-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  background: #000;
  margin-bottom: 20px;
}
.gallery-marquee {
  display: flex;
  gap: 30px;
}
.gallery-marquee img {
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  padding: 5px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.gallery-marquee img:hover {
  transform: scale(1.05);
}
.scroll-left {
  animation: scroll-left 6s linear infinite;
}
.scroll-right {
  animation: scroll-right 6s linear infinite;
}
@keyframes scroll-left {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}
@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

/* Lightbox Modal */
#imageModal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}
#imageModal img {
  max-width: 90%;
  max-height: 90%;
  border: 4px solid white;
  border-radius: 10px;
}
#imageModal .close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
