.hero-light-rays {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #05051a;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease;
}

.light-rays-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-light-rays-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-brand {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  transform: translateY(30px);
  opacity: 1; /* Now permanently visible */
  filter: blur(0px) brightness(1.1); /* Slightly boosted base brightness */
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease, transform 0.6s ease;
  will-change: opacity, filter, transform;
}




.hero-logo {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3)); /* Base glow */
  margin-bottom: -20px;
  transition: filter 0.4s ease;
  animation: logo-breathing-glow 4s infinite alternate ease-in-out;
}

@keyframes logo-breathing-glow {
  0% {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
    transform: scale(1);
  }
  100% {
    filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.5));
    transform: scale(1.02);
  }
}



.hero-brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-brand-name {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 0.9; /* Tighten the line height to remove top padding */
}


.hero-brand-sub {
  font-size: clamp(14px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.6);
  margin: 12px 0 0; /* Increased gap for better legibility */
  letter-spacing: 0.1em;
}



