.alzaiem-copy-rights {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.alzaiem-footer-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    background-size: 200% 200%;
    font-weight: bold;
    font-size: 16px;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: gradientMove 4s ease infinite;
}
.alzaiem-footer-link:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}