body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000; /* Default color */
  transition: background-color 0.3s ease; /* Smooth background transition */
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 1;
}

.cursor-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none; /* Prevent interaction with the circle */
  z-index: 2; /* Ensure it’s above everything */
  transition: background-color 0.3s ease; /* Smooth color transition */
}
