@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700;900&display=swap');

.footer {
  background: #121212;
  color: #fff;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  text-align: left;
}


.footer-section {
  min-width: 250px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #476093;
  font-weight: 600;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #bbb;
}


.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #476093;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #222;
  color: #476093;
  font-size: 18px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  background: #476093;
  color: #121212;
  transform: scale(1.1);
}


.footer-section form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section input[type="email"] {
  padding: 12px;
  border: none;
  border-radius: 5px;
  width: 100%;
  font-size: 14px;
  background: #222;
  color: #fff;
}

.footer-section button {
  padding: 12px;
  border: none;
  border-radius: 5px;
  background: #476093;
  color: #121212;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.footer-section button:hover {
  background: #476093;
  transform: translateY(-2px);
}


.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #bbb;
}

.footer-bottom a {
  color: #476093;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #476093;
}


@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
}
