/* Testimonials Section Styles */
.testimonial-section {
    position: relative;
    background: #f9f9f9;
}

.testimonial-block-one .inner-box {
    position: relative;
    background: #ffffff;
    padding: 40px 30px 35px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    min-height: 320px;
}

.testimonial-block-one .inner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-block-one .quote-box {
    position: relative;
    margin-bottom: 20px;
}

.testimonial-block-one .quote-box i {
    font-size: 40px;
    color: #d3d3d3;
    opacity: 0.3;
}

.testimonial-block-one .rating {
    margin-bottom: 20px;
}

.testimonial-block-one .rating i {
    font-size: 16px;
    color: #ffc107;
    margin-right: 3px;
}

.testimonial-block-one .text {
    position: relative;
    margin-bottom: 25px;
}

.testimonial-block-one .text p {
    font-size: 15px;
    line-height: 26px;
    color: #666;
    font-style: italic;
}

.testimonial-block-one .author-box {
    position: relative;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.testimonial-block-one .author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-block-one .author-thumb {
    margin: 0;
    flex-shrink: 0;
}

.testimonial-block-one .author-info .info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.testimonial-block-one .author-info .info .designation {
    display: block;
    font-size: 14px;
    color: #888;
}

.testimonial-block-one .author-info .info .location {
    display: block;
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}

.testimonial-block-one .author-info .info .location i {
    color: #667eea;
    margin-right: 5px;
}

/* Owl Carousel Testimonials Custom */
.testimonial-section .owl-nav {
    position: relative;
    margin-top: 40px;
}

.testimonial-section .owl-nav button {
    width: 50px;
    height: 50px;
    background: #667eea !important;
    color: #ffffff !important;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
}

.testimonial-section .owl-nav button:hover {
    background: #764ba2 !important;
    transform: scale(1.1);
}

/* Responsive */
@media only screen and (max-width: 767px) {
    .testimonial-block-one .inner-box {
        padding: 30px 20px 25px;
        min-height: auto;
    }
    
    .testimonial-block-one .text p {
        font-size: 14px;
        line-height: 24px;
    }
    
    .testimonial-block-one .author-info .info h4 {
        font-size: 16px;
    }
}

