footer {
  background-color: var(--color-primary);
}

.download-buttons a {
  color: var(--color-primary);
  font-size: clamp(10px, 0.8vw, 16px);
}

.footer-separator {
  border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
  margin-top: 20px;
  padding-top: 20px;
  font-size: 13px;
  margin-bottom: 0;
  /*    padding-bottom:00px;*/
}

footer ul li a {
  margin-bottom: 2px !important;
}

footer ul li a {
  font-size: 11px;
}
footer a.text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important
}

footer h6 {
  font-size: 17px;
}

.contact-col li {
  font-size: 13px;
  overflow-wrap: anywhere;
}

/* Allow email to wrap into multiple lines */
footer .contact-col a[href^="mailto"] {
  display: inline-block;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}

.btn-footer-download {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, #f58220, #1f4e8c) border-box;
  color: var(--color-primary) !important;
  font-weight: 700;
  font-size: 12px;
  border-radius: 50rem;
  padding: 0.5rem 1.5rem;
  display: inline-flex;
  align-items: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn-footer-download:hover {
  background-color: #f0f0f0 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .about-col {
    margin-right: 0px;
  }

  footer h6 {
    font-size: 15px;
  }

  footer ul li a {
    font-size: 13px;
    margin-bottom: 0px !important;
  }

  footer ul li p {
    font-size: 11px;
  }

  .contact-col li {
    font-size: 13px;
    overflow-wrap: anywhere;
    /*        color: red;*/
  }
}

@media (max-width: 576px) {
  footer h6 {
    font-size: 15px;
  }

  footer ul li a {
    font-size: 13px;
    margin-bottom: 0px !important;
  }

  footer ul li {
    font-size: 13px;
    overflow-wrap: anywhere;
  }
}

/* Force wrapping for long email in footer */
footer .contact-col a {
  display: block !important;
  max-width: 100%;
  white-space: normal !important;
  word-break: break-all !important;
  overflow-wrap: break-word !important;
  line-height: 1.4;
}

/* Custom styles for footer layout */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem;
}

.footer-column {
  flex: 1 1 calc(25% - 1rem);
  min-width: 200px;
}

.footer-column h6 {
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-contact {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-social a {
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.footer-social a:hover {
  transform: scale(1.1);
}
