<!DOCTYPE html>
<html lang="ar">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>واتساب</title>
    <!-- تحميل مكتبة Font Awesome للأيقونات -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
    <style>
        /* تنسيق الأيقونة */
        .whatsapp-icon {
            position: fixed;
            bottom: 30px;  /* تحديد المسافة من أسفل الصفحة */
            right: 30px;   /* تحديد المسافة من الجهة اليمنى */
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            padding: 20px;
            font-size: 40px;  /* حجم الأيقونة */
            box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            z-index: 100;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        /* تأثير عند مرور الماوس */
        .whatsapp-icon:hover {
            background-color: #128C7E;
            transform: translateY(-10px);  /* تحريك الأيقونة لأعلى عند التمرير */
            box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.3); /* تأثير الظل */
        }

        /* تأثير الوميض */
        .whatsapp-icon:active {
            transform: scale(0.95); /* تصغير الأيقونة قليلاً عند الضغط عليها */
        }
    </style>
</head>
<body>
    <!-- إضافة أيقونة الواتساب -->
    <a href="https://wa.me/201555519427" class="whatsapp-icon" target="_blank">
        <i class="fab fa-whatsapp"></i>
    </a>
</body>
</html>