/*  Hero Section */
.service-hero {
  height: 40vh;
  background: url('../image/banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.service-hero .overlay {
  background: rgba(0,0,0,0.55);
  padding: 40px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
}
.service-hero h2 {
  font-size: 40px;
  margin-bottom: 10px;
}
.service-hero p {
  font-size: 18px;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 15px 40px;
  background: #f1f5f9;
  font-size: 15px;
  font-weight: bold;
}
.breadcrumbs a {
  color: #0e6ea8;
  text-decoration: none;
}
.breadcrumbs span {
  color: #555;
}

/* Main Service Info */
.service-detail {
  display: flex;
  gap: 60px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: auto;
}

.service-info {
  flex: 3;
}

.service-info h2 {
  color: #0e4c92;
  font-size: 28px;
  margin-bottom: 15px;
}

.service-info p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Features */
#featureList {
  margin-bottom: 40px;
}
#featureList li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}
#featureList i {
  color: #0e6ea8;
  margin-right: 10px;
}

/*  Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin: 30px 0;
}
.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: transform .3s ease;
  cursor: pointer;
}
.gallery img:hover {
  transform: scale(1.05);
}

/*  Video */
.video-container {
  position: relative;
  padding-top: 56.25%;
  margin: 40px 0;
}
.video-container iframe {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  border-radius: 10px;
}

/*  Brochure Button */
.cta-btn {
  display: inline-block;
  background: #0e6ea8;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  margin-top: 20px;
}
.cta-btn i {
  margin-right: 8px;
}
.cta-btn:hover {
  background: #094c73;
}

/*  Responsive */
@media (max-width: 900px) {
  .service-detail {
    flex-direction: column;
    padding: 40px 20px;
  }
}
