/* Default nav link */
.nav-link {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}



/* activeNav state */
.nav-link.activeNavNav {
  background-color: white;
  color: black !important;
  background-color: red;
}


/* === Navbar Base Styles === */
/* Navbar base style */
#customNavbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #004395 !important; /* Always activeNav */
  padding: 0.75rem 1.5rem;
  z-index: 999;
}

/* Container layout */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}

/* Branding */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  height: 30px;
  width: auto;
}

.brand-name {
  color: #b3d4ff;
  font-size: 1.5rem;
  margin-left: 0.5rem;
  font-weight: bold;
}

/* Toggle icon for mobile */
#navToggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  display: none;
}

/* Nav Links */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}





/* activeNav link style */
.nav-link.activeNav {
  background-color: white;
  color: black !important;
}

/* Responsive */
@media (max-width: 991px) {
  #navToggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    background-color: #004395;
    position: absolute;
    top: 100%;
    left: 0;
  }

  .nav-links.open {
    display: block;
  }

  .nav-links ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .nav-link {
    width: 100%;
  }
}


#contact {
  color: black;
}
