.hero-slider {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  max-width: 600px;
}

.highlight {
  color: #FFD700;
}

.cta-button {
  padding: 10px 20px;
  background: #FFD700;
  color: #333;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.slider-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.slider-nav span {
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  padding: 10px;
  color: #fff;
  font-size: 30px;
}