.hero-section {
  background: radial-gradient(circle at top left, #0f0f0f, #000000);
  padding: 100px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  color: #00d8ff;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #fff;
  background: linear-gradient(to right, #00d8ff, #00ff99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 18px;
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #ccc;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-buttons .btn {
  background-color: #00d8ff;
  color: #000;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.hero-buttons .btn-outline {
  background-color: transparent;
  border: 2px solid #00d8ff;
  color: #00d8ff;
}

.hero-buttons .btn:hover,
.hero-buttons .btn-outline:hover {
  background-color: #00d8ff;
  color: #000;
}

.hero-image img {
  margin-top: 60px;
  max-width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

/* Floating animation for image */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Fade-in Up Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s ease-out forwards;
}

.fade-in.delay-0 {
  animation-delay: 0s;
}
.fade-in.delay-1 {
  animation-delay: 0.4s;
}
.fade-in.delay-2 {
  animation-delay: 0.8s;
}
.fade-in.delay-3 {
  animation-delay: 1.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
}
