/* 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 */
/* client logo section start */
/* CSS */
.clients-section {
  padding: 50px 5%;
  background-color: #f9f9f9;
  text-align: center;
}

.clients-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  justify-items: center;
}

.client-card {
  background-color: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
  border: 1px solid black;
}

.client-card:hover {
  transform: scale(1.05);
}

.client-card img {
  width: 100%;
  max-width: 170px;
  height: auto;
  object-fit: contain;
}

/* Responsive tweaks for smaller devices */
@media (max-width: 600px) {
  .clients-section h2 {
    font-size: 1.8rem;
  }

  .clients-grid {
    gap: 15px;
  }

  .client-card {
    padding: 10px;
  }
}
/* clients logo start */
