@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Mulish', sans-serif;
}
html {
    scroll-behavior: smooth;
}

/* MOBILE NAVBAR */
.category-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.category-item {
    border-bottom: 1px solid #e9ecef;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
}

.toggle-icon::after {
    content: '+';
    font-weight: bold;
    font-size: 18px;
    color: #6c757d;
}

.category-item.open>.category-link .toggle-icon::after {
    content: '-';
}

.submenu,
.sub-submenu {
    display: none;
}

.category-item.open>.submenu,
.category-item.open>.sub-submenu {
    display: block;
}

/* Level styles */
.level-1 {
    font-weight: 600;
    color: #fd7e14;
    /* Orange */
    background-color: #fff;
}

.level-2 {
    padding-left: 32px !important;
    font-size: 0.95rem;
    font-weight: 500;
    background-color: #f8f9fa;
}

.level-3 {
    padding-left: 48px !important;
    font-size: 0.9rem;
    font-weight: 400;
    background-color: #fdfdfd;
}

.static-item {
    padding: 10px 16px;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

.offcanvas-start {
    width: 80vw !important;
}

/* MOBILE NAVAR END */




/* DESKTOP-ONLY */
/* 3rd-level dropdown support on desktop */
@media (min-width: 992px) {


    /* Show main dropdown on hover */
    .dropdown:hover>.dropdown-menu {
        display: block;
    }

    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu>.dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
        display: none;
    }

    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }
}

.navbar-brand img {
    width: 150px;
    height: 60px;
    object-fit: cover;
}

/* Optional: Animation */
.dropdown-menu.animate.slideIn {
    animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}