/* 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 */

/* Heading */
.services-header {
  text-align: center;
  padding: 40px 20px 20px;
}

.services-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #003366;
  font-weight: bold;
}

.services-header p {
  font-size: 1rem;
  font-weight: bold;
  color: #000000;
  max-width: 700px;
  margin: 0 auto;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Individual Card */
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  margin: 10px 20px;
  border: 1px solid;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 68px;
  height: 68px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #00a8b5;
  font-weight: bold;
}

.service-card p {
  font-size: 1rem;
  color: #000000;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .services-header h1 {
    font-size: 2rem;
  }
}
