/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.heading-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 1rem;
}

.heading-subtitle {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Swiper Styles */
.testimonials-slider {
    position: relative;
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
}

.testimonial-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: #2d3436;
    margin-bottom: 25px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f2f6;
    padding-top: 20px;
    margin-top: auto;
}

.author-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.author-info {
    flex-grow: 1;
}

.author-info h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3436;
}

.author-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #636e72;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    color: #636e72;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
}

.social-links a:hover {
    color: #007bff;
    background: #e9ecef;
    transform: translateY(-2px);
}

/* Swiper Navigation */
.testimonials-slider .swiper-button-next,
.testimonials-slider .swiper-button-prev {
    color: #007bff;
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.testimonials-slider .swiper-button-next:after,
.testimonials-slider .swiper-button-prev:after {
    font-size: 18px;
}

.testimonials-slider .swiper-button-next:hover,
.testimonials-slider .swiper-button-prev:hover {
    background: #007bff;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .heading-title {
        font-size: 2rem;
    }
    
    .testimonial-item {
        padding: 25px;
    }
}
