body {
  margin: 0;
  font-family: sans-serif;
}

.navbar {
  position: fixed;
  z-index: 50;
  width: 100%;
  height: 67px;
  padding: 0 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  background: white;
}

.logo {
  color: black;
  font-weight: 500;
}

.hamburger {
  display: flex;
  position: relative;
  width: 56px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.line {
  position: absolute;
  width: 100%;
  height: 3px;
  background: black;
  border-radius: 9999px;
  transition: all 0.3s ease-in-out;
}

.line1 {
  top: 0;
}

.line2 {
  top: 8px;
  transition-duration: 0.1s;
}

.line3 {
  top: 16px;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.5s ease-in-out;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.nav-menu li {
  margin: 20px 0;
}

.nav-menu a {
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  color: black;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #3b82f6; /* Tailwind's blue-500 */
}

.nav-links {
  display: none;
}

.nav-links a {
  color: black;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: normal;
  margin-right: 20px;
}

.network-link {
  position: relative;
  font-weight: bold;
}

.network-link .underline {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50%;
  height: 2px;
  background: black;
  transform: translateX(-50%);
}

.contact-btn {
  background: black;
  color: white !important;
  padding: 0 12px;
  height: 32px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
}

/* Responsive */
@media screen and (min-width: 640px) {
  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex;
    margin-left: auto;
    gap: 20px;
  }
}

@media screen and (min-width: 768px) {
  .navbar {
    padding-left: 40px;
    padding-right: 40px;
  }

  .nav-links {
    gap: 44px;
  }

  .nav-menu {
    width: 50%;
  }
}
