.testi-container {
  text-align: center;
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.testi-title {
  font-size: 32px;
  font-weight: bold;
}

.testi-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.testi-slider {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.testi-slide-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testi-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: orange;
  color: white;
  padding: 20px;
  box-sizing: border-box;
}

.testi-slide img.testi-image {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  object-fit: cover;
  margin-right: 20px;
}

.testi-content {
  text-align: left;
  max-width: 500px;
}

.testi-name {
  margin: 0;
  font-size: 24px;
}

.testi-role {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.testi-nav {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  z-index: 1;
}

.testi-prev {
  position: absolute;
  left: 10px;
}

.testi-next {
  position: absolute;
  right: 10px;
}

.testi-dots {
  margin-top: 20px;
}

.testi-dot {
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.testi-dot.active {
  background: #000;
}

p.testi-text {
    width: 100%;
    text-align: center;
    color: #fff;
}

p.testi-role {
    color: #fff;
    text-align: center;
    width: 100%;
}