.landing-hero .hero-title {
  background: linear-gradient(to right, #ffffff 0%, #00bad1 47.92%, #64edff 100%);
  background-size: 200% auto;
  color: #444050;
  background-clip: text;
  line-height: 1.2;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 2s ease-in-out infinite alternate;
}

.light-style .layout-navbar .navbar.landing-navbar {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.9);
}

.blink {
  animation: blink 2s infinite;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pulse-effect {
  animation: pulse 2s infinite;
}

/* Fix company name text overlapping menu close icon */
.layout-menu .app-brand {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
}

.layout-menu .app-brand .app-brand-link {
  flex: 1;
  min-width: 0;
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
}

.layout-menu .app-brand .app-brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.layout-menu .app-brand .layout-menu-toggle {
  flex-shrink: 0;
  width: auto;
  margin-left: auto;
}
