ul {
    list-style: none;
}

/* General Navbar Styles */
.navbar {
    padding: 0.5rem 1.5rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo {
    height: 3em;
    object-fit: contain;
}

/* Navbar Links */
.navbar-links {
    color: #000;
    font-weight: 600;
    font-size: 1em;
    border-bottom: 0.2em solid transparent;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    margin: 0px 5px;
}

.navbar-links:hover,
.active-link {
    color: var(--primary-color);
    border-bottom: 0.2em solid var(--primary-color);
}

/* Dropdown Styles */
.dropdown1 {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 92%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    min-width: 10em;
    box-shadow: 2px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 0.5em;
}

.dropdown-content a {
    display: block;
    color: white;
    padding: 0.5em;
    text-decoration: none;
    text-align: center;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.dropdown1:hover .dropdown-content {
    display: block;
}

/* Mobile Drawer */
.drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    padding: 20px;
  }
  
  .drawer.open {
    transform: translateX(0);
  }
  
  .drawer-menu {
    list-style: none;
    padding: 0;
    padding-top: 50px !important;
    margin: 0;
  }
  
  .drawer-menu > li {
    margin-bottom: 12px;
  }
  
  .drawer-menu a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 6px 10px;
    border-radius: 4px;
    transition: background 0.2s;
  }
  
  .drawer-menu a:hover {
    color: var(--primary-color);
  }
  
  .close-btn {
    background: none;
    border: none;
    font-size: 28px;
    float: right;
    margin-bottom: 20px;
    cursor: pointer;
  }
  
  .submenu {
    list-style: none;
    padding-left: 15px;
    display: none;
  }
  .submenu.open {
    display: block;
  }
  
  .submenu li {
    margin-bottom: 8px;
  }

  @media (min-width: 900px){
    .drawer {
        display: none;
    }
  }