/* Outfit font loaded via Google Fonts API (see layout.blade.php) */
html,
body {
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  font-family: "Outfit", sans-serif;
}

.loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader-overlay.loader-hidden {
  display: none;
}

.loader-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 28px;
  border-radius: 18px;
  background: #f8fafc;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.loader-spinner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 6px solid #dbeafe;
  border-top-color: #6b5cf6;
  animation: loader-spin 0.8s linear infinite;
}

.loader-text {
  margin: 0;
  color: #1f2937;
  font-weight: 600;
  letter-spacing: 0.4px;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.pro-img {
  mix-blend-mode: color;
}

.home-bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6, #06b6d4);
  filter: blur(100px);
  z-index: -1;
  opacity: 0.6;
}
#navbar-default li a {
  font-weight: 400;
}
#navbar-default li:first-child a {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  background-image: linear-gradient();
}
#navbar-default li:last-child a {
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
li.active a,
li.active-head-menu .main-link,
li.active-current-head .main-link {
  color: #695cee !important;
  font-weight: 800 !important;
}
.container {
  margin: 0 auto;
}
.leading-10 {
  line-height: 4.5rem !important;
}
.gradient-shadow {
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, #98f5e1, #90e0ef, #e0c3fc);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.owl-carousel {
  width: 70%;
  margin: 30px auto;
}
.owl-carousel .item {
  border-radius: 25px;
  padding: 5px;
}
.owl-carousel .item img {
  width: 50px;
  border-radius: 50%;
  background: #fff;
  padding: 12px;
}
.owl-carousel .item h4 {
  line-height: 45px;
  padding-left: 10px;
  font-size: 18px;
}
.owl-dots {
  margin-top: 20px;
}
.owl-theme .owl-nav {
  margin-top: 0px !important;
}
.owl-next,
.owl-prev {
  width: 35px;
  height: 35px;
  background: #f1f1f1 !important;
  border-radius: 50% !important;
}
.owl-next span,
.owl-prev span {
  font-size: 45px;
  font-weight: 900;
  line-height: 18px;
  color: #667ffb;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #667ffb !important;
}

#stepsForm {
  /* background-color: #ffffff; */
  margin: 10px auto;
  padding: 40px;
  width: 80%;
  /* min-width: 300px; */
}
#stepsForm .tab .grid {
  margin-bottom: 2px;
  margin-bottom: 8px;
}
/* Style the input fields */
#stepsForm input,
#stepsForm select {
  padding: 2px 10px;
  width: 100%;
  font-size: 15px;
  font-family: Raleway;
  border: 1px solid #4aabaa;
  margin: 5px 0;
  border-radius: 25px;
  height: 35px;
}
#stepsForm label {
  width: 75%;
  line-height: 20px;
  color: #7888f6;
  padding-right: 14px;
  text-align: start;
}
#stepsForm .tab.step1 label {
  line-height: 36px;
}
/* Mark input boxes that gets an error on validation: */
#stepsForm input.invalid {
  background-color: #ffdddd;
}
/* Hide all steps by default: */
#stepsForm .tab {
  display: none;
  min-height: 400px;
}
#stepsForm .tab h3 {
  color: #7165ee;
  font-weight: 500;
  margin-bottom: 1.5em;
  text-transform: uppercase;
}
/* Make circles that indicate the steps of the form: */
#stepsContainer {
  display: flex;
  justify-content: center;
  gap: 20px;
}
#stepsContainer .step {
  height: 35px;
  width: 35px;
  line-height: 35px;
  background-color: #e9e9e9;
  border: none;
  border-radius: 50%;
  opacity: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mark the active step: */
#stepsContainer .step.active {
  opacity: 1;
  background-color: #7888f6;
}
/* Mark the steps that are finished and valid: */
#stepsContainer .step.finish {
  background-color: #7888f6;
}
#stepsForm #stepsFormControl button {
  background-color: #e9e9e9;
  border: none;
  font-size: 17px;
  border-radius: 25px;
  cursor: pointer;
  width: 35px;
  height: 35px;
}
#stepsForm #stepsFormControl button i {
  color: #7888f6;
}
.select2-container {
  text-align: left;
  width: 100% !important;
  height: 35px;
  margin: 5px 0;
}
.select2-container--default .select2-selection--single {
  border-radius: 25px !important;
  height: 35px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  right: 12px;
  top: 4px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-width: 8px 8px 0 8px;
}
.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-width: 0 8px 8px 8px;
}
.select2-dropdown,
.select2-dropdown .select2-search--dropdown .select2-search__field,
.select2-container--default .select2-results > .select2-results__options {
  border-radius: 25px !important;
}
.select2-results li:last-child {
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}
