/* =======================Footer====================================== */

.footer {
  background: #d3d3d3;
  padding: 30px 50px;
  color: #000;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;   /* ✅ Desktop default row */
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 20px;
}

.footer-address,
.footer-links {
  max-width: 45%;
}

.footer h3 {
  margin-bottom: 10px;
}

.footer p {
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li a {
  display: inline-flex;
  align-items: center; /* vertically center img + text */
  gap: 6px; /* optional spacing between icon and text */
  text-decoration: none; /* optional: remove underline */
}
.footer-links ul li img {
  height: 20px; /* adjust to your liking */
  width: auto;
}

.footer-links a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  transition: color 0.3s;
  margin-bottom: 5px;
}

.footer-links a:hover {
  color: #0078d7;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #bbb;
  padding-top: 10px;
}

/* 📱 Mobile responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;   /* ✅ Mobile stacked */
    align-items: center;
    text-align: center;
  }

  .footer-address,
  .footer-links {
    max-width: 100%;
  }

  .footer-links li {
    justify-content: center;
  }
  
}


