.mcs-footer-wrapper {
  font-family: "Poppins", sans-serif;
  background-color: #3573f0; /* Clean White Background */
  padding-top: 60px;
  position: relative;
  border-top: 1px solid #f1f5f9;
}

/* Link Hover Effect */
.mcs-footer-link {
  position: relative;
  color: #ffffff;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 400;
}

.mcs-footer-link:hover {
  color: #bebebe;
  transform: translateX(5px); /* Subtle shift effect */
}

/* Social Icon Interaction */
.mcs-social-icon {
  width: 40px;
  height: 40px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.3s ease;
  color: #1e293b;
  border: 1px solid #e2e8f0;
}

.mcs-social-icon:hover {
  background: #06b6d4;
  color: #ffffff;
  border-color: #06b6d4;
  box-shadow: 0 10px 15px rgba(6, 182, 212, 0.2);
}

.mcs-footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  position: relative;
}

.mcs-footer-heading::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #06b6d4;
  margin-top: 8px;
}
