.testimonial-slider {
    background: #f8f9fa;
    padding: 70px 0;
    text-align: center;
    position: relative;
}
.testimonial-slider h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.owl-carousel {
    max-width: 700px;
    margin: auto;
    position: relative;
}
.testimonial {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.testimonial img:not(.emoji) {
    width: 30% !important;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    margin: 0 auto;
}
.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: #333;
}
.testimonial h4 {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}
/* Custom Arrow Buttons (Left & Right Side) */
.owl-prev, .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 24px;
    color: #333;
}
.owl-prev {
    left: -60px; /* Moves the left arrow outside the slider */
}
.owl-next {
    right: -60px; /* Moves the right arrow outside the slider */
}
.owl-prev:hover, .owl-next:hover {
    background: #ddd !important;
}

@media (max-width: 1024px) {
	.testimonial-slider {
        padding: 55px 0;
    }
}
@media (max-width: 768px) {
	.testimonial-slider {
        padding: 50px 0;
    }
    .testimonial img:not(.emoji) {
        width: 100% !important;
        height: auto;
    }
}
@media (max-width: 640px) {
    .owl-carousel {
    	max-width: calc(100% - 130px);
    }
}
@media (max-width: 480px) {
	.testimonial-slider {
        padding: 40px 0;
    }
}