/* Custom Styles */
body {
  font-family: 'Inter', sans-serif;
}

.gradient-bg {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f97316 100%);
}
.shadow-soft {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#services {
  background-color: #ede7f6;
}

#custom {
  background-color: #ede7f6;
  padding: 20px;
  border-radius: 10px;
}

#custom-button {
  margin-top: 20px;
  margin-bottom: 20px;
}

.service-card {
  transition: transform 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-10px);
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
  }
}

.background {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.background li {
  position: absolute;
  list-style: none;
  display: block;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='w-6 h-6 text-white' fill='none' stroke='currentColor' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -160px;
  animation: float 25s linear infinite;
}

.background li:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.background li:nth-child(2) {
  left: 20%;
  animation-delay: 5s;
  animation-duration: 15s;
}

.background li:nth-child(3) {
  left: 30%;
  animation-delay: 2s;
  animation-duration: 18s;
}

.background li:nth-child(4) {
  left: 40%;
  animation-delay: 8s;
  animation-duration: 10s;
}

.background li:nth-child(5) {
  left: 50%;
  animation-delay: 1s;
  animation-duration: 22s;
}

.background li:nth-child(6) {
  right: 10%;
  animation-delay: 5s;
  animation-duration: 2s;
}

.background li:nth-child(7) {
  right: 20%;
  animation-delay: 10s;
  animation-duration: 8s;
}

.background li:nth-child(8) {
  right: 30%;
  animation-delay: 5s;
  animation-duration: 13s;
}

.background li:nth-child(9) {
  right: 40%;
  animation-delay: 10s;
  animation-duration: 5s;
}

.background li:nth-child(10) {
  right: 50%;
  animation-delay: 8s;
  animation-duration: 10s;
}

footer {
    background-color: #202938;
}
