/* Creative Effects */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating Animation */
.service-item {
  animation: float 6s ease-in-out infinite;
}

.service-item:nth-child(2) {
  animation-delay: -2s;
}

.service-item:nth-child(3) {
  animation-delay: -4s;
}

/* Pulse Effect on Buttons */
a.filled-button {
  animation: pulse 2s infinite;
}

/* Parallax Effect */
.fun-facts {
  background-attachment: fixed !important;
}

/* Scroll Animation */
.section-heading {
  animation: slideInUp 0.8s ease-out;
}

/* Hover Effects */
.testimonial-item {
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  transform: scale(1.02) rotate(1deg);
}

/* Gradient Text */
.Modern-Slider .item h4 {
  background: linear-gradient(45deg, #fff, #f18119);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass Effect */
.count-area-content {
  backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 15px !important;
}

/* Neon Glow */
.navbar-brand h2 {
  text-shadow: 0 0 10px rgba(241, 129, 25, 0.5) !important;
}

/* Creative Shapes */
.service-item::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #f18119, #f1903b, #063458);
  border-radius: 10px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-item:hover::before {
  opacity: 1;
}
