#scrollToTopBtn {
    position: fixed;
    bottom: 80px;
    right: 80px;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    color: #4e342e;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index: 999;
}

#scrollToTopBtn:hover {
    background-color: #fff;
    transform: scale(1.1);
}

#scrollToTopBtn i {
    transition: transform 0.3s ease;
}

#scrollToTopBtn:hover i {
    transform: translateY(-3px);
}

.nav-item {
    position: relative;
}

.nav-item .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* Position it below the parent */
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 200px;
    padding: 0;
}

/* Style for dropdown items */
.nav-item .dropdown-item {
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s ease;
}

.nav-item .dropdown-item:hover {
    background-color: #f8f9fa;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.arrow-down {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .arrow-down {
    transform: rotate(180deg);
}
