.custom-testimonial-slider {
    padding-bottom: 30px; /* Space for pagination */
    overflow: hidden;
}

.custom-testimonial-slide {
    display: flex;
    flex-direction: row; /* Forces side-by-side */
    flex-wrap: nowrap; /* Prevents stacking on desktop */
    background: #ffffff;
    border: 12px solid #94bba4; /* Added your green border here! */
    box-sizing: border-box;
}

/* Left Column Styling (Text & Logo) */
.testimonial-left-col {
    flex: 1 1 50%; /* Takes up exactly half the card */
    padding: 30px; /* Slightly reduced padding to fit the 2-per-slide layout better */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-text {
    max-height:100px;
    overflow-y:auto;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    font-weight: 400;
}

.testimonial-meta {
    margin-top: auto;
}

.client-logo {
    max-width: 65px;
    max-height: 25px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 2px solid #94bba4; /* Green ring around logo */
}

.client-name {
    margin: 0 0 5px 0;
    font-size: 15px;
    color: #333;
    font-weight: normal;
}

.client-name strong {
    font-weight: bold;
}

.company-name {
    font-size: 13px;
    color: #888;
}

/* Right Column Styling (Location Image) */
.testimonial-right-col {
    flex: 1 1 50%; /* Takes up exactly half the card */
    display: flex; /* Helps the image stretch to fill the height */
}

.location-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps image proportions without squishing */
    display: block;
}

/* Pagination Styling */
.custom-testimonial-slider .swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1;
}

.custom-testimonial-slider .swiper-pagination-bullet-active {
    background-color: #94bba4; 
}

/* Mobile Responsiveness (Stacks them only on small screens) */
@media (max-width: 992px) {
    .custom-testimonial-slide {
        flex-direction: column-reverse; /* Puts image on top on smaller screens */
    }
    .testimonial-right-col {
        height: 250px;
    }
    .testimonial-left-col {
        padding: 25px;
    }
}

/* Navigation Arrows Styling */
.custom-testimonial-slider .swiper-button-next,
.custom-testimonial-slider .swiper-button-prev {
    color: #94bba4; /* The green theme color */
    background: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Soft shadow */
    transition: all 0.3s ease;
}

/* Adjust the size of the actual arrow icon */
.custom-testimonial-slider .swiper-button-next:after,
.custom-testimonial-slider .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Hover effect */
.custom-testimonial-slider .swiper-button-next:hover,
.custom-testimonial-slider .swiper-button-prev:hover {
    background: #94bba4;
    color: #ffffff;
}

/* Position adjustments (moves them slightly outside the main box) */
.custom-testimonial-slider .swiper-button-prev {
    left: 10px;
}
.custom-testimonial-slider .swiper-button-next {
    right: 10px;
}

.custom-testimonial-slider .swiper-button-next, .swiper-button-prev
{
   top:44% !important; 
}