/* service Details Container */
.service-details {
    width: 100%;
    margin: 0;
    padding: 0;
    padding-bottom: 5%;
  }

  /* Main Slider Container */
  .service-details-slider {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  /* Image Styling */
  .service-details-slider img {
    width: 100%;
    height: 650px; /* Reduced height from 500px */
    object-fit: cover;
    display: block;
  }

  /* Swiper Specific Styles */
  .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
  }

  .swiper-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
  }

  /* Pagination Styling - Moved outside image */
  .swiper-pagination {
    position: relative; /* Changed from absolute to relative */
    padding: 15px 0; /* Added padding for spacing */
    text-align: center;
    z-index: 10;
    background: #fff; /* Added background color */
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
    margin: 0 4px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
  }

  .swiper-pagination-bullet-active {
    background-color: #007bff;
  }

  /* service Info Styles */
  .service-info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
  }

  .service-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
  }

  .service-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .service-info ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .service-info ul li:last-child {
    border-bottom: none;
  }

  .service-info ul li strong {
    display: inline-block;
    width: 120px;
    color: #666;
  }

  /* service Description */
  .service-description {
    padding-top: 20px;
  }

  .service-description p {
    line-height: 1.8;
    color: #666;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .service-details-slider img {
      height: 400px; /* Reduced height for tablets */
    }

    .service-info {
      padding: 20px;
    }
  }

  @media (max-width: 576px) {
    .service-details-slider img {
      height: 400px; /* Reduced height for mobile */
    }
  }