.testimonial-wrapper {
    width: 100%;
    padding: 3rem 1rem;
    background: #f27d42;
    overflow: hidden;
    position: relative;
}

.testimonial-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.swiper-container {
    padding: 0 20px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.testimonial-card {
background: #FFFFFF;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 10px;
padding: 20px;
text-align: center;
color: #333;
width: 100%;
min-height: 480px; /* Increased height */
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}

.testimonial-card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: inline-block;
    border-radius: 50%;
    padding: 10px;
}

.testimonial-card-text {
font-size: 1rem;
margin: 10px 0;
color: #444;
flex-grow: 1;
display: block; /* Allow text to expand naturally */
max-height: unset; /* Remove restriction */
}

.testimonial-card-name {
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
}

.testimonial-card-course {
    font-style: italic;
    color: #666;
}

.testimonial-stars {
color: #FFD700;
font-size: 1.2rem;
margin: 1rem 0; /* Increased margin to prevent overlap */
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    border: none;
    cursor: pointer;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    z-index: 1000;
}

