.service-detail {
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .service-detail-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    max-width: 700px;
  }
  
  .service-detail-overlay h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
  }
  
  .service-detail-overlay p {
    font-size: 1.1em;
    margin-bottom: 30px;
  }
  
  .service-gallery {
    padding: 40px 20px;
    background-color: #313131;
    text-align: center;
    border: 1px solid black;
  }
  
  .service-gallery h3 {
    font-size: 1.6em;
    color: #ff0033;
    margin-bottom: 20px;
  }
  
  .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .gallery-grid img {
    width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid transparent;
    background-clip: padding-box;
    transition: transform 0.3s ease;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.05);
  }
  
  .service-testimonials {
    background-color: #222;
    color: #eee;
    padding: 40px 20px;
    text-align: center;
  }
  
  .service-testimonials h3 {
    font-size: 1.8em;
    color: #ff0033;
    margin-bottom: 30px;
  }
  
  .service-testimonials blockquote {
    font-style: italic;
    margin: 20px auto;
    max-width: 600px;
    border-left: 4px solid #ff0033;
    padding-left: 20px;
  }
  