* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

.navbar{
    display: flex;
  align-items: center;
  justify-content: center;
   position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: white;
   box-shadow: 0 2px 5px rgba(0,0,0,0.06);
}

.nav-inner {
  width: 100%;
  max-width: 1440px;
  background: white;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #08304a;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  color: #08304a;
  position: relative;
  padding: 5px;
  transition: all 0.3s ease;
}


.nav-links a:hover::after {
  width: 100%;
}

/* .nav-links a.active {
  font-weight: bold;
  color: #2e5f88;
} */

.nav-links a.active::after {
  width: 100%;
}

.contact-btn {
  background: #022B4B;
  padding: 10px 20px;
  color: white !important;
  /* border-radius: 6px; */
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #1f455f;
  transform: translateY(-2px);
}

.hamburger {
  width: 22px;
  height: 17px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.3s ease;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #08304a;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* .nav-link-inner{
  font-weight: bold;
  color: #2e5f88;
}

*/

.nav-link-inner.activebar{
  font-weight: bold;
  color: #2e5f88;
  
}

/* .nav-link-inner.activebar::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #2e5f88;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}   */


@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    width: 100%;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 0;
    display: flex;
    
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-links.show {
    max-height: 350px;
    padding: 20px 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .contact-btn {
    width: fit-content;
    margin: auto;
  }
}
