.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: 0.5s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Overlay Content */
.content {
  position: absolute;
  top: 30%;
  left: 8%;
  color: #fff;
}

.content h1 {
  font-size: 40px;
  font-weight: bold;
}

.content p {
  font-size: 18px;
  margin: 10px 0;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff9900;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

/* Buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Mobile Responsive */
@media (max-width: 768px) {
  .slide img {
    height: 250px;
  }

  .content {
    top: 20%;
  }

  .content h1 {
    font-size: 22px;
  }

  .content p {
    font-size: 14px;
  }
}