.navbar {
  position: sticky;
  top: 0;
  z-index: 1200;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  margin-left: 16px;
}
.burger-bar {
  width: 100%;
  height: 4px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background: #08245b;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  z-index: 1001;
}
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 24px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}

/* Show mobile menu when active */
.mobile-menu.active {
  display: block;
  animation: fadeIn 0.5s;
}

.navbar {
  width: 100%;
  background-color: #08245b;
  font-weight: 400;
  white-space: nowrap;
}

.navbar .container {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

nav {
  margin-left: auto;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 200;
  text-decoration: none;
  color: white;
  transition: color 0.2s ease;
}

.logo span:hover {
  color: #2a6ef2;
}

.logo img {
  height: 50px;
  width: auto;
  margin: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #2a6ef2;
}

a.btn.desktop-nav {
  margin-right: 20px;
}

.navbar .btn:hover {
  color: #08245b;
}

@media (max-width: 912px) {
  .mobile-menu li:last-child {
    margin-top: 15px;
  }
  .navbar .container {
    flex-direction: row;
    align-items: center;
    position: relative;
  }
  .desktop-nav {
    display: none !important;
  }
  .burger {
    display: flex;
    margin-right: 20px;
  }
  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #08245b;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 1001;
    padding-bottom: 20px;
  }
  .mobile-menu.active {
    display: block;
  }
  body.mobile-menu-open {
    overflow: hidden;
  }
}