/* Mobile Menu Dropdown Styles */
.menuvar-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menuvar-mobile > ul > li {
    border-bottom: 1px solid rgb(177 177 177 / 15%);
}

.menuvar-mobile > ul > li > a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}
.menuvar-mobile {
    text-align: left;
}

.menuvar-mobile > ul > li > a:hover {
    background-color: rgba(255,255,255,0.1);
    color: #000000;
}
.full-width-header .rs-header .right_menu_togle .canvas-logo img {
    max-height: 100px!important;
}
.close-btn{
    display: flex;
    justify-content: end;
}
.full-width-header .rs-header .right_menu_togle .canvas-logo
 {
    padding-left: 0;
    padding-bottom: 30px;
    margin-top: 0px;
    text-align: left;
    display: flex;
}

.menuvar-mobile .dropdown-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.menuvar-mobile > ul > li.active .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* Submenu Styles */
.menuvar-mobile > ul > li > ul {
    display: none;
    background-color: rgb(255 255 255);
    animation: slideDown 0.3s ease;
}

.menuvar-mobile > ul > li.active > ul {
    display: block;
}

.menuvar-mobile .submenu {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.menuvar-mobile .submenu:last-child {
    border-bottom: none;
}

.menuvar-mobile .submenu a {
    display: block;
    padding: 12px 40px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
    transition: all 0.3s ease;
}

.menuvar-mobile .submenu a:hover {
    background-color: rgba(255,255,255,0.1);
    color: #000000;
    padding-left: 45px;
}

/* Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 300px;
    }
}