body {
  margin: 0;
  padding-top: 120px;
}

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
}

/* top banner */
.top-banner {
  background-color: #1d99dd;
  color: white;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  transition: height 0.3s ease, padding 0.3s ease;
}

.top-banner.hidden {
  height: 0;
  padding: 0;
}

.top-banner a {
  color: white;
  text-decoration: none;
}

.top-banner a:hover {
  text-decoration: underline;
}


.top-nav-mobile a {
  font-weight: 300;
}

/* Header top section */
.header-top {
  background-color: #f5f5f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 100px;
  font-size: 14px;
}

.header-top,
.navbar {
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);

}

.logo {
  margin-left: 20px;
}

.logo img {
  height: 70px;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-links a {
  text-decoration: none;
  color: #57585a;
  font-size: 14px;
}

.top-links a:hover {
  color: #0077c8;
}

/* Main navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 50px;
  background-color: #ffffff;
}

.nav-links a {
  color: #57585a;
}

.nav-left {
  flex-shrink: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: 'poppins';
  font-size: 18px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links > li > a {
  text-decoration: none;
  color: #57585a;
  font-size: 16px;
  font-weight: 400;
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-bottom 0.3s;
  font-family: 'poppins';
}

.nav-links > li > a:hover {
  color: #57585a;
  border-bottom: 2px solid transparent;
}

.nav-links .active > a {
  color: #0077c8;
  border-bottom: 2px solid #0077c8;
}

.nav-item.dropdown {
  position: relative;
}

.dropdown-wrapper {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%; /* align just under the nav link */
  left: 0;
  transform: translateX(0); /* default alignment */
  display: none;
  background: #ffffff;
  min-width: 240px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  padding: 10px 0;
  z-index: 1000;
}


.dropdown-menu li {
  border-top: 1px solid #e1e1e1;
}

.dropdown-menu li:first-child {
  border-top: none;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 24px 6px;
  color: #004f8f;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s;
}

.dropdown-menu li a:hover {
  color: #1d99dd;
}


/* Hover on the whole wrapper, not just the <a> */
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown .dropdown-menu:hover {
  display: block;
}


.contact-button a {
  background-color: #1d99dd;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.contact-button a:hover {
  background-color: #188ac8;
}

@media (max-width: 1200px) {
  body {
    font-family: 'poppins'
      margin: 0;
  }

  .navbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: white;
  }

  .hamburger {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
  }

  .hamburger span {
    height: 3px;
    width: 25px;
    background: #0077c8;
  }

  .nav-right {
    display: none;
  }

  .header-top {
    display: none;
  }
  
  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
    box-sizing: border-box;
  }


  .mobile-nav.active {
    right: 0;
  }

  .mobile-nav .close-btn {
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    float: right;
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }

  .mobile-nav li {
    border-bottom: 1px solid #eee;
  }

  .mobile-nav a {
    text-decoration: none;
    display: block;
    padding: 15px 10px;
    color: #57585a;
    font-weight: bold;
  }

  .expand-toggle {
    float: right;
    font-size: 28px;
    cursor: pointer;
    font-weight: 100;
  }

  .submenu {
    display: none;
    padding-left: 15px;
    background: #f9f9f9;
  }

  .submenu a {
    font-weight: normal;
    color: #0077c8;
  }
  .top-links {
    display: none;
  }
}


/*
@media (max-width: 768px) {
.hamburger {
display: flex;
}

.nav-right {
display: none;
flex-direction: column;
align-items: flex-start;
margin-top: 10px;
width: 100%;
background-color: #fff;
z-index: 999;
}

.nav-right.active {
display: flex;
}

.nav-links {
flex-direction: column;
gap: 0;
width: 100%;
}

.nav-links li {
width: 100%;
}

.nav-links a {
padding: 15px;
display: block;
border-bottom: 1px solid #eee;
}

.dropdown-menu {
display: none;
position: static;
padding: 0;
background-color: #f9f9f9;
width: 100%;
box-shadow: none;
}

.dropdown-menu li a {
padding-left: 30px;
}

.top-links {
display: none;
}
}



/* @media (max-width: 768px) {
.hamburger {
display: flex;
}

.nav-right {
display: none;
flex-direction: column;
align-items: flex-start;
margin-top: 10px;
width: 100%;
}

.nav-right.active {
display: flex;
}

.nav-links {
flex-direction: column;
gap: 0;
width: 100%;
}

.nav-links li {
width: 100%;
}

.nav-links a {
padding: 15px;
display: block;
border-bottom: 1px solid #eee;

}

.dropdown-menu {
position: static;
box-shadow: none;
border-radius: 0;
padding: 0;
}

.top-links {
display: none;
}
} */