
/* General Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Hamburger Menu */
.hamburger-menu {
    font-size: 1.8rem;
    cursor: pointer;
    margin-right: 10px;
    display: none;
}

/* Menu List Header */
.menulisthearder {
    display: flex;
}

.menulisthearder ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.menulisthearder ul li a {
    text-decoration: none;
    color: #333;
}

.menulisthearder ul li a:hover {
    text-decoration: none;
}

/* Drawer Styling */
.drawer {
    position: fixed;
    top: 0;
    left: -60%;
    width: 60%;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease;
    z-index: 1000;
}

.drawer-header {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

.drawer-close {
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #F65D4E;
}

.drawer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-list li {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.drawer-list li a {
    text-decoration: none;
    color: #F65D4E;
}

.drawer-list li a:hover {
    color: #0000;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.drawer-overlay.active {
    display: block;
}

.drawer.active {
    left: 0;
}

/* .drawer-logo img{
    height: 70px;
    width: 100%;
} */

/* Responsive Styles */
@media (max-width: 768px) {
    .menulisthearder {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }
}
 