#contactForm {
  margin-left: 50px;
}

.mt-3{
  font-size: 18px;
}

.fw-bold {
  font-size: 34px;
}

.banner-section {
  position: relative;
  overflow: hidden;
}

.banner-container {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  top: 40%;
  left: 70%;
  transform: translate(-10%, -40%) translateY(800px);
  max-width: 800px;
  text-align: center;
  color: white;
  font-size: 1.4rem;
  opacity: 100;
  padding: 0 20px;
  will-change: transform, opacity;
}

/* Desde + 2015 block */
.year-block {
  line-height: 1;
  margin-bottom: 20px;
}

.desde {
  display: block;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;
}

.year {
  display: block;
  font-size: 110px;
  font-weight: 800;
  line-height: 0.9;
}

/* Main description */
.description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Last sentence */
.highlight {
  font-size: 20px;
  font-weight: 600;
}

/* SECTION */
.clients-section {
  background: #ffffff;
  padding: 0;
}

/* Blue top bar */
.clients-header {
  background: #1e4f8a;
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* Container */
.clients-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 20px;
}

/* Logos wrapper */
.clients-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Logos */
.clients-logos img {
  max-height: 45px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* Hover effect (optional premium touch) */
.clients-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {

  .clients-logos {
    justify-content: center;
    gap: 25px;
  }

  .clients-logos img {
    max-height: 35px;
  }

}