.interactive-gallery-section {
  padding: 80px 20px;
  background: radial-gradient(circle at top, #0a0a0a, #000010);
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2;
}

.interactive-gallery-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #00ffe5;
  text-shadow: 0 0 10px #00ffe5;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-wrapper {
  overflow: hidden;
}

.carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 300px;
  flex-shrink: 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 229, 0.4);
  cursor: grab;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.carousel-slide:hover img {
  transform: scale(1.1);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 255, 229, 0.2);
  border: none;
  color: #00ffe5;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  z-index: 5;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(0, 255, 229, 0.5);
}

.carousel-btn.left { left: 10px; }
.carousel-btn.right { right: 10px; }
