/* Global Styles */
body {
  margin: 0;
  padding: 0;
}

/* Navigation Drawer Styles */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: top 0.3s ease;
}

.nav-toggle-label {
  display: none; /* Hide by default */
}

.drawer-menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100vh;
  background-color: #000;
  transition: left 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.drawer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-menu ul li {
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

.drawer-menu ul li a {
  color: #fff;
  text-decoration: none;
}

/* Navigation Drawer Animation */
#nav-toggle:checked ~ .drawer-menu {
  left: 0;
}

#nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
  opacity: 0;
}

#nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hide the Checkbox */
#nav-toggle {
  display: none;
}

/* Media Query for Mobile Screens */
@media screen and (max-width: 767px) {
  .nav-toggle-label {
    display: block; /* Show on mobile screens */
    position: fixed;
    top: 20px;
    left: 20px;
    cursor: pointer;
    padding: 20px;
    z-index: 1000;
  }

  .nav-toggle-label span {
    display: block;
    background-color: #fff;
    height: 3px;
    width: 25px;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
  }
}

.main-page-wrapper {
    margin-top: 0!important;
    
}
.whb-main-header{
    position: fixed!important;
}

.wd-header-mobile-nav{
      display:none;
  }

