h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

body,
p,
div,
span,
a {
  font-family: "Inter", sans-serif;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}

/* ===== FOOTER BOX ===== */
.footer-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
}

.footer-box h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #00ffd5;
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 5px;
}

.footer-box p,
.footer-box a {
  font-size: 14px;
  line-height: 1.8;
  color: #e0e0e0;
  text-decoration: none;
}

.footer-box a:hover {
  color: #00ffd5;
}

/* ===== CONTACT LIST ===== */
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact i {
  color: #00ffd5;
  margin-top: 5px;
}

/* ===== QUICK LINKS ===== */
.footer-links a {
  display: block;
  margin-bottom: 10px;
  transition: 0.3s;
}

/* ===== SOCIAL ICONS ===== */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: #ffffff;
  color: #203a43;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}

.footer-social a:hover {
  background: #00ffd5;
  transform: translateY(-5px);
}

/* ===== LOGO ===== */
.footer-logo img {
  max-width: 180px;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 15px 10px;
  font-size: 13px;
  color: #cccccc;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .footer-container {
    text-align: center;
  }

  .footer-box h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}
