.nll-customers-review-container {
    position: relative;
    width: 100%;
    margin: 20px 0;
    overflow: hidden;
    direction: rtl;
    text-align: right;
}

.nll-customers-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.nll-customers-review-title {
    color: #383C79;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.nll-customers-review-nav {
    display: flex;
    gap: 10px;
}

.nll-customers-review-prev,
.nll-customers-review-next {
    position: static !important;
    width: 32px !important;
    height: 32px !important;
    margin: 0 !important;
    border-radius: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    border: none;
    background: none;
}

.nll-customers-review-prev img,
.nll-customers-review-next img {
    width: 32px;
    height: 32px;
}

.nll-customers-review-prev:hover,
.nll-customers-review-next:hover {
    background-color: #fff;
}

.nll-customers-review-prev::after,
.nll-customers-review-next::after {
    display: none;
}

.nll-customers-review-swiper {
    width: 100%;
    padding-bottom: 40px;
}

.nll-customers-review-slide {
    height: auto;
    box-sizing: border-box;
}

.nll-customers-review-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #F2F2F273;
    border-radius: 16px;
    padding: 20px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nll-customers-review-avatar {
    margin-bottom: 16px;
}

.nll-customers-review-avatar img {
    width: 72px;
    height: 72px;
    border-radius: 100%;
    object-fit: cover;
}

.nll-customers-review-name {
    color: #404040;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.nll-customers-review-course {
    color: #8C8C8C;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #383C79;
}

.swiper-rtl .swiper-button-next {
    right: auto;
    left: 10px;
}

.swiper-rtl .swiper-button-prev {
    left: auto;
    right: 10px;
}

.nll-customers-review-text {
    color: #404040;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    height: 125px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .nll-customers-review-name {
        font-size: 18px;
    }

    .nll-customers-review-avatar {
        margin-bottom: 0px;
    }

    .nll-customers-review-text {
        height: 105px;
        font-size: 12px;
    }

    .nll-customers-review-title {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .nll-customers-review-slide {
        width: 50%;
    }
}

@media (max-width: 768px) {}

@media (max-width: 576px) {
    .nll-customers-review-slide {
        width: 100%;
    }
}