
  /* اتجاه اللغة ديناميكياً حسب dir بالـ HTML */
  .lang-dir {
    direction: ltr;
    text-align: left;
  }
  
  html[dir="rtl"] .lang-dir {
    direction: rtl;
    text-align: right;
  }
  

.footer-link {
    color: #A5AA03;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
    transition: all 0.3s ease;
  }


.footer-link:hover {
    text-decoration: underline;
    color: #A5AA03;
}