footer {
  width: 100%;
  background: linear-gradient(to right, #9d17eb, #11005a);
  color: #11005a;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  padding:0px;
}

.footer-container {
    border-radius: 70px;
    background-color: white;
    width:90%;
    min-height: 40vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 10px;
  margin: 0 auto;
  align-items: center;
}

.footer-logo img {
  height: 150px;
  width: auto;
  border-radius: 10px;
}

.footer-links, .footer-projects, .footer-social {
  min-width: 150px;
}

.footer-links h4,
.footer-projects h4,
.footer-social h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-links ul,
.footer-projects ul,
.footer-social ul {
    font-size: 14px;
  font-weight: 400;
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-projects ul li,
.footer-social ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-projects ul li a,
.footer-social ul li a {
  color: #11005a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-projects ul li a:hover,
.footer-social ul li a:hover {
  color: #9d17eb; /* subtle highlight on hover */
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 15px;
  color: rgba(255,255,255,0.8);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-links, .footer-projects, .footer-social {
    text-align: center;
  }
  .footer-logo {
    margin-bottom: 20px;
  }
}
