.hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      background: url("../images/freepik__upload__90071.jpg") no-repeat center center/cover;
  }

  canvas#bgCanvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block;
      z-index: 1;
  }

  .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
  }

  /* Caption Styling */
  .hero-caption {
      color: #ffffff;
      text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
      margin-bottom: 2rem;
  }
  .hero-caption h1 {
      font-size: 3rem;
      font-weight: bold;
  }
  .hero-caption p {
      font-size: 1.5rem;
      line-height: 1.6;
  }

  @media (min-width: 768px) {
      .hero-caption h1 { font-size: 3rem; }
      .hero-caption p { font-size: 1.3rem; }
  }

 /* Logo Styling */
.hero-logo {
  text-align: center;
  transition: transform 0.2s ease-out;
  position: relative;
  z-index: 2;
}

.hero-logo img {
  max-width: 250px;
  width: 80%;
  filter: drop-shadow(0 0 25px rgba(0,255,255,0.9)) drop-shadow(0 0 45px rgba(0,255,255,0.7));
  animation: glowPulse 2s infinite alternate;
}

/* Glow pulse effect */
@keyframes glowPulse {
  from {
    filter: drop-shadow(0 0 20px rgba(0,255,255,0.6)) drop-shadow(0 0 40px rgba(0,255,255,0.5));
  }
  to {
    filter: drop-shadow(0 0 35px rgba(0,255,255,1)) drop-shadow(0 0 70px rgba(0,255,255,0.9));
  }
}

/* Responsive scaling */
@media (min-width: 576px) {
  .hero-logo img { max-width: 300px; }
}
@media (min-width: 768px) {
  .hero-logo img { max-width: 400px; }
}
@media (min-width: 992px) {
  .hero-logo img { max-width: 550px; }
}
