/* Footer Styles */
.footer {
  background: linear-gradient(90deg, #1e293b, #0f172a);
  color: #ffffff;
  padding: 40px 20px 10px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-logo h2 {
  color: #e7e7c9;
  font-size: 1.8rem;
}

.footer-logo span {
  color: #0dada7f8;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  text-decoration: none;
  color: #e2e8f0;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #38bdf8;
}

.footer-social a {
  display: inline-block;
  margin: 5px 10px;
  text-decoration: none;
  color: #f8fafc;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #0dada7f8;
}

.footer-bottom {
  border-top: 1px solid #334155;
  margin-top: 30px;
  padding-top: 10px;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #0dada7f8;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer-logo h2 {
    font-size: 1.5rem;
  }
  .footer-links, .footer-social {
    margin-top: 20px;
  }
}
