/* Reset and base */
body {
  margin: 0;
  padding: 0;
  background: #000;
  font-family: 'Georgia', serif;
}

/* Fullscreen hero background */
.hero {
  width: 100vw;
  height: 100vh;
  background-image: url('https://www.callnet.ai/assets/images/cns.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glowing centered text */
.hero-text {
  color: #fff;
  font-size: 3rem;
  text-align: center;
  padding: 0 20px; /* adds left/right breathing room */
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.6),
    0 0 16px rgba(127, 93, 255, 0.8),
    0 0 32px rgba(127, 93, 255, 0.6);
}

