header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 6vw;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  gap: 3vw;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}

.nav-links a {
  color: var(--text-color);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary-color);
}

.fullscreen {
  display: none;
}

.menu {
  position: relative;
  display: inline-block;
}

.menu-button {

  cursor: pointer;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 1rem;
  min-width: 300px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 100;
}

.dropdown#services-dropdown {
  grid-template-columns: 1fr 1fr;
  min-width: 600px;
}
.menu:hover .dropdown {
  display: grid;
}

.section {
  margin-bottom: 1rem;
}

.section-title {
  font-weight: bold;
  margin-bottom: 0.4rem;
  color: #333;
}

.dropdown a {
  display: block;
  text-decoration: none;
  color: #333;
  margin-left: 0.5rem;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.dropdown a:hover {
  color: var(--secondary-color);
}

@media (max-width: 996px) {
  .nav-links a {
    color: var(--white);
    font-size: 1.2rem;
  }

  .fullscreen {
    display: block;
  }

  .fullscreen-menu .primary_btn {
    font-size: 1.4rem;
  }

  header {
    display: none;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: var(--secondary-color);
    position: relative;
    z-index: 10;
  }

  .hamburger {
    font-size: 3rem;
  }

  .fullscreen-menu {
    position: fixed;
    top: -150%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    color: white;
    transition: top 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    z-index: 1000;
    gap: 4vw;
  }

  .fullscreen-menu.open {
    top: 0;
  }

  .fullscreen-menu .close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 5rem;
    cursor: pointer;
  }

  .fullscreen-menu .nav-links, .fullscreen-menu .nav-links div {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    text-align: center;
  }

  .fullscreen-menu .nav-links .dropdown-full{
    padding: 0.5rem;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    height: calc(100% + 0.5rem);
  }

  .fullscreen-menu .nav-links .dropdown-buttom {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
}
