/* ---------- Footer Base ---------- */
footer {
  background-color: #0b1720;
  color: #fff;
  font-family: 'Arial', sans-serif;
  padding: 50px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Footer Sections ---------- */
.footer-links,
.footer-contact,
.footer-newsletter,
.footer-social {
  flex: 1 1 220px;
}

/* Section Headings */
.footer-container h4{margin-bottom:10px;color:var(--accent-2);}

/* Links */
footer a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  transition: color 0.3s;
}

footer a:hover {
  color: #ffd400;
}

/* ---------- Newsletter ---------- */
.footer-links a {
  display: block;
  color: #ffffff;                     /* normal link color from #2 */
  padding: 4px 0;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: #ffd400;                     /* hover color from #2 */
}

/* Bottom small text */
.footer-bottom {
  margin-top: 25px;
  text-align: center;
  font-size: 0.85rem;
  color: #9fb7d6;                     /* footer text soft blue from #2 */
  border-top: 1px solid #1a2a36;      /* line color from #2 */
  padding-top: 20px;
}

/* Newsletter colors from file #2 */
.footer-newsletter p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #9fb7d6;                     /* soft text color */
}

.footer-newsletter input[type="email"] {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  flex: 1 1 200px;
  font-size: 14px;
}

.footer-newsletter button {
  padding: 10px 20px;
  background-color: #00d2ff;          /* button color from #2 */
  border: none;
  border-radius: 5px;
  color: #0b1720;                     /* button text */
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-newsletter button:hover {
  background-color: #0095c0;          /* hover color from #2 */
}

/* ---------- Social ---------- */
.footer-social img {
  width: 100px;
  margin-bottom: 15px;
margin-right: 30px;
}

.social-icons {
  display: flex;
  
}

.social-icons a {
  color: #9fb7d6;
  font-size: 16px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #00d2ff;
}

/* ---------- Footer Bottom ---------- */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #1a2a36;
  padding-top: 20px;
  font-size: 13px;
  color: #9fb7d6;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  

  .social-icons {
    justify-content: center;
  }

  .footer-social img {
    margin: 0 auto 15px;
  }
}



