/* WhatsApp Floating Button Styles */
.whatsapp-btn {
    position: fixed;
    bottom: 15px;
    z-index: 9999;
    display: block;
}

html[dir="ltr"] .whatsapp-btn {
    left: 15px;
}

html[dir="rtl"] .whatsapp-btn {
    right: 15px;
}

.whatsapp-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;  
    height: 80px; 
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn a:hover {
    background-color: #20ba5c;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    transform: scale(1.08); /* تقليل نسبة التكبير عند التحويم */
}

.whatsapp-btn svg {
    width: 55px;  /* تكبير حجم الأيقونة إلى 45px */
    height: 55px; /* تكبير حجم الأيقونة إلى 45px */
}
