

.service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  gap: 20px;
}

.card-service {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card-service :hover {
  transform: translateY(-5px);
}

.card-service  img {
  width: 100%;
  height: auto;
  display: block;
}

.card-text {
  padding: 15px;
  font-size: 16px;
  color: #333;
}

@media (max-width: 768px) {
  .card {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .card {
    width: 100%;
  }
}
.banner {
  position: relative;
  width: 100%;
  height: 300px;
  background: url('./images/about-header-mob.png') no-repeat center center/cover;
}
.overlay1 {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 20px;
}
.overlay h1 {
  font-size:1rem;
}
.breadcrumb {
  position: absolute;
  bottom: 10px;
  right: 20px;
  color: white;
  font-size: 14px;
}
.breadcrumb a {
  color: white;
  text-decoration: none;
}
