/* ============================== */
/*     Service Details Page       */
/* ============================== */

.service-banner {
  height: 60vh;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 0;
}

.service-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(65%);
  transition: transform 10s ease;
}

.service-banner:hover .service-banner-img {
  transform: scale(1.05);
}

.service-banner .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
}

.banner-content h1 {
  letter-spacing: 1px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

.service-details-content {
  background-color: #f9fafc;
}

.service-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333;
}

.sub-service-card {
  background: #fff;
  transition: all 0.3s ease;
}

.sub-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.sub-service-card .icon i {
  color: #007A8C;
}
