.student-testimonial {
    padding: 50px 0 100px;
    background-color: #FFF;
}

.testimonial-slider {
    margin: 50px -15px 0;
}

.testimonial-slide {
    padding: 60px 15px 10px;
}

.testimonial-card {
    background: #F3F3F3;
    border-radius: 12px;
    padding: 0 30px 40px;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card__avatar {
    width: 110px;
    height: 110px;
    margin: -55px auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #FFF;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.testimonial-card__rating {
    margin-bottom: 12px;
}

.testimonial-card__rating .material-icons-outlined {
    color: #F9AB19;
    font-size: 18px;
}

.testimonial-card__name {
    font-size: 20px;
    font-weight: 700;
    color: #1D264A;
    margin-bottom: 4px;
}

.testimonial-card__role {
    font-size: 14px;
    color: #6E7182;
    display: block;
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: #45474F;
    margin: 0;
    text-align: center;
}

/* Slick Dots Styling */


@media (max-width: 1199px) {
    .testimonial-slider .slick-arrow {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .student-testimonial {
        padding: 30px 0 60px;
    }
}

@media (max-width: 768px) {
    .testimonial-slider {
        margin: 20px -15px 0;
    }
}