/* Swiper Container */
.seba__container__services {
    max-width: 1200px;
    margin: 40px auto;
    overflow: hidden;
    position: relative;
    background:#fefefe;
    padding:20px;
    border-radius:10px;
  }

  /* Swiper Slide */
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Professional Clickable Service Card */
  .service-card-new {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .service-card-new img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }

  .service-card-content {
    padding: 15px;
    text-align: center;
  }

  .service-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-transform: capitalize;
  }

  .service-card-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .service-card-content .cta {
    font-size: 14px;
    color: #c41f64;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
  }

  .service-card-new:hover .cta {
    color: #e91e63;
  }

  /* Navigation Buttons (Styled like the image) */
  .services__prev__btn,
  .services__next__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, .8);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .services__prev__btn {
    left: -1px;
  }

  .services__next__btn {
    right: -1px;
  }

  /* SVG Icon Styling */
  .services__prev__btn svg,
  .services__next__btn svg {
    width: 30px;
    height: 30px;
    fill: #ff5f95; /* Pink color from the image */
  }

  .services__next__btn svg {
    transform: rotate(180deg); /* Flip the icon for the "Next" button */
  }

  .services__prev__btn:hover,
  .services__next__btn:hover {
    background-color: #f9f9f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  }

  /* Ensure previous grid CSS doesn't interfere */
  .services-grid {
    display: none;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .seba__container__services {
        margin: 15px auto;
    }
    .service-card-new img {
      height: 140px;
    }
    .service-card-content {
      padding: 15px;
    }
    .service-card-content h3 {
      font-size: 16px;
    }
    .service-card-content p {
      font-size: 13px;
    }
    .service-card-content .cta {
      font-size: 13px;
    }

    /* Adjust navigation buttons for smaller screens */
    .services__prev__btn,
    .services__next__btn {
      width: 40px;
      height: 40px;
    }
    .services__prev__btn {
      left: -1px;
    }
    .services__next__btn {
      right: -1px;
    }
    
  }

  @media (max-width: 400px) {
    .seba__container__services {
      padding: 0 10px;
    }
    .service-card-new img {
      height: 120px;
    }
    .services__prev__btn,
    .services__next__btn {
      width: 35px;
      height: 35px;
    }
    .services__prev__btn {
      left: -10px;
    }
    .services__next__btn {
      right: -10px;
    }
  }