.fixed-buttons {
    position: fixed;
    bottom: 90px;
    right: 50px;
    z-index: 1000;
}

.fixed-buttons a {
    display: block;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 40%;
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    font-size: 24px;
    color: white;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.fixed-buttons a:hover {
    transform: scale(1.1);
}

/* زر الاتصال */
.call-button {
    background-color: #000000;
}

/* زر الواتساب */
.whatsapp-button {
    background-color: #000000;
}

/* زر البريد */
.email-button {
    background-color: #000000;
}

/* زر البريد */
.linkedin-button {
    background-color: #000000;
}

/* تحسين العرض للجوال والأجهزة اللوحية */
@media (max-width: 768px) {
    .fixed-buttons {
        bottom: 70px;
        right: 20px;
    }

    .fixed-buttons a {
        width: 40px;
        height: 40px;
        font-size: 20px;
        line-height: 40px;
    }
}

@media (max-width: 480px) {
    .fixed-buttons {
        bottom: 60px;
        right: 15px;
    }

    .fixed-buttons a {
        width: 36px;
        height: 36px;
        font-size: 18px;
        line-height: 36px;
        margin-bottom: 6px;
    }
}