.elementor-4128 .elementor-element.elementor-element-2eb73b7{--display:flex;}.elementor-4128 .elementor-element.elementor-element-a01b7f7{text-align:center;}.elementor-4128 .elementor-element.elementor-element-a01b7f7 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:35px;color:#48BABB;}.elementor-4128 .elementor-element.elementor-element-52b1377{--display:flex;}@media(max-width:767px){.elementor-4128 .elementor-element.elementor-element-a01b7f7 .elementor-heading-title{font-size:31px;}}/* Start custom CSS for wpforms, class: .elementor-element-a124d0a *//* Wrapper for entire form box */
.custom-form-wrapper {
  max-width: 900px;  /* Wider width on desktop */
  margin: 0 auto;
  padding: 2rem;
  background-color: #1a1a1a; /* Optional for styling */
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 100%; /* Ensure full width is available */
}

/* Center fields with consistent width */
.custom-form-wrapper .wpforms-field {
  max-width: 100%;  /* Make sure the fields use the entire container */
  margin: 0 auto 20px auto;
  text-align: left;
  padding-left: 0;
}

/* Left-aligned submit button */
.custom-form-wrapper .wpforms-submit-container {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

/* Centering the submit button */
.custom-form-wrapper .wpforms-submit {
  width: 100%;
  padding: 12px 0;
  font-weight: bold;
  cursor: pointer;
  border-radius: 35px;
  transition: background-color 0.3s ease;
}

/* Hover effect for the submit button */
.custom-form-wrapper .wpforms-submit:hover {
  background-color: #3aa9a7; /* Hover background color */
  transition: background-color 0.3s ease;
}

/* Style the select dropdown itself */
.custom-form-wrapper select {
  background-color: #1a1a1a !important;
  color: #fff !important;
  border: 1px solid #444;
  padding: 10px;
  border-radius: 6px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Style the dropdown options */
.custom-form-wrapper select option {
  background-color: #1a1a1a;
  color: #fff;
}

/* Style the custom dropdown arrow */
.custom-form-wrapper select {
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23fff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 30px; /* space for arrow */
}

/* WPForms checkbox/multi-select dropdown fix */
.custom-form-wrapper .wpforms-field-checkbox label,
.custom-form-wrapper .wpforms-field-multiple label,
.custom-form-wrapper .wpforms-field .choices__item--choice {
  background-color: #1a1a1a !important;
  color: #fff !important;
  border: 1px solid #444 !important;
}

/* Fix hover and selected item */
.custom-form-wrapper .wpforms-field .choices__item--choice:hover,
.custom-form-wrapper .wpforms-field .choices__item--selectable.is-highlighted {
  background-color: #333 !important;
  color: #fff !important;
}

/* ✅ Responsive Fix for screens under 768px */
@media (max-width: 768px) {
  .custom-form-wrapper {
    width: 100%; /* Full width on mobile */
    padding: 1rem;
  }

  .custom-form-wrapper .wpforms-field {
    padding-left: 0;
  }

  /* Centering the submit button */
  .custom-form-wrapper .wpforms-submit {
    width: 100%;
    padding: 12px 0;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-09302c5 *//* Floating social icons (LEFT) */
.floating-icons.left {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 10;
}

.floating-icons.left a {
  display: block;
  background-color: #48babb;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  margin: 10px 0;
  color: #fff;
  font-size: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.floating-icons.left a:hover {
  transform: scale(1.1);
}

/* Tooltip for social icons (RIGHT of icon) */
.floating-icons.left a::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 120%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background-color: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 20;
}

.floating-icons.left a:hover::after {
  opacity: 1;
}

/* Sidebar gallery */
.sidebar-gallery {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 4;
}

.gallery-item {
  position: relative;
  margin: 10px 0;
}

/* Tooltip for gallery images (LEFT of image) */
.gallery-item::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background-color: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 20;
}

.gallery-item:hover::after {
  opacity: 1;
}

.sidebar-gallery img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.sidebar-gallery img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .floating-icons.left {
    top: auto;
    bottom: 20px;
    left: 15px;
    transform: none;
    display: flex;
    gap: 10px;
  }

  .floating-icons.left a::after {
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
  }

  .sidebar-gallery {
    display: none;
  }
}/* End custom CSS */