
body {
  font-family: 'Karla', sans-serif;
}

:root{
  --nav-max: 1280px;   
  --nav-pad: 20px;     /* min side padding */
}

.nav-links > li > a, .top-links {
  font-family: 'Karla', sans-serif;
}

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

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

.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-evenly;
  align-items: center;
  padding: 20px 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: Montserrat,sans-serif;
  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: 18px;
  font-weight: 400;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-bottom 0.3s;
}

.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 directly under the link */
  left: 0;
  display: none;
  background: #ffffff;
  min-width: 240px;
  width: max-content;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  padding: 10px 40px;
  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: bold;
  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: 'Helvetica Neue', Helvetica, Arial, sans-serif;
          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;
        }

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

        .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;
      }
    } */