/* ================= INNOVATION PAGE ================= */

.innovation-section {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  font-size: 0;
  display: block;
  background: #ffffff;        /* ← THIS KILLS THE BLACK */
}

/* Banner */
.innovation-banner {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  /* vertical-align: bottom; */
  margin: 0;
  padding: 0;
}

/* ================= INNOVATION VIDEO SECTION ================= */

.innovation-video-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;        /* ← THIS KILLS THE BLACK */
}

/* Video */
.innovation-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Soft overlay for readability */
.innovation-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
}

/* Text container */
.innovation-text {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}

.innovation-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #2a2a2a;
  font-weight: 700;
}

.innovation-text p {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  text-align: center;
}

/* ================= MOBILE ONLY ================= */
@media (max-width: 769px) {

  .innovation-section {
    font-size: 0;
    line-height: 0;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff;
  }

  .innovation-banner {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    /* vertical-align: bottom; */
  }

  .innovation-video-section {
    min-height: unset !important;
    height: auto;
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff;
  }

  .innovation-text {
    padding: 30px 20px;
  }

  .innovation-text h2 {
    font-size: 28px;
  }

  .innovation-text p {
    font-size: 16px;
    text-align: center;
  }

}