

.header {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px; /* Adjust as needed */
  margin-right: 50px;
}

.menu-toggle {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 30px; /* Width of the burger icon */
}

.burger span {
  display: block;
  height: 4px; /* Height of each line */
  background: #333; /* Color of the burger lines */
  margin: 4px 0; /* Space between lines */
  transition: all 0.3s ease; /* Smooth transition for animations */
}

.burger:hover {
  transform: scale(1.03);
}

.nav-menu {
  display: none; /* Hide the menu by default */
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute; /* Position it absolutely */
  top: 60px; /* Adjust based on your header height */
  right: 10px; /* Adjust as needed */
  background: white; /* Background color of the menu */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow */
  z-index: 1000; /* Ensure it appears above other content */
}

.nav-menu.active {
  display: block; /* Show the menu when active */
}

.nav-menu li {
  padding: 10px; /* Adjust padding for menu items */
  text-decoration: none;
}

/* General styles for the menu */
.menu {
    background-color: #fff; /* Background color for the menu */
    /*border: 1px solid #ddd; /* Border around the menu */
    border-radius: 4px; /* Rounded corners */
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Remove default list styles */
.menu ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
}

/* Style the menu items */
.menu li {
    position: relative; /* Position for dropdown */
}

/* Style the links */
.menu a {
    text-decoration: none; /* Remove underline from links */
    color: #00BFFF; /* Text color */
    padding: 10px 40px; /* Padding for clickable area */
    display: block; /* Make the entire area clickable */
    transition: background-color 0.3s; /* Smooth background transition */
}

/* Change background on hover */
.menu a:hover {
    background-color: #AFEEEE; /* Light background on hover */
}

/* Dropdown styles */
.menu li ul {
    display: none; /* Hide dropdown by default */
    position: absolute; /* Position dropdown */
    top: 100%; /* Position below the parent */
    left: 0; /* Align to the left */
    background-color: white; /* Background color for dropdown */
    border: 1px solid #ddd; /* Border for dropdown */
    border-radius: 4px; /* Rounded corners for dropdown */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add shadow */
    z-index: 1000; /* Ensure dropdown is above other content */
}

/* Show dropdown on hover */
.menu li:hover > ul {
    display: block; /* Show dropdown on hover */
}

/* Style dropdown items */
.menu li ul li {
    display: block; /* Stack dropdown items */
}

/* Style dropdown links */
.menu li ul a {
    padding: 10px 15px; /* Padding for dropdown links */
    color: #00BFFF; /* Text color */
}

/* Change background on dropdown link hover */
.menu li ul a:hover {
    background-color: #AFEEEE; /* Light background on hover */
}