/* Custom Animations */
@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

/* Add floating animation to icons */
.info_box i.floating {
  animation: floating 3s ease-in-out infinite;
}

/* Add pulse animation to submit button */
.submit-btn:hover {
  animation: pulse 1s ease-in-out infinite;
}

/* Add shimmer effect to section headings */
.title_box h2 {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.title_box h2:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 200% 100%;
  pointer-events: none;
}
