a {
  text-decoration: none;
  color: inherit;
}
/* =========================
   FOOTER SECTION
========================= */
.ft-section {
  background: #ffffff;
  padding: 40px 20px 20px;
  /* font-family: Inter, sans-serif; */
}

.ft-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  /* border-top: 1px solid #ddd; */
  padding-top: 40px;
}

.ft-left {
  max-width: 400px;
}

.ft-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.ft-logo img {
  width: 90px;
}

.ft-logo span {
  font-size: 14px;
  font-weight: 500;
}

.ft-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.ft-social {
  display: flex;
  gap: 15px;
}

.ft-social img {
  width: 20px;
  cursor: pointer;
}


/* Links */
.ft-links h4,
.ft-contact h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
}

.ft-links ul {
  list-style: none;
  padding: 0;
}

.ft-links li {
  margin-bottom: 8px;
}

.ft-links a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

.ft-links a:hover {
  text-decoration: underline;
}


/* Contact */
.ft-contact p {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}


/* Bottom */
.ft-bottom {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-top: 30px;
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

  .ft-container {
    flex-direction: column;
    gap: 30px;
  }
}

  