#btn-back-to-top {
    position: fixed;
    /* bottom: 13px; */
    bottom: -113px;
    right: 10px;
    border-radius: 50%;
    display: none;
    color: rgb(255 255 255);
    /* background: #ff0400; */
    background: #d9091e;
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
    z-index: 9998;
}

.call-btn {
    position: fixed;
    /* bottom: 70px; */
    bottom: 13px;
    right: 1px;
    color: rgb(255 255 255);
    background: #2e357f;
    border-radius: 40px;
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2e357f;
    z-index: 9998;

    a {
        text-decoration: none;
        color: white;
    }

    &:hover {
        background: #2838eb;
    }
}

.whatsapp-btn {
    position: fixed;
    /* bottom: 130px; */
    bottom: 70px;
    right: 1px;
    color: #ffffff;
    background: #27b300;
    border: 1px solid #27b300;
    border-radius: 40px;
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;

    a {
        text-decoration: none;
        color: white;
    }
}

.fixed-vertical-btn {
    position: fixed;
    right: 0;
    bottom: 20%;
    transform: translateY(-50%) rotate(180deg);
    background-color: #e00000;
    color: #fff;
    padding: 14px 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    z-index: 9998;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-radius: 0px 8px 8px 0px;
    box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Hover effect */
.fixed-vertical-btn:hover {
    background-color: #ff9800;
    color: #000;
    padding-right: 16px;
}