* {
  margin: 0;
  padding: 0;
}
.hero-box {
  position: relative;
  width: 100%;
  height: 657px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay {
  position: relative;
  width: 100%;
  height: 100%;
}
.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2; /* Above the overlay */
}
.overlay-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.overlay-text p {
  font-size: 1.5rem;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 5px;
  z-index: 3; /* Above the overlay */
}
.slider-btn:nth-of-type(1) {
  left: 20px;
}

/* Position the Next Button to the Right */
.slider-btn:nth-of-type(2) {
  right: 20px;
}
.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
