    /* body {
      background: #fff;
      font-family: 'Segoe UI', sans-serif;
      color: #000;
    } */



    /* Service Card Carousel */

    /* === Our Services Card Slider === */
.carousel-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

.carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.carousel-wrapper > div {
  display: flex;
  gap: 24px;
  min-width: max-content;
}

.service-card {
  flex: 0 0 auto;
  width: 300px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.05);
}

.service-card.active {
  transform: scale(1.1);
  z-index: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.service-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

.feature-list li {
  margin-bottom: 0.4rem;
}

.feature-list li i {
  color: #198754;
  /* color: blue !important; */
  margin-right: 6px;
}



    
/* 
    .carousel-wrapper {
      overflow-x: auto;
      scroll-behavior: smooth;
      display: flex;
      gap: 1.5rem;
      padding: 2rem;
      scroll-snap-type: x mandatory;
    }

    .service-card {
      flex: 0 0 auto;
      width: 300px;
      background: #f8f9fa;
      border-radius: 12px;
      padding: 1rem;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease, box-shadow 0.3s ease;
      scroll-snap-align: center;
      margin-right: 1.5rem;
    }

    .service-card.active {
      transform: scale(1.12);
      z-index: 1;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    }

    .service-img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 1rem;
    }

    .service-title {
      font-weight: 600;
      font-size: 1.2rem;
      margin-bottom: 0.3rem;
    }

    .service-desc {
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
    }

    .feature-list {
      padding-left: 0;
      list-style: none;
    }

    .feature-list li {
      font-size: 0.88rem;
      margin-bottom: 0.4rem;
    }

    .feature-list i {
      color: green;
      margin-right: 0.5rem;
    }  */