/* footer.css */


.main-footer {
  background-color: #ffffff;
  border-top: 2px solid #00BFFF;
  padding: 40px 20px;
  direction: rtl;
  color: #444;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 220px;
  
}

.logo-section h3 {
  color: #00BFFF;
  margin: 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 50px;
  height: auto;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a,
.footer-section a {
  color: #444;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section a:hover {
  color: #00BFFF;
}

.social-icons a {
  margin-left: 10px;
  display: inline-block;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: #666;
}

.footer-bottom hr {
  border-color: #ccc;
  margin-bottom: 15px;
}

.footer-bottom span {
  color: #00BFFF;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-section {
    width: 100%;
    margin-bottom: 20px;
  }

  .logo-wrap {
    flex-direction: row;
  }
}


.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.social-links a {
  color: #1877f2; /* لون فيسبوك */
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #000; /* أو أي لون عند التمرير */
}

