body {
      font-family: Arial, sans-serif;
      background: #f9f9f9;
      text-align: center;
      padding: 100px;
      color: #333;
    }
    h1 {
      color: #1f201b;
    }
    a {
      color: #8a1d08;
      text-decoration: none;
    }

   /* ===== Fade-in Animation for Heading ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  animation: fadeInUp 0.7s ease-out both;
  text-align: center;
  margin-top: 80px;
}

/* ===== Fade-in Animation for Subtitle ===== */
.hero-subtitle {
  animation: fadeInUp 0.9s ease-out both;
  text-align: center;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 20px auto;
}

/* ===== Soft Pulse Button Animation ===== */
@keyframes softPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 12px rgba(0, 123, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: #007bff;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  animation: softPulse 2s ease-out infinite;
  font-weight: 600;
}

/* ===== Center All Content ===== */
body {
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 40px;
  background: #f5f5f5;
}

