.slider {
  position: relative;
  max-width: 900px;
	height: auto;
  min-height: 325px;
  perspective: 1000px;
  overflow: visible;
	margin: 0px auto;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
/*   background: #fff; */
  border-radius: 10px;
  padding: 40px;
  box-sizing: border-box;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: all 0.5s ease;
  opacity: 0;
/*   transform: translateX(100px) scale(0.9); */
  z-index: 1;
}

/* Active slide in front */
.slide.active {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 3;
  background-color: #000000;
  color: #fff;
}

/* Next slide slightly visible behind */
.slide.next {
	transform: translate(15px, 48px);
  opacity: 0.6;
  z-index: 2;
  background-color: #282d33;
  color: #fff;
	cursor: pointer;
}

.slider-buttons {
  position: absolute;
  bottom: -50px;
  width: 100%;
  text-align: center;
}

button {
  padding: 8px 16px;
  margin: 0 10px;
  border: none;
  background: #333;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

/* Dots styling */
.slider-dots {
    position: absolute;
    bottom: -90px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.dot {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 5px;
  background: #0b4694;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #d5a630;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
/*     gap: 48px; */
		justify-content: space-between;
    height: 100%;
}
.testimonial-content{
    display: flex;
    gap: 20px;
}
.testimonial-content p{
    font-size: 13px;
}
.quote img{
    width: 300px;
}
.meta {
    display: flex;
    gap: 36px;
    align-items: start;
}
.meta img {
    width: 150px;
    object-fit: contain;
}
.meta h4, .meta p{
	font-size:13px;
}
@media (max-width: 660px) {
  .slider {
      height: 539px;
      min-height: 1000px;
  }
}

@media  (max-width: 992px) {
	.slide.next {
		transform: translate(0, 0);
	}

}
@media  (min-width: 1250px) {
	.slide.next {
		transform: translate(70px, 48px);
	}
}
 .testimonial-content .quote{width:70px; width:70px; height: auto; flex-shrink: 0; } .quote img{width:70px; height: auto; flex-shrink: 0; }