.footer-section {
  background: linear-gradient(to right, #0f172a, #1e293b);
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo img {
  width: 250px;
  height: 125px;
  margin-bottom: 10px;
  border-radius: 10%;
}

.footer-logo p {
  font-size: 14px;
  color: #cbd5e1;
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #38bdf8;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li a {
  color: #cbd5e1;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: #38bdf8;
  transform: translateX(5px);
}

.footer-contact p,
.footer-contact a {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.footer-newsletter form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-newsletter input {
  padding: 10px;
  border: none;
  border-radius: 8px;
  flex: 1;
  min-width: 180px;
}

.footer-newsletter button {
  padding: 10px 20px;
  background: #38bdf8;
  border: none;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-newsletter button:hover {
  background: #0ea5e9;
}

.footer-bottom {
  border-top: 1px solid #334155;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom .social-icons a {
  color: #cbd5e1;
  font-size: 18px;
  margin: 0 10px;
  transition: 0.3s;
}

.footer-bottom .social-icons a:hover {
  color: #38bdf8;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
