.hero-gradient {
  background: linear-gradient(135deg, rgba(8, 120, 112, 0.12) 0%, rgb(255, 255, 255) 100%);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #087870;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.typed-cursor {
  display: none;
}

#typed {
  min-height: 80px;
}

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.swiper-pagination {
  display: none !important;
}

#progress-bar {
  transition: width 0.3s ease-in-out;
}

@keyframes pulseOutline {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(80, 224, 200, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(80, 224, 200, 0);
  }
}

.custom-pop {
  animation: pulseOutline 3s infinite, bounce 2s infinite;
}

html {
  scroll-behavior: smooth;
}

.rotate-180 {
  transform: rotate(180deg);
}