
/* Prevent horizontal overflow on all devices */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
}

/* Ensure all sections fit within the screen */
* {
  box-sizing: border-box !important;
/*   max-width: 100% !important; */
}

.icon-style-white .elementor-image-box-img img {
    filter: brightness(0) invert(1);
}
.menu-item-has-children {
    position: relative !important;
}
.menu-item-has-children:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px;
}

.wpr-mobile-menu-display-offcanvas .wpr-mobile-mega-menu li {
    overflow: visible !important;
}


/* Contact Form 7 Custom Design */
.custom-wpform {
  max-width: 650px;
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
  color: #1d2b36;
}

form.wpcf7-form .custom-width {
    max-width: 950px;
}

.form-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form-group.half {
  flex: 1;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #1d2b36;
}

.custom-wpform input[type="text"],
.custom-wpform input[type="email"],
.custom-wpform input[type="tel"],
.custom-wpform select,
.custom-wpform textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 2px;
  background-color: #f3f3f3;
  outline: none;
  color: #333;
}

.custom-wpform select {
  height: 38px;
}

.custom-wpform textarea {
  min-height: auto !important;
}


.custom-wpform input[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #6658F5;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 0;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

.custom-wpform input[type="submit"]:hover {
  background-color: #4137AE;
}

/* Responsive - Mobile view */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}

