/* Dropdown positioning fix */
.dropdown-menu {
  display: none;
  position: absolute;
  z-index: 9999 !important;
}

.dropdown-menu.active {
  display: block;
  z-index: 9999 !important;
}

/* Ensure hero section allows overflow */
section {
  position: relative;
  z-index: 1;
}

/* When dropdown is active, boost hero section z-index */
section:has(.dropdown-menu.active) {
  z-index: 9999;
}

/* Make sure the hero section doesn't clip the dropdown */
.overflow-hidden {
  overflow: visible !important;
}

/* Specific fix for hero carousel section */
section.w-full.h-\[70vh\] {
  overflow: visible !important;
}