.asanbuttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.asanbutton {
    display: flex;
    justify-content: center;
    flex-direction: row;
    direction: rtl;
    text-align: right;
    width: 290px;
    padding: 15px;
    border-radius: 18px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    transition: all 0.2s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transform: scale(1);
}

.asanbutton .icon {
    margin-left: 10px;
}

.online-request {
    background-color: #40bcd8;
}
.online-request:hover {
    background-color: #5ed0e7 !important;
    color: #f5f5f5 !important;
}

.whatsapp {
    background-color: #25d366;
}
.whatsapp:hover {
    background-color: #3fdd78 !important;
     color: #f5f5f5 !important;
}

.phone-support {
    background-color: #2b4db6;
}
.phone-support:hover {
    background-color: #4768d0 !important;
     color: #f5f5f5 !important;
}

.asanbutton:hover {
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.15);
}

.asanbutton:active {
    transform: scale(0.95);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.asanbuttons .asanbutton:last-child {
    margin-bottom: 30px;
}
