/* Testimonial Styles */
.testimonial-area {
    background: #f8f9fa;
    position: relative;
}

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

.testimonial-area .section-title span {
    color: #ff6b35;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.testimonial-area .section-title .title {
    color: #000;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.testimonial-slider {
    position: relative;
}

.single-testimonial {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.single-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.single-testimonial::before {
    content: '"';
    font-size: 80px;
    color: #ff6b35;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: "Playfair Display", serif;
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #64656a;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff6b35;
}

.author-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5.name {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px 0;
    font-family: "Playfair Display", serif;
}

.author-info .designation {
    font-size: 14px;
    color: #ff6b35;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Swiper Pagination Styles */
.testimonial-slider .swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.testimonial-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.testimonial-slider .swiper-pagination-bullet-active {
    background: #ff6b35;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 767px) {
    .single-testimonial {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .testimonial-content p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .author-thumb {
        width: 50px;
        height: 50px;
    }
    
    .author-info h5.name {
        font-size: 16px;
    }
    
    .author-info .designation {
        font-size: 12px;
    }
    
    .testimonial-area .section-title .title {
        font-size: 24px;
    }
    
    .testimonial-area .section-title span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .single-testimonial {
        padding: 25px 15px;
    }
    
    .testimonial-content p {
        font-size: 13px;
    }
    
    .author-thumb {
        width: 45px;
        height: 45px;
    }
} 