/* Add custom CSS styles below */ 
footer::after {
    content: "برمجة وتطوير - TAZ PLUS   ";
    display: block;
    text-align: center;
    padding: 20px 0;
    font-size: 20px;
    font-weight: bold;
    color: transparent; /* تجعل النص شفاف لإظهار التدرج */
    background: linear-gradient(to right, #ff5c00, skyblue, cyan, darkblue, cyan, skyblue, #ff4d00);
    background-size: 400% 100%; /* زيادة العرض لجعل التدرج أكثر نعومة */
    animation: gradient-animation 10s ease infinite; /* زيادة مدة التأثير لنعومة أكبر */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; /* تأثير الخلفية على النص فقط */
>