/* Top Nav Start */

.top-nav {
  background-color: #222;
  padding: 20px;
  padding-left: 10rem;
  padding-right: 10rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.topnav-text {
  color: white;
  font-size: 14px;
  text-align: left;
  margin-bottom: 0px !important;
}

.nav-icons {
  display: flex;
  flex-direction: row;
  gap: 28px;
  list-style: none;
  margin-bottom: 0px !important;
}

.nav-icons li a {
  color: white;
}

.nav-icons-section {
  text-align: right;
  justify-content: end;
}

/* Top Nav End */

/* Main Navigation Start */

.navigation-bar-main {
  background-color: rgb(255, 255, 255);
  justify-content: center;
  align-items: center;
  text-align: center;
}

#site-navigation ul a {
  color:  #6C6C6C;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
}

#site-navigation ul li {
  list-style: none;
}

#site-navigation ul .current_page_item a {
  color: #062b48;
}

#site-navigation ul {
  display: flex;
  flex-direction: row;
  gap: 29px;
  align-items: center;
  margin-bottom: 0px !important;
}

/* Dropdown container */
#menu-item-24 {
  position: relative;
}

#menu-item-24 > .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1000;
}

#menu-item-24:hover > .sub-menu {
  display: block;
}

#menu-item-24 .sub-menu li {
  padding: 10px 15px;
}

#menu-item-24 .sub-menu li a {
  color: #333;
  text-decoration: none;
}

#menu-item-24 .sub-menu li a:hover {
  color: #0073aa;
}

#menu-item-24 > a::after {
  content: "▼"; /* Dropdown icon */
  font-size: 12px;
  margin-left: 5px;
  display: inline-block;
}

#openmenu,
#closemenu,
#menu-area,
#close {
  display: none;
}
#menu,
#close {
  fill: rgb(0, 0, 0);
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.navigation-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1em;
  position: relative;
  justify-content: space-between;
  padding-left: 10rem;
  padding-right: 10rem;
}

.request-btn-home {
  background-color: #bcd536;
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
  border: none;
  border-radius: 6px;
  color: #222;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}

.request-btn {
  background-color: #ffaf51;
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
  border: none;
  border-radius: 16px;
  color: #062b48;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}

/* Responsive Navigation */

@media (max-width: 998px) {
  .top-nav {
    padding-left: 1rem;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding-right: 0;
  }

  .topnav-text {
    font-size: 10px;
    text-align: center;
  }

  .nav-icons {
    justify-content: center;
  }

  /* Main Navigation Responsive */

  .navigation-bar {
    padding: 15px;
    align-items: center;
    justify-content: center;
    gap: 190px;
  }

  #site-navigation {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: #bcd536;
    background-color: #222;
    height: calc(53vh - 100%);
    flex-direction: column;
    z-index: 1;
  }

  #site-navigation ul {
    flex-direction: column;
    padding-top: 5rem;
    gap: 20px;
  }

  #site-navigation ul .current_page_item a {
    color: white;
  }

  #site-navigation ul a {
    font-size: 30px;
  }

  #menu-area {
    display: block;
  }

  .request-btn-home {
    display: none;
  }

  .logo-header img {
    width: 100px;
  }
}
/* Main Navigation End */
