.hero-svg {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 229, 255, 0.2);
  background: rgba(10, 16, 40, 0.5);
  padding: 10px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.hero-svg:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 229, 255, 0.2);
}
