* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

/* Accessibility Focus Indicators */

a:focus,
a:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 3px;
}
.hamburger:focus,
.hamburger:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 3px;
}

button:focus,
button:focus-visible {
  outline: 2px solid #005fcc;
  outline-offset: 2px;

}

.nav-link-inner:focus,
.nav-link-inner:focus-visible {
  outline: 2px solid #005fcc;
  outline-offset: 2px;

}

.logo:focus,
.logo:focus-visible {
  outline: 2px solid #005fcc;
  outline-offset: 2px;

}
.skip-link:focus {
    top: 10px;
    outline:2px solid #005fcc;
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -50px;
    left: 10px;
    background: #000;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 4px;
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.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;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #08304a;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.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: 250px) {
  .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;
  }
}
