/* Modern Footer */
.modern-footer {
  background: #fff;
  color: #333;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
}

/* Footer Top Section */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

/* Logo Section */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img {
  max-height: 35px; /* Smaller logo */
  width: auto;
}
.footer-logo h2 {
  font-size: 22px;
  font-weight: 600;
}

/* Horizontal Navigation */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
}
.footer-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}
.footer-nav a:hover {
  color: #ff6600;
}

/* Footer Bottom Section */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

/* Social Icons - Horizontal */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap; /* Prevents wrapping */
  gap: 15px;
}
.social-icons a {
  font-size: 20px;
  color: #333;
  transition: color 0.3s, transform 0.3s;
}
.social-icons a:hover {
  color: #ff6600;
  transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
