/* about hero section start */
/* CSS */
.clients-hero {
  background: url("/assets/images/all-banner.jpg") no-repeat center center/cover;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: white;
}

.clients-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(9, 81, 88, 0.9); /* Dark overlay */
  z-index: 1;
}

.clients-hero .overlay {
  position: relative;
  z-index: 2;
}

.clients-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
}

.clients-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.clients-hero a {
  color: #fff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .clients-hero {
    height: 40vh;
    padding: 20px;
  }

  .clients-hero h1 {
    font-size: 2.5rem;
  }

  .clients-hero p {
    font-size: 1rem;
  }
}

/* client hero section end */

.lab-makers-page-container {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  padding: 0;
  margin: 0;
  min-height: 100vh;
}

.lab-makers-header-section {
  background-color: #002244;
  color: #ffffff;
  padding: 2rem 1rem;
  text-align: center;
}

.lab-makers-main-section {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}

.lab-makers-section-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  gap: 2rem;
}

.lab-makers-section-wrapper.reverse-layout {
  flex-direction: row-reverse;
}

.lab-makers-text-content {
  flex: 1;
}

.lab-makers-image-content {
  flex: 1;
}

.lab-makers-image-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.lab-makers-heading-title {
  color: #00a8b5;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.lab-makers-list-items {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.lab-makers-list-items li {
  margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
  .lab-makers-section-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .lab-makers-section-wrapper.reverse-layout {
    flex-direction: column;
  }
}
