.section-wrapper {
  margin-inline: auto;
  padding-inline: clamp(0.8125rem, 0.7598rem + 0.2344vw, 1rem);

  @media (width >=400px) {
    max-width: 400px;
  }

  @media (width >=640px) {
    max-width: 640px;
  }

  @media (width >=770px) {
    max-width: 770px;
  }

  @media (width >=900px) {
    max-width: 900px;
  }

  @media (width >=1025px) {
    max-width: 1025px;
  }

  @media (width >=1300px) {
    max-width: 1300px;
  }

  @media (width >=1600px) {
    max-width: 1600px;
  }
}

.container {
  width: 100%;
  padding-inline: clamp(0.8125rem, 0.7598rem + 0.2344vw, 1rem);

  @media (width >=380px) {
    max-width: 380px;
  }

  @media (width >=520px) {
    max-width: 520px;
  }

  @media (width >=640px) {
    max-width: 640px;
  }

  @media (width >=770px) {
    max-width: 770px;
  }

  @media (width >=900px) {
    max-width: 900px;
  }

  @media (width >=1025px) {
    max-width: 1025px;
  }

  @media (width >=1300px) {
    max-width: 1300px;
  }

  @media (width >=1600px) {
    max-width: 1600px;
  }
}



/* header css */
@media (max-width:1025px) {
  .dropdown-menu {
    max-height: 0;
  }

  .dropdown-menu.open {
    max-height: 700px;
    opacity: 1;
    visibility: visible;
  }

  .nav-item {
    padding-block: 20px;
  }

  .nav-item>a {
    width: 100%;
    justify-content: space-between;
  }

  .header-bottom {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .header-bottom.menu-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header-bottom .section-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .primary-navigation {
    height: calc(100svh - 110px);
    overflow-y: auto;
  }
}

@media (max-width:520px) {
  header .section-wrapper {
    max-width: 100% !important;
  }
}




/* Keep slider content invisible until initialized to prevent layout snapping */
.hero-slider:not(.slick-initialized) {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

/* Custom Dots Layout Styles */
.custom-dots-container .slick-dots {
  display: flex;
  align-items: center;
  list-style: none;
  flex-direction: column;
}

.custom-dots-container .slick-dots button {
  font-size: 0;
  border: none;
  background-color: white;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-dots-container .slick-dots .slick-active button {
  background-color: #F89422;
  width: 1rem;
  height: 1rem;
}



/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-none::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-none {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}





/* Keep dots height reserved to prevent layout shift */

/* While parent wrapper has the loading class hook */
.testimonial-wrapper.is-loading .testimonial-item {
  display: none;
}

/* Keep only the first card visible as a placeholder structural fallback */
.testimonial-wrapper.is-loading .testimonial-item:first-child {
  display: block;
}

/* Optional: Soft fade transition hook when classes shift */
.testimonial-slider {
  transition: opacity 400ms ease-in-out;
  opacity: 1;
}

.testimonial-slider.is-loading {
  opacity: 0.65;
  pointer-events: none;
}

.testimonial-dots-container {
  min-height: 24px;
}


.testimonial-slider .testimonial-item {
  margin-inline: 10px;
}


.testimonial-dots-container .slick-dots {
  position: relative;
  bottom: 0;
  display: flex;
  gap: 8px;
}

.testimonial-dots-container .slick-dots li>button {
  cursor: pointer;
  font-size: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #BDBDBD;
}

.testimonial-dots-container .slick-dots li>button::before {
  display: none;
}

.testimonial-dots-container .slick-dots li.slick-active>button {
  background-color: #F89320;
  width: 1.15rem;
  height: 1.15rem;
}