.whatsapp_float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 100;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.whatsapp_icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}



/* تنسيق البوب أب */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 80%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.button-custom {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.button-custom:hover {
    background-color: #128C7E;
}



  /* تنسيق البوب أب */
.news-ticker {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    overflow: hidden;
    position: relative;
    z-index: 1000; /* إضافة z-index لضمان ظهور الشريط فوق العناصر الأخرى */
    height: 40px; /* تحديد ارتفاع الشريط الإخباري */
    line-height: 40px; /* ضبط ارتفاع النص ليتماشى مع ارتفاع الشريط */
}

.news-ticker-content {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    animation: ticker 20s linear infinite; /* تعديل سرعة الحركة */
}

@keyframes ticker {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}