.kasi-slider-pro {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.kasi-track {
  display: flex;
  transition: transform 0.6s ease;
}

.kasi-slide {
  min-width: 100%;
  position: relative;
}

.kasi-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.kasi-caption {
  position: absolute;
  bottom: 10%;
  left: 8%;
  background: transparent;   /* no black overlay */
  color: #fff;
  padding: 0;                /* remove box padding */
  border-radius: 0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6); /* makes text readable */
}

.kasi-btn {
  display: inline-block;
  margin-top: 8px;
  background: #0b5ed7;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
}

.kasi-prev, .kasi-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 32px;
  padding: 8px 12px;
  cursor: pointer;
}

.kasi-prev { left: 10px; }
.kasi-next { right: 10px; }

.kasi-dots {
  position: absolute;
  bottom: 12px;
  width: 100%;
  text-align: center;
}

.kasi-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.kasi-dots .active {
  background: #0b5ed7;
}