@media (min-width: 992px) {
  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    margin-top: 0;
  }

  .navbar .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}


.dropdown-menu li {
padding: 2px;
    font-size: 14px;
    font-weight: 400;
}


.navbar {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  max-height: 72px;
  overflow: hidden;
}

.navbar-brand img {
  height: 200px;
  width: auto;

  transform-origin: left center;
}


@media (min-width: 992px) and (max-width: 1199px) {
  .navbar li{

    font-size: 13px;


  }
}

  .dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-2);
    color: var(--on-primary);
  }

  /* Optional: smooth transition */
  .dropdown-menu .dropdown-item {
    transition: all 0.3s ease;
  }


  .nav-link{
    color: var(--secondary-2) !important;
  }
