/* Hero Section */
#hero-section .myslider {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#hero-section .myslider .item {
  position: relative;
  z-index: 2;
}

.myslider .item h1,
.myslider .item p,
.myslider .item a {
  position: relative;
  z-index: 3;
  color: white;
}

.myslider .item h1 {
  margin-bottom: 24px;
  font-size: clamp(36px, 5vw, 70px); /* 55 */
  line-height: 1.3;
}

.myslider .item p {
  margin-bottom: 32px;
  width: 80%;
}

.myslider .item-bg {
  aspect-ratio: 222/81;
  width: 100%;
}
.myslider .item-bg.item-bg-mobile {
  display: none;
}

/* Bullet Dots on the Right */
#hero-section .slick-dots {
  position: absolute;
  top: 50%;
  right: 96px;
  transform: translateY(-50%);
  list-style: none;
  margin: 0;
  padding: 0;
  width: 24px;
  display: flex !important;
  flex-direction: column;
  z-index: 5;
  justify-content: center;
  gap: 16px;
}

#hero-section .slick-dots li {
  margin: 0;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero-section .slick-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  text-indent: -9999px;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#hero-section .slick-dots li button {
  background-color: white;
}

#hero-section .slick-dots button:hover {
  background: url(/images/yellow-circle.svg);
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid var(--Yellow);
}

#hero-section .slick-dots li.slick-active button {
  background: url(/images/yellow-circle.svg);
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid var(--Yellow);
  padding: 11px;
}

#hero-section .slick-vertical .slick-slide {
  border: 0px;
}

/* Hero Section - Desktop */
#hero-section {
  width: 100%;
  overflow: hidden; /* Prevent content overflow */
  position: relative;
  margin: -70px 0 0;
}

#hero-section .myslider .container .row {
  top: 20px;
  padding: 70px 16px 0;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

/* Add Gradient Overlay */
.myslider .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #000 0.21%,
    rgba(0, 0, 0, 0.9) 25.86%,
    rgba(0, 0, 0, 0) 99.77%
  );
  z-index: 1;
  pointer-events: none;
}

/* Mobile Specific Adjustments */
@media screen and (max-width: 767px) {

  
  #hero-section .myslider .item h1 {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 111.111% */
    text-transform: uppercase;
  }

  #hero-section .myslider .item p {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 133.333% */
    width: 100%;
  }

  /* Center content fully */

  .myslider .col-md-6 {
    width: 100%;
  }

  /* Slick Dots - Bottom Center */
  #hero-section .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex !important;
    justify-content: center;
    z-index: 10;
    list-style: none;
    flex-direction: row;
    transform: none;
    top: auto;
  }

  #hero-section .slick-dots button {
    width: 12px;
    height: 12px;
    background-color: white;
    border: none;
    border-radius: 50%;
    text-indent: -9999px;
  }
}

@media screen and (max-width: 1024px) {
    .myslider .item-bg {
    display: none;
  }
  .myslider .item-bg.item-bg-mobile {
    display: block;
  }
  .myslider .item-bg {
    aspect-ratio: auto;
    min-height: 300px;
    width: 100%;
  }
  .myslider .item::before {
    background: linear-gradient(
      90deg,
      #000 0.21%,
      rgba(0, 0, 0, 0.5) 25.86%,
      rgba(0, 0, 0, 0) 99.77%
    );

  }
}

@media screen and (min-width: 1024px) {
  #hero-section .myslider .container .row {
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
  }
}
