.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.navbar-brand img {
  height: auto;
  width: auto;
  max-height: 40px;
}

.navbar-brand span {
  font-weight: 600;
  opacity: 0;
  transform: translateX(-20px);
  animation: textFlyOut 2s ease forwards;
}

@keyframes textFlyOut {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 576px) {
  .navbar-brand span {
    display: none;
  }
}