.discover {
  margin-top: 80px;
  width: 100%;
  height: 600px;
  color: #fff;
  background: url("../images/discover.png") center/cover no-repeat;

  /* Layout alignment */
  display: flex;
  align-items: center; /* Vertically centers the box */
  justify-content: flex-start; /* Keeps it on the left */
}

.discover-content {
  position: relative;
  z-index: 2;
  width: 50%; /* Sets the box to exactly half the screen width */
  height: 100%; /* Makes the blur go from top to bottom */

  /* Creating the blurred sidebar effect */
  background: rgba(0, 103, 159, 0.7); /* Darker tint for better text contrast */
  backdrop-filter: blur(20px);

  /* Internal spacing */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers text vertically within the 50% zone */
  padding: 0 5%; /* Gives the text some breathing room from the edges */
  box-sizing: border-box;
}

#innovation {
  background-color: #002940;
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
  color: #00a5ff;
}

.container-innovation {
  max-width: 1200px;
  margin: auto;
}

.container-innovation h3 {
  font-weight: 400;
  text-transform: uppercase;
}

.container-innovation p {
  margin-top: 30px;
}

#innovation-facts {
  background-color: #00a5ff;
  color: white;
  padding: 60px 0;
}

.innovation-header {
  font-size: 2rem;
  margin-top: 0px;
  margin-bottom: 70px;
  font-weight: 900;
  color: #002940;
}

.innovation-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.facts-container .left {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.facts-container {
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

.experience,
.completed,
.customer {
  border-radius: 10px;
  padding: 30px;
  width: 280px;
}

.innovation-grid h4 {
  text-align: left;
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 15px;
  margin-bottom: 10px;
}

.innovation-grid h2 {
  color: #fff;
  font-weight: 800;
  font-size: 2.5rem;
  margin: 0;
}

.innovation-grid p {
  font-size: 1rem;
}

.experience {
  background-color: #003552;
}

.completed {
  background-color: #00679f;
}

.customer {
  background-color: #fff;
}

.customer h4,
.customer h2,
.customer p {
  color: #003552;
}

@media (max-width: 768px) {
  #innovation {
    padding: 70px 20px;
  }
  .innovation-grid h2 {
    font-size: 2rem;
  }
}
@media (max-width: 425px) {
  .experience,
  .completed,
  .customer {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .discover {
    justify-content: center; /* Center the content on mobile */
    margin: 0;
  }

  .discover h1 {
    font-size: 1.8rem;
  }

  .discover-content {
    width: 100%; /* Take full width */
    height: 100%; /* Let content dictate height */
    padding: 40px 20px;

    /* Optional: If you want the blur to cover the whole screen on mobile */
    /* height: 100%; */

    /* Optional: Center text on mobile for better balance */
    text-align: center;
    align-items: center;
  }

  .discover-content img {
    max-width: 100%;
  }

  .discover-content p {
    font-size: 1rem;
  }
}
