/* Updated css/testimonials.css */
.testimonials-content {
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;  /* Changed to column to stack title and carousel */
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-content {
        padding: 1.5rem;
    }
}

.carousel-container {
    width: 100%;
    max-width: 900px;
    overflow: hidden;
}

.testimonials-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.testimonial-card {
    background: linear-gradient(145deg, #2c3e50, #3498db);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ecf0f1;
}

.testimonial-text {
    color: #ecf0f1;
}

.testimonial-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial-text span {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .testimonial-image {
        width: 100px;
        height: 100px;
    }

    .testimonial-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-slide {
        padding: 0 1rem;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .testimonial-text p {
        font-size: 0.9rem;
    }
}
.section-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}