.offer-link {
  color: #9f0000;
  text-decoration: none;
  font-weight: bold;
  padding-left: 5px; 
  transition: color 0.3s ease;
  margin-right: 5px;
  background: #f7baba;
  border-radius: 30px;
}

.offer-link:hover {
  color: #0056b3;
}
.offer-link i {
  margin-right: 15px;
}
.news-ticker {
  background-color: #88031f; 
  color: #fff; 
  padding: 10px 0;
  text-align: center;
  overflow: hidden;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  z-index: 10;
}
.news-ticker .news-content {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
}
html[lang='ar'] .news-ticker .news-content {
  display: inline-block;
  white-space: nowrap; 
  animation: scroll-right 20s linear infinite;
}
@keyframes scroll-right {
  0% {
    transform: translateX(-100%); 
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(100%); 
  }
  100% {
    transform: translateX(-100%); 
  }
}
@media (max-width: 775px){
  .footer-logo{
      text-align: center;
  }
  .company_details{
      text-align: center;
  }
  .footer_wrapper img{
      width: 60%;
  }
  .container-fluid{
      margin-bottom: 55px;
  }
}
