.wdt-button-icon-inner svg {
  width: 16px;
  height: 16px;
}

.hero-section {
  width: 100%;
  /* height: calc(100vh - 60px); */
  height: 1055px;
  background-image: url("../assets/images/banner-home.webp");
  background-position: center;
  background-size: cover;
  padding: 0;
}

.overlay-bg {
  width: 100%;
  height: 100%;
  background-color: #1c1c1c85;

  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section .container {
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}

.hero-slide-button-icon-holder svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

.horizontal-line {
  width: 80px;
  border: 1px solid #9d7458;
  display: block;
  position: relative;
}

.line-dot {
  width: 14px;
  height: 14px;
  display: block;
  background: #9d7458;
  border-radius: 50%;
  position: absolute;
  right: -1px;
  top: -7.5px;
}

.hero-slide-1,
.hero-slide-2,
.hero-slide-3 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  width: 35%;
}

span.subtitle-section {
  display: flex;
  /* flex-direction: column; */
  gap: 14px;
}

.subtitle-text {
  font-size: 12px;
  color: #ffffff;
  text-transform: uppercase;
}

.slide-title {
  color: white;
  font-weight: 400;
}

.imp-text {
  color: #9d7458;
}

.slide-description {
    color: #ffffff;
    line-height: 1.5rem;
}

.slide-main-button {
  background: transparent;
  outline: none;
  border: 1px solid white;
  padding: 5px 5px 5px 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  border-radius: 30px;
}

.slide-main-button .text {
  font-size: 18px;
  color: #ffffff;
}

.hero-slide-button-icon-holder {
  padding: 12px;
  background: #9d7458;
  border-radius: 50%;
}

.slide-left {
    justify-content: flex-start;
    position: relative !important;
}

.slider-dot {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  position: relative;
  cursor: pointer;

  transform: scale(1);
  transition: 
    transform 0.4s ease,
    background-color 0.4s ease;
}

.slider-dot.active {
  transform: scale(1.4);
}

.slider-dot.active::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);

  animation: dotPulse 1.2s ease-out infinite;
}

@keyframes dotPulse {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


.slider-dot:hover::before{
    content: '';
    width: 25px;
    height: 25px;
    display: block;
    background: #ffffff63;
    border-radius: 30px;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(25%, 25%);
    cursor: pointer;
    transition: 1s;
}
.slide-control-holder {
    display: flex;
    gap: 20px;
    position: absolute;
    bottom: 260px;
}




/* ===== Hero Slider Fade Logic ===== */

.hero-slide-1,
.hero-slide-2,
.hero-slide-3 {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide-1.active,
.hero-slide-2.active,
.hero-slide-3.active {
  opacity: 1;
  visibility: visible;
}

/* Container must be relative */
.hero-section .container {
  position: relative;
}
