/* تنسيق أيقونة الرئيسية: تموج بين الذهبي والأزرق */
.fa-home, .fas.fa-home {
    position: relative !important;
    top: 2px !important; /* خفض الأيقونة لتكون على خط واحد مع النصوص */
    font-size: 24px !important;
    display: inline-block !important;
    
    /* التدرج اللوني بين الأزرق والذهبي (ألوان راية بريس) */
    background: linear-gradient(120deg, #1a73e8, #d4af37, #1a73e8);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* حركة التموج الاحترافية */
    animation: blueGoldWave 4s ease-in-out infinite !important;
    filter: drop-shadow(0px 1px 1px rgba(0,0,0,0.1));
}

/* تعريف حركة التموج (تغيير الألوان بانسيابية) */
@keyframes blueGoldWave {
    0% {
        background-position: 0% center;
        transform: scale(1);
    }
    50% {
        background-position: 100% center;
        /* لمعان ذهبي خفيف عند المنتصف */
        filter: drop-shadow(0px 0px 5px rgba(212, 175, 55, 0.3));
        transform: scale(1.05);
    }
    100% {
        background-position: 0% center;
        transform: scale(1);
    }
}


