@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
body {
  scroll-behavior: smooth;
  background-color: #f8f9fa;
  font-family: "Inter", sans-serif;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(120deg, #007bff, rgb(0, 86.1, 178.5));
  color: white;
  padding-top: 100px;
}
.hero .hero-images img {
  border-radius: 15px;
  margin: 0 10px;
  opacity: 0.9;
  animation: float 4s ease-in-out infinite;
}
.hero .hero-images .delay-1 {
  animation-delay: 0s;
}
.hero .hero-images .delay-2 {
  animation-delay: 1s;
}
.hero .hero-images .delay-3 {
  animation-delay: 2s;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.delay-1 {
  transition-delay: 0.2s;
}
.animate-on-scroll.delay-2 {
  transition-delay: 0.4s;
}

#pricing .card {
  border-radius: 15px;
  transition: all 0.3s ease;
}
#pricing .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: #333;
}

form {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
form:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: #0b132b;
}/*# sourceMappingURL=style.css.map */