.footer-arabic {
  margin-left: -30px;
}

.site-footer {
  background-color: #080c14;
  padding: 40px 0 0 0;
  border-top: 1px solid #1a2030;
  margin-top: 50px;
  font-family: "Outfit", sans-serif;
  color: #ffffff;
}

.site-footer .footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-footer .footer-column {
  flex: 1;
  min-width: 200px;
  padding: 0 15px;
  margin-bottom: 20px;
}

.site-footer .footer-logo {
  margin-bottom: 15px;
}

.site-footer .footer-logo-img {
  width: 80px;
  height: 80px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.site-footer .footer-logo-img:hover {
  opacity: 1;
}

.site-footer .developer-logo {
  width: 70px;
  height: 70px;
  margin-left: 10px;
}

.site-footer .footer-text {
  margin-bottom: 20px;
  color: #b4b9c0;
  line-height: 1.2;
}

.site-footer .footer-text p {
  margin: 0;
  padding: 2px 0;
}

.site-footer .footer-credit {
  color: #4facfe;
  font-size: 16px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.site-footer .footer-column h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}

.site-footer .footer-underline {
  height: 5px;
  background-color: #1a2030;
  border-radius: 30px;
  position: absolute;
  top: 30px;
  left: 0;
  overflow: hidden;
}

.site-footer .footer-underline span {
  display: block;
  width: 15px;
  height: 100%;
  background-color: #4facfe;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 10px;
  animation: footer-moving 2s linear infinite;
}

@keyframes footer-moving {
  0% {
    left: -20px;
  }

  100% {
    left: 100%;
  }
}

.site-footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-column ul li {
  margin-bottom: 12px;
}

.site-footer .footer-column ul li a {
  color: #b4b9c0;
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}

.site-footer .footer-column ul li a:hover {
  color: #4facfe;
}

.site-footer .footer-contact-info {
  margin-bottom: 20px;
}

.site-footer .footer-contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #b4b9c0;
}

.site-footer .contact-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.site-footer .social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.site-footer .social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #121926;
  border: 1px solid #1a2030;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.site-footer .social-icon img {
  width: 18px;
  height: 18px;
  filter: invert(0.7);
}

.site-footer .social-icon:hover {
  background-color: rgb(52, 131, 201);
  border-color: rgb(52, 131, 201);
}

.site-footer .social-icon:hover img {
  filter: invert(1);
}

.site-footer .footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid #1a2030;
  width: 80%;
  color: #b4b9c0;
  font-size: 14px;
}

.site-footer .footer-bottom a {
  color: #b4b9c0;
  text-decoration: none;
}

.site-footer .footer-bottom a:hover {
  color: #4facfe;
}

/* Language Selector Styles */
.language-selector-container {
  position: relative;
  top: 50px;
  text-align: center;
  margin: 30px auto;
  padding: 20px;
  max-width: 600px;
}

.language-selector-container h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

.language-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.language-btn {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(79, 172, 254, 0.3);
  border-radius: 20px;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.language-btn:hover {
  background: rgba(79, 172, 254, 0.2);
  border-color: #4facfe;
  color: #ffffff;
}

.language-btn.active {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  border-color: #4facfe;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

@media (max-width: 768px) {
  .site-footer .footer-container {
    flex-direction: column;
  }

  .site-footer .footer-column {
    margin-bottom: 30px;
  }

  .site-footer .footer-logo-img {
    width: 60px;
    height: 60px;
  }

  .language-buttons {
    gap: 8px;
  }

  .language-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}
