.kbm-services-slider-wrap {
  width: 100%;
  padding: 20px 0 50px;
  overflow: visible;
}

.kbm-services-swiper {
  width: 100%;
  padding-bottom: 40px !important;
  overflow: hidden;
}

.swiper-slide {
  padding: 8px 0;
}

/* === Each Card === */
.kbm-slide-inner {
  background-color: transparent;
  background-image: linear-gradient(208deg, var(--global-palette10) 0%, var(--global-palette2) 86%);
  border-radius: 10px;
  padding: 28px 24px 30px;
  height: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.kbm-slide-inner:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px);
}

/* === Image === */
.kbm-slide-image {
  margin-bottom: 18px;
}

.kbm-slide-image img {
  width: 100%;
  max-width: 166px;
  height: auto;
  display: block;
  clip-path: polygon(45px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 45px);
}

/* === Title === */
.kbm-slide-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--e-global-color-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

/* === Body Text === */
.kbm-slide-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--e-global-color-text);
  margin: 0;
}

/* === Pagination Dots === */
.kbm-services-swiper .swiper-pagination {
  bottom: 0;
}

.kbm-services-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--e-global-color-text);
  opacity: 1;
}

.kbm-services-swiper .swiper-pagination-bullet-active {
  background: var(--global-palette10);
  transform: scale(1.3);
}