/* === Footer Base Styles === */
footer {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #000; /* dark background for contrast */
  color: #fff;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* === Particle Canvas === */
#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: transparent !important; /* ensure no white layer */
}

/* === Footer Content === */
.footer-content {
  position: relative;
  z-index: 1; /* keeps above canvas */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* === Footer Sections === */
.footer-section {
  flex: 1;
  min-width: 250px;
  padding: 10px;
}

/* === Logo and Text === */
.footer-logo {
  width: 180px;
  margin-bottom: 10px;
}

.tagline {
  margin: 10px 0px 0px 0px;
  font-size: 14px;
  color: #ccc;
}

.footer-section a {
  color: darkgray;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #fff;
}

/* === Social Icons === */
.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icon svg {
  width: 26px;
  height: 26px;
  fill: #999;
  transition: all 0.3s ease;
}

.social-icon:hover svg {
  fill: #fff;
  transform: translateY(-3px);
}

/* === Trust Images === */
.trust-images {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 10px;
}

.trust-images img {
  width: 134px;
  height: auto;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

/* === Responsive === */
@media (min-width: 360px) and (max-width: 768px)  {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .trust-images {
    justify-content: center;
    margin-top: 20px;
  }
  .trust-images img {
  width:102px !important;
   }
.f50 {
    margin-left: 46px;
    width: 78% !important;
}
#f51 {
  margin-top: -41px !important;
  margin-bottom: 6px;
}
#f52{
    margin-bottom: 36px;
    margin-top: -24px !important;
    margin-top: -30px;
    font-size: 0.7rem;
}

.a51{
        margin-top: 0px;
        margin-left: 28px;
        width: 78% !important;
    }
}




