/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

/* Hero Background */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://img.freepik.com/premium-photo/abstract-purple-navy-blue-futuristic-background_1000823-282512.jpg?w=740') no-repeat center center/cover;
  z-index: -1;
  filter: blur(2px) brightness(0.7);
  animation: moveBackground 10s ease-in-out infinite;
}

/* Background Animation */
@keyframes moveBackground {
  0% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.1) translateY(-20px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

/* Hero Content */
.hero-content {
  z-index: 1;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 4rem;
  letter-spacing: 3px;
  color: #00ffff;
  text-shadow: 0px 0px 15px rgba(0, 255, 255, 0.8);
}

.hero-content p {
  font-size: 1.5rem;
  margin: 20px 0;
  color: #e0e0e0;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

/* Neon Button */
.cta-button {
  background-color: #000;
  color: #00ffff;
  border: 2px solid #00ffff;
  padding: 15px 30px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #00ffff;
  color: #000;
  box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.7);
}

/* Neon Glow Effect */
.neon-button {
  box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.5), 0px 0px 30px rgba(0, 255, 255, 0.3);
}
