.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(0, 28, 133, 0.9);
  backdrop-filter: blur(12px);
  z-index: 1000;
  font-family: "Inter", sans-serif;
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .2px;
}

.navbar-logo img {
  height: 55px;
  width: 90%;
  object-fit: contain;
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar-links li {
  position: relative;
}

.navbar-links a {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
  transition: color .2s ease, transform .2s ease;
}

.navbar-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #afff00;
  transition: width .3s ease;
}

.navbar-links a:hover {
  color: #afff00;
  transform: scale(1.05);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-links a.active {
  color: #afff00;
}

.navbar-btn {
  padding: 6px 14px;
  background: #fff;
  color: #002dff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: background .3s ease, transform .25s ease;
}

.navbar-btn:hover {
  background: #afff00;
  color: #002dff;
  transform: scale(1.05);
}
