footer {
  margin-top: 10rem;
  background-color: #010b18;
  color: white;
}
footer p{
  text-align: center;
  font-size: 1.2rem;
 
}
/* Base footer container */
.footer-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap; /* allow wrapping on smaller screens */
  padding: 30px;
  gap: 20px; /* spacing between items when wrapping */
}

/* Footer links */
.footer-container .footer-links,
.footer-container .footer-socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-container .footer-links li,
.footer-container .footer-socials li {
  list-style: none;
  padding: 10px 0;
}
.footer-socials ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  gap: 15px;
}

.footer-container .footer-links a,
.footer-container .footer-socials a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-container .footer-links a:hover,
.footer-container .footer-socials a:hover {
  color: #00aced; /* example hover color */
}

.footer-container .footer-socials p {
  color: white;
  font-weight: 500;
  margin-top: 10px;
}

/* Footer logo */
.footer-logo img {
  width: 200px;
  max-width: 100%;
  height: auto;
  border-radius: 10%;
}

/* Responsive styles */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-container .footer-links,
  .footer-container .footer-socials {
    align-items: center;
  }

  .footer-container .footer-links li,
  .footer-container .footer-socials li {
    padding: 5px 0;
  }
}

@media (max-width: 480px) {
  .footer-logo img {
    width: 150px;
  }

  .footer-container {
    padding: 20px;
  }
}
