.hero {
  background: url('../images/Front-page/hero2.webp') center/cover no-repeat;
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 100%;
  height: 100%;
background:
radial-gradient(circle at top left, rgba(14, 0, 218, 0.6) 10%, transparent 40%),
radial-gradient(circle at 30% 10%, rgba(68, 223, 223, 0.6) 10%, transparent 40%),
radial-gradient(circle at 60% 10%, rgba(14, 0, 218, 0.6) 15%, transparent 40%),
  radial-gradient(circle at bottom right, rgba(68, 223, 223, 0.6) 10%, transparent 30%), 
  radial-gradient(circle at center, rgba(14, 0, 218, 0.2) 30%, transparent 50%),
radial-gradient(circle at 30% 80%, rgba(14, 0, 218, 0.5) 20%, transparent 30%),
  radial-gradient(circle at top right, rgba(0, 1, 1, 0.8) 15%, transparent 40%),
radial-gradient(circle at 65% 80%, rgba(68, 223, 223, 0.5) 10%, transparent 32%),
  radial-gradient(circle at bottom left, rgba(0, 1, 1, 0.8) 20%, transparent 40%),
rgba(4, 38, 43, 0.6);
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 8rem 0 0 5rem;
  padding: 2rem 5rem;
  color: white;
  text-align: left;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
}

.hero-content p {
  font-size: 25px;
  margin-top: 3rem;
  margin-bottom:0;
}

.hero-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.8rem;
  border: 2px solid white;
  background: transparent;
  color: white;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-button:hover {
  background: white;
  color: #001b3a;
}