/* RESET STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* SLIDER CONTAINER */
.sliderBox {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* SLIDER TRACK */
#slider1 {
  position: relative;
  width: 100%;
}

/* SLIDE WRAPPER */
#slider1 .slides {
  position: relative;
  width: 100%;
}

/* EACH SLIDE */
#slider1 .slides > div {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* ACTIVE SLIDE */
#slider1 .slides > div.active {
  opacity: 1;
  z-index: 1;
  position: relative;
}

/* IMAGE STYLING */
#slider1 .slides img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  z-index: 1000;
  border: none;
}

/* Background image for previous button */
#prevBtn {
  left: 10px;
  background-image: url('https://spsbbk.edu.in/wp-content/uploads/2025/06/pre.png');
}

/* Background image for next button */
#nextBtn {
  right: 10px;
  background-image: url('https://spsbbk.edu.in/wp-content/uploads/2025/06/next.png');
}

/* OPTIONAL: Responsive tweak */
@media (max-width: 768px) {
  .nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  z-index: 1000;
  border: none;
}

/* Background image for previous button */
#prevBtn {
  left: 10px;
}

/* Background image for next button */
#nextBtn {
  right: 10px;
}
}
