.fixed-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.icon svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.icon:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.icon:hover svg {
    fill: #f8f9fa;
}

.icon:hover::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    animation: pulse 1.5s infinite;
}

.phone-icon {
    background-color: #007bff;
    /* اللون الأزرق لاتصال */
}

.whatsapp-icon {
    background-color: #25d366;
    /* اللون الأخضر لواتساب */
}

@keyframes fadeIn {
    from {
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* 
index 
*/






