@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&family=Rajdhani:wght@400;600&display=swap');

.hero-text h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 200, 255, 0.6), 0 0 20px rgba(0, 200, 255, 0.4);
  
  /* Responsive scaling */
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: #e0e0e0;
  max-width: 600px;

  /* Responsive scaling */
  font-size: clamp(1rem, 2vw, 1.5rem);

  /* Cool glow effect */
  text-shadow: 0 0 6px rgba(0, 150, 255, 0.4);
}