.testimonial-section {
    background-color: #f8f9fa;
    /* Light background to separate from other sections */
    padding: 60px 0;
    overflow: hidden;
}

.testimonial-section .section-title {
    margin-bottom: 50px;
}

.testimonial-item {
    background: #fff;
    padding: 20px;
    margin: 20px 10px;
    /* spacing for owl items */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Soft shadow for premium feel */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-img-wrapper {
    position: relative;
    width: 180px;
    height: 100px;
    margin: 0 auto;
    /* Removed bottom margin */
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: contain;
    border: none;
    padding: 0;
    background: transparent;
}

.testimonial-quote-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #FFBB00;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.client-info h5 {
    color: #22395d;
    /* Dark blue from theme */
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
}

.client-info span {
    color: #009CFF;
    /* Primary color */
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Custom Navigation for Carousel */
.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-nav button {
    background: #fff;
    border: 2px solid #FFBB00;
    color: #FFBB00;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0 10px;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav button:hover {
    background: #FFBB00;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 156, 255, 0.4);
}