/* Testimonials Slide2 Style - Reference Match */
.tmls-slide2 {
    padding: 50px 0;
    background: #f5f5f5;
}

.tmls-slide2 .block-title {
    text-align: center;
    margin-bottom: 40px;
}

.tmls-slide2 .block-title .title {
    font-size: 26px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.tmls-slide2 .block-title .title i {
    margin-right: 10px;
    color: #f5a623;
    font-size: 22px;
}

.tmls-slide2 .tab-content {
    position: relative;
}

.tmls-slide2 .tmls-item {
    background: #fff;
    padding: 30px 25px;
    margin: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-height: 300px;
    position: relative;
    transition: box-shadow 0.3s ease;
}

.tmls-slide2 .tmls-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Quote Icon - Using CSS instead */
.tmls-slide2 .quote-icon {
    font-size: 60px;
    line-height: 1;
    color: #e5e5e5;
    margin-bottom: 15px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
}

.tmls-slide2 .quote-icon::before {
    content: open-quote;
}

.tmls-slide2 .tmls-testimonial {
    margin-bottom: 20px;
    min-height: 90px;
}

.tmls-slide2 .tmls-testimonial p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-style: italic;
}

.tmls-slide2 .tmls-rating {
    margin: 15px 0;
}

.tmls-slide2 .tmls-rating i {
    color: #ffc107;
    font-size: 15px;
    margin: 0 2px;
}

.tmls-slide2 .tmls-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-top: 10px;
}

/* Owl Carousel Navigation - Simple Dark Arrows */
.tmls-slide2 .owl-carousel {
    position: relative;
}

.tmls-slide2 .owl-stage-outer {
    overflow: visible;
}

.tmls-slide2 .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 100px);
    left: -50px;
    right: -50px;
    margin: 0;
    z-index: 10;
}

.tmls-slide2 .owl-nav button.owl-prev,
.tmls-slide2 .owl-nav button.owl-next {
    position: absolute !important;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #333 !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    font-size: 20px !important;
    line-height: 45px !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    border: none !important;
}

.tmls-slide2 .owl-nav button.owl-prev:hover,
.tmls-slide2 .owl-nav button.owl-next:hover {
    background: #fff !important;
    color: #000 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.tmls-slide2 .owl-nav .owl-prev {
    left: 0;
}

.tmls-slide2 .owl-nav .owl-next {
    right: 0;
}

.tmls-slide2 .owl-nav button i {
    font-size: 20px;
    font-weight: 700;
}

.tmls-slide2 .owl-dots {
    display: none !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .tmls-slide2 .owl-nav {
        width: calc(100% + 60px);
        left: -30px;
        right: -30px;
    }
}

@media (max-width: 768px) {
    .tmls-slide2 .tmls-item {
        min-height: 260px;
    }

    .tmls-slide2 .owl-nav {
        width: calc(100% + 20px);
        left: -10px;
        right: -10px;
    }

    .tmls-slide2 .owl-nav button.owl-prev,
    .tmls-slide2 .owl-nav button.owl-next {
        width: 38px !important;
        height: 38px !important;
        font-size: 18px !important;
        line-height: 38px !important;
    }

    .tmls-slide2 .owl-nav button i {
        font-size: 18px;
    }
}