

.news-container {
    overflow: hidden;
    white-space: nowrap; /* لمنع التفاف النص */
    animation: news-scroll 15s linear infinite;
   
  }
  
  .news-item {
    display: inline-block;
    padding-right: 20px;
    color: #ffffff;
    background-color: #0a565e;
  }
  
  @keyframes news-scroll {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }


  .social-icons {
    display: flex;
    flex-direction: column; /* لترتيب الأيقونات عموديًا */
    position: fixed; /* لتثبيت الأيقونات على الجانب */
    top: 50%; /* لضبط الموضع الرأسي */
    right: 19.7px; /* لضبط الموضع الأفقي */
    transform: translateY(-50%); /* لضبط الموضع الرأسي بدقة */
    z-index: 1000; /* للتأكد من ظهور الأيقونات فوق العناصر الأخرى */
  }
  
  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 10px; /* مسافة بين الأيقونات */
    background-color: #0a565e; /* لون خلفية الأيقونات */
    color: #fff; /* لون الأيقونات */
    border-radius: 50%; /* لجعل الأيقونات دائرية */
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease; /* تأثير الانتقال عند التمرير */
  }
  
  .social-icon:hover {
    background-color: #03565ff8; /* لون الخلفية عند التمرير */
  }
  
  /* ألوان خاصة لكل أيقونة (اختياري) */
  .fa-whatsapp { background-color: #0a565e; }
  .fa-facebook-f { background-color: #0a565e; }
  .fa-twitter { background-color: #0a565e; }
  .fa-instagram { background: linear-gradient(45deg, #0a565e, #0a565e, #0a565e, #0a565e, #0a565e, #0a565e); }
  .fa-telegram-plane { background-color: #0a565e; }


  