/* Prevent page horizontal scrollbar from full-bleed banner */
.elementor-widget-dynhb_hero_banner,
.elementor-element.elementor-widget-dynhb_hero_banner {
  overflow-x: clip;
  max-width: 100%;
}

.dynhb-banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: transparent;
  box-sizing: border-box;
}

/* Full-bleed without causing body overflow (uses clientWidth via JS) */
.dynhb-banner.dynhb-is-fullwidth {
  position: relative;
  left: 50%;
  right: auto;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.dynhb-track {
  position: relative;
  width: 100%;
}

.dynhb-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  min-height: 620px;
  box-sizing: border-box;
}

.dynhb-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.dynhb-overlay {
  position: absolute;
  inset: 0;
  background: #000000;
  pointer-events: none;
  z-index: 1;
}

.dynhb-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 40px;
  box-sizing: border-box;
}

.dynhb-content {
  width: 100%;
  max-width: 640px;
}

.dynhb-slide.is-center .dynhb-inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

.dynhb-slide.is-center .dynhb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dynhb-slide.is-left .dynhb-inner {
  display: flex;
  justify-content: flex-start;
  text-align: left;
}

.dynhb-slide.is-left .dynhb-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dynhb-slide.is-right .dynhb-inner {
  display: flex;
  justify-content: flex-end;
  text-align: left;
}

.dynhb-slide.is-right .dynhb-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dynhb-logo {
  margin: 0 0 28px;
}

.dynhb-logo img {
  width: 90px;
  height: auto;
  display: block;
}

.dynhb-heading {
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 18px;
}

.dynhb-subtitle {
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
  max-width: 540px;
}

.dynhb-slide.is-center .dynhb-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.dynhb-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.dynhb-slide.is-center .dynhb-buttons {
  justify-content: center;
}

.dynhb-slide.is-right .dynhb-buttons {
  justify-content: flex-start;
}

.dynhb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
  line-height: 1.2;
}

.dynhb-btn:hover {
  transform: translateY(-1px);
}

.dynhb-btn-primary {
  background: #ffffff;
  color: #3d1a6e;
  border-color: #ffffff;
}

.dynhb-btn-primary:hover {
  background: #f0eaf8;
  color: #3d1a6e;
}

.dynhb-btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.dynhb-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.dynhb-btn-icon {
  font-size: 0.95em;
  line-height: 1;
}

.dynhb-btn-icon-img {
  width: 16px;
  height: 16px;
  display: block;
}

.dynhb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.dynhb-arrow:hover {
  opacity: 1;
}

.dynhb-prev {
  left: 16px;
}

.dynhb-next {
  right: 16px;
}

.dynhb-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dynhb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.dynhb-dot.is-active {
  background: #ffffff;
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .dynhb-arrow {
    width: 40px;
    height: 40px;
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .dynhb-slide {
    min-height: 480px;
  }

  .dynhb-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .dynhb-slide.is-center .dynhb-buttons,
  .dynhb-slide.is-left .dynhb-buttons,
  .dynhb-slide.is-right .dynhb-buttons {
    align-items: stretch;
  }

  .dynhb-btn {
    width: 100%;
    text-align: center;
  }

  .dynhb-prev {
    left: 8px;
  }

  .dynhb-next {
    right: 8px;
  }

  .dynhb-dots {
    bottom: 18px;
  }
}
