/* === Hero Slider Wrapper === */
.gk-hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* === Slide Track & Slide === */
.gk-hero-slide-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.gk-hero-slide {
  flex: 0 0 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  text-align: center;
}

/* === Overlay Content === */
.gk-hero-overlay {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 12px;
  max-width: 90%;
}

/* === Heading and Paragraph === */
.gk-hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.gk-hero-overlay p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

/* === Call-to-Action Button === */
.gk-hero-btn {
  background: #e2a134;
  padding: 12px 28px;
  border: none;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.gk-hero-btn:hover {
  background: #c5821b;
}

/* === Navigation Arrows === */
.gk-prev,
.gk-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 1
}
