/* Add custom CSS styles below */ 
/* زر واتساب ثابت في أسفل الصفحة */
.whatsapp-button {
    position: fixed;
    bottom: 50px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 12px 15px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    z-index: 9999;
}

/* أيقونة واتساب */
.whatsapp-button::before {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg");
    background-size: cover;
}

/* تأثير التكبير عند تمرير الماوس */
.whatsapp-button:hover {
    transform: scale(1.1);
}