/* Unique Class Names to Prevent Conflicts */
.a2z-student-reviews {
    position: relative;
    z-index: 1;
}

.a2z-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.a2z-particle {
    position: absolute;
    border-radius: 50%;
    animation: a2z-float 15s infinite linear;
}

.a2z-particle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.a2z-particle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 70%;
    left: 5%;
    animation-delay: 2s;
}

.a2z-particle:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 30%;
    left: 80%;
    animation-delay: 4s;
}

.a2z-corner-shape-1 {
    width: 300px;
    height: 300px;
    position: absolute;
    top: -50px;
    left: -50px;
    border-radius: 50%;
}

.a2z-corner-shape-2 {
    width: 400px;
    height: 400px;
    position: absolute;
    bottom: -100px;
    right: -100px;
    border-radius: 50%;
}

@keyframes a2z-float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: translateY(-50px) rotate(180deg);
        opacity: 0.7;
    }

    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 1;
    }
}

.a2z-review-badge {
    background: linear-gradient(45deg, #8E2DE2 0%, #4A00E0 100%);
}

.a2z-title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8E2DE2 0%, #4A00E0 100%);
    border-radius: 3px;
}

.a2z-icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(142, 45, 226, 0.2);
}

.a2z-icon-primary {
    color: #8E2DE2 !important;
}

.a2z-icon-secondary {
    color: #4A00E0 !important;
}

.a2z-review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.a2z-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.a2z-video-wrapper {
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.a2z-video-element {
    aspect-ratio: 16/9;
    object-fit: cover;
}

.a2z-course-name {
    background: linear-gradient(45deg, #8E2DE2, #4A00E0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.a2z-student-img-wrapper {
    width: 80px;
    height: 80px;
}

.a2z-student-img {
    border: 3px solid rgba(142, 45, 226, 0.3);
}

.a2z-student-badge {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #8E2DE2, #4A00E0);
}

.a2z-testimonial-text {
    font-size: 0.95rem;
}

.a2z-quote-start {
    position: absolute;
    top: -15px;
    left: 0;
    font-size: 1.5rem;
    color: rgba(142, 45, 226, 0.3);
}

.a2z-quote-end {
    position: absolute;
    bottom: -15px;
    right: 0;
    font-size: 1.5rem;
    color: rgba(74, 0, 224, 0.3);
}



.a2z-swiper-pagination {
    bottom: 20px !important;
}

.a2z-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.a2z-swiper-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(45deg, #8E2DE2, #4A00E0);
}

.a2z-swiper-button-next,
.a2z-swiper-button-prev {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.a2z-swiper-button-next::after,
.a2z-swiper-button-prev::after {
    font-size: 1rem;
    font-weight: bold;
}

.a2z-swiper-button-next:hover,
.a2z-swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.a2z-swiper-button-next {
    color: #8E2DE2;
    right: 10px;
}

.a2z-swiper-button-prev {
    color: #8E2DE2;
    left: 10px;
}

/* Responsive Layout */
@media (max-width: 991.98px) {

    .a2z-video-swiper,
    .a2z-text-swiper {
        padding-bottom: 60px !important;
    }
}

@media (max-width: 767.98px) {
    .a2z-review-card {
        margin-bottom: 20px;
    }
}