.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* تصميم الفوتر */
.footer {
  background-color: #ffffff;
  padding: 20px 0;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  width: 120px;
}

.footer-links {
  display: flex;
  gap: 50px;
  text-align: justify;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
  list-style: disc;
}

.footer-links a {
  text-decoration: none;
  color: #1d3557;
  font-size: 17px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #e63946;
}

.footer-contact p {
  font-size: 16px;
  color: #1d3557;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0;
}

.footer-contact img {
  width: 30px;
}

@media (max-width: 425px){
    .footer-contact{
        display: none;
    }
    .footer-links{
        margin-right: 14%;
    }
}