  
/* --- Clean Mobile-Friendly Styles for Slider + Container Section --- */

/* Slider Reset */
.w-slider,
.w-slider-mask,
.w-slide {
  height: auto !important;
  min-height: unset !important;
  max-height: unset !important;
}

/* Fade Slider */
.fade-slider {
  position: relative;
  width: 100% !important;
  max-width: none !important;
  /* aspect-ratio: 16 / 9 !important; */
  max-height: 52vh !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* .fade-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.fade-slider .slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  display: block;
} */

/* Container-6 Base */
.container-6 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1040px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
  margin-top: -290px;
  position: relative;
  z-index: 10;
}

/* Section Children */
.div-block-6 {
  width: 69%;
  margin-top: 5px;
  padding: 10px;
  display: block;
  position: relative;
  bottom: 50px;
}

.text-block-3 {
  text-align: left;       /* ✅ fix */
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
  /* Slider smaller on mobile */
  .fade-slider {
    /* aspect-ratio: 16 / 9 !important; */
    max-height: 180px !important;
    max-width: 90%;
    margin: 0 auto;
    border-radius: 8px;
  }
  .slide img {
    max-height: 180px;
    object-fit: cover;
  }

  /* Container-6 stack children vertically */
  .container-6 {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    max-width: 100%;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 1rem;
    padding-top: 0 !important;
    padding-bottom: 1rem;
    text-align: left;
  }
  .container-6 > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* Div-block-6 becomes full width and stacks naturally */
  .div-block-6 {
    position: static;
    width: 100%;
    margin-top: 1rem;
    padding: 0.5rem 0;
    bottom: auto;
  }

  /* Text block wider and left aligned */
  .text-block-3 {
    max-width: 100%;
    width: 100%;
    padding: 0 1rem;
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* Button Row Clean Alignment */
.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 1rem;
  padding-left: 1rem;
}
.button-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
@media (max-width: 768px) {
  .button-row {
    justify-content: center;
    padding-left: 0;
    gap: 0.75rem;
  }
}




/* 📱 Fix Webflow Mobile Nav */
@media (max-width: 991px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    width: 100%;
  }

  .nav-menu.w--open {
    display: flex;
  }

  .menu-button {
    display: block;
  }
}