.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  font-size: small;
  z-index: 1000;
  background-color: #0952a5; /* or var(--primary) */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 4.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Hamburger menu (shown only on mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  background: #fff;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  transition: 0.3s;
}

/* Mobile behavior */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%; /* directly below navbar */
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background-color: #002b5c;
    max-height: 0;             /* hidden by default */
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }

  .nav-links.show {
    max-height: 300px; /* show menu on toggle */
  }

  .hamburger {
    display: flex; /* show hamburger */
  }
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Desktop Dropdown behavior */
@media (min-width: 1024px) {
  #nav-links {
    overflow-x: visible; /* Disable scroll on desktop */
  }
}