.custom-service-slider {
    padding: 30px 0;
  }
  
  .swiper-slide {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .service-slide img {
    width: 100%;
    display: block;
    border-radius: 10px;
  }
  
  .service-slide .overlay {
    position: absolute;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    padding: 15px;
    text-align: center;
  }
  
  .service-slide:hover .overlay {
    opacity: 1;
  }
  
  .btn {
    margin-top: 10px;
    padding: 8px 12px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Modal styles */
  .image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
  }
  
  .image-modal img {
    max-width: 90%;
    max-height: 90%;
  }
  
  .image-modal .close-modal {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
  }
  