    body {
      font-family: 'Roboto', sans-serif;
      line-height: 1.7;
      color: #333;
      background: #fff;
    }

    /* Hero Section */
    .service-hero {
      background: #F5F5F5;
      padding: 80px 20px;
      text-align: center;
    }
    .service-hero h1 {
      font-size: 2.6rem;
      font-weight: 700;
      margin: 0;
      color: #222;
    }

    /* Section Styling */
    .service-section {
      padding: 60px 15px;
    }
    .service-section h2 {
      font-size: 1.7rem;
      font-weight: 600;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }
    .service-section h2::after {
      content: "";
      width: 60px;
      height: 3px;
      background: #f99a21;
      display: block;
      margin-top: 8px;
    }
    .service-section p {
      margin-bottom: 25px;
      color: #555;
      font-size: 1.05rem;
    }
    .service-section ul {
      list-style: none;
      padding: 0;
    }
    .service-section ul li {
      margin-bottom: 10px;
      padding-left: 25px;
      position: relative;
    }
    .service-section ul li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #f99a21;
      font-weight: bold;
    }

    /* Images Section */
    .service-images {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 40px;
      justify-content: center;
    }
    .service-images img {
      max-width: 100%;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* Responsive */
    @media(max-width:768px){
      .service-hero h1 {
        font-size: 2rem;
      }
    }


   /* zoom img */  
  .gallery-container {
    display: flex;
    gap: 20px;
  }


  .main-image-wrap {
  width: 100%;
  max-width: 400px;  /* adjust */
  height: 400px;
  overflow: hidden;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  position: relative;
}

.main-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.main-image-wrap.zoomed img {
  transform: scale(2); /* zoom strength */
  cursor: crosshair;
}

.thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thumbs img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.thumbs img.selected {
  border-color: #333;
}
