.bx-hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bx-hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.bx-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1s ease;
}

.bx-hero-slide.bx-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.bx-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.bx-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 100px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.bx-hero-content h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.bx-hero-content h1 span {
  color: #fbbf24;
}

.bx-hero-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.bx-hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #fbbf24;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.bx-hero-btn:hover {
  background: #e0a800;
}

/* Navigation */
.bx-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 10;
}
.bx-prev, .bx-next{
  height: 110px;
  width: 30px;
}
.bx-prev { 
  left: 0px; 
}
.bx-next { 
  right: 0px; 
}
