/* General Styling */
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #050505, #0a0a30);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

/* Slider Container */
.slidershow {
  width: 800px;
  height: 450px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 247, 255, 0.8), 0 0 60px rgba(0, 68, 255, 0.8);
}

/* ✅ FIX: Ensure the slides take full width */
.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1s ease-in-out;
}

/* ✅ FIX: Set slides width dynamically to prevent black screen */
.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* ✅ FIX: Ensure images fit perfectly without gaps */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Navigation Dots */
.navigation {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.bar {
  width: 50px;
  height: 10px;
  border: 2px solid #00f7ff;
  margin: 6px;
  cursor: pointer;
  transition: 0.4s;
  border-radius: 5px;
}

.bar:hover, .bar.active {
  background: #00f7ff;
  box-shadow: 0 0 15px #00f7ff;
}
