/* ==========================================
   NAVBAR
========================================== */

.navbar {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* ==========================================
   LOGO
========================================== */

.logo img {
  height: 55px;
  display: block;
}

/* ==========================================
   NAV LINKS
========================================== */

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ==========================================
   NAV LINK UNDERLINE ANIMATION
========================================== */

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #00147a;
  font-weight: 500;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

/* Underline element */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #0057b7;
  transition: width 0.3s ease;
}

/* Hover effect */
.nav-links a:hover {
  color: #0057b7;
}

.nav-links a:hover::after {
  width: 100%;
}
}

.nav-links a:hover {
  color: #0057b7;
}

/* Apply Button */
.apply-btn {
  background: #0057b7;
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.apply-btn:hover {
  background: #003f88;
}

/* ==========================================
   HAMBURGER
========================================== */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #00147a;
  transition: 0.3s ease;
}

/* ==========================================
   MOBILE MENU
========================================== */

@media (max-width: 992px) {

  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    background: #ffffff;
    width: 250px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    box-shadow: -2px 5px 15px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: 0.3s ease;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .hamburger {
    display: flex;
  }
}