/* Hide all checkboxes after the 20th by default */
ul#wpforms-8907-field_16 li:nth-child(n+21) {
  display: none;
}

/* Show all when parent has class 'expanded' */
ul#wpforms-8907-field_16.expanded li {
  display: list-item !important;
}

/* Style the toggle button */
#toggle-cities {
  margin-top: 10px;
  display: inline-block;
  cursor: pointer;
  color: #0073aa;
  font-weight: bold;
  
  /* Prevent bullet styling */
  list-style-type: none !important;
  list-style: none !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* ✅ NEW: Remove bullets from the checkbox list */
#wpforms-8907-field_16 {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

#wpforms-8907-field_16 li {
  list-style-type: none !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}
/* ✅ Set a uniform height for each testimonial slide */
.testimonial-item-v3 {
  height: 350px; /* Adjust as needed */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
}

/* ✅ Limit the inner text box */
.testimonial-item-v3 .testimonial-body {
  max-height: 230px; /* Adjust as needed to fit within the 300px total */
  overflow: hidden;
  position: relative;
  padding-bottom: 1rem;
}

/* ✅ Optional: Add a gradient fade to long text */
.testimonial-item-v3 .testimonial-body::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40px;
  width: 100%;
  background: linear-gradient(to top, white, transparent);
}
.container-fluid {
    background-color: rgba(0, 0, 0, 0.4); /* semi-transparent black */
    width: 100%;
    position: relative;
    z-index: 9999;
}

/* Optional: Force menu text to white for better visibility */
.container-fluid a,
.container-fluid .nav-link,
.container-fluid .dropdown-item,
.container-fluid .houzez-icon,
.container-fluid .btn-phone-number a {
    color: #ffffff !important;
}
/* Make dropdown background darker */
ul.dropdown-menu {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border: none !important;
}

/* Make link text white */
ul.dropdown-menu li a.dropdown-item {
    color: #000000 !important;
}

/* Optional: hover effect */
ul.dropdown-menu li a.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}
