/**
 * ExamBlaze Reviews & Testimonials Styles
 * Beautiful gradient background with animations + Grid Layout
 *
 * @package ExamBlaze
 * @version 4.0
 * FIXED: Added testimonials grid layout for static pages
 */

/* ========================================
   REVIEWS SECTION - NEW GRADIENT BACKGROUND
   ======================================== */

.reviews-section {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue-dark) 50%, var(--primary-blue-dark) 100%);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* Decorative Background Pattern */
.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Section Title Styling */
.reviews-section .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.reviews-section .section-title {
    color: var(--text-white);
    font-size: 42px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.reviews-section .section-subtitle {
    color: var(--accent-gold);
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}

.reviews-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

/* ========================================
   CAROUSEL
   ======================================== */

.reviews-carousel {
    display: flex;
    gap: 30px;
    overflow: hidden;
    scroll-behavior: smooth;
    position: relative;
}

/* ========================================
   REVIEW CARDS - NEW DESIGN
   ======================================== */

.review-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    background: var(--bg-white);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Animated border glow */
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange), var(--primary-blue-dark), var(--accent-gold));
    background-size: 300% 300%;
    animation: borderGlow 4s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover::before {
    opacity: 1;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.review-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* Quote icon decoration */
.review-card::after {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(15, 118, 110, 0.1);
    line-height: 1;
    pointer-events: none;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue-dark));
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(15, 118, 110, 0.3);
    animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {

    0%,
    100% {
        box-shadow: 0 5px 15px rgba(15, 118, 110, 0.3);
    }

    50% {
        box-shadow: 0 5px 25px rgba(15, 118, 110, 0.5);
    }
}

.review-avatar.male {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.review-avatar.male {
    animation: avatarPulseMale 3s ease-in-out infinite;
}

@keyframes avatarPulseMale {

    0%,
    100% {
        box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
    }

    50% {
        box-shadow: 0 5px 25px rgba(245, 158, 11, 0.5);
    }
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue-light);
    margin: 0;
    line-height: 1.2;
}

.review-service {
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 600;
    margin: 5px 0 0 0;
    display: inline-block;
    background: rgba(45, 212, 191, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.review-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.review-rating i {
    color: var(--accent-gold);
    font-size: 18px;
    filter: drop-shadow(0 2px 3px rgba(255, 162, 0, 0.3));
    animation: starTwinkle 2s ease-in-out infinite;
}

.review-rating i:nth-child(2) {
    animation-delay: 0.1s;
}

.review-rating i:nth-child(3) {
    animation-delay: 0.2s;
}

.review-rating i:nth-child(4) {
    animation-delay: 0.3s;
}

.review-rating i:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes starTwinkle {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.review-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* ========================================
   CAROUSEL NAVIGATION - NEW DESIGN
   ======================================== */

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #FFA200, #f59e0b);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
    left: -30px;
}

.carousel-next {
    right: -30px;
}

.carousel-btn i {
    font-size: 22px;
}

/* ========================================
   CAROUSEL DOTS - NEW DESIGN
   ======================================== */

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    padding: 0;
}

.carousel-dot.active {
    background: #f59e0b;
    width: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.carousel-dot.active:hover {
    background: #FFA200;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (max-width: 1024px) {
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-section .section-title {
        font-size: 34px;
    }

    .review-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
        padding: 25px;
    }

    .reviews-carousel {
        gap: 20px;
    }

    .carousel-prev {
        left: -20px;
    }

    .carousel-next {
        right: -20px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .reviews-section {
        padding: 50px 0;
    }

    .reviews-section .section-title {
        font-size: 28px;
    }

    .reviews-section .section-subtitle {
        font-size: 16px;
    }

    .review-card {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 25px;
    }

    .reviews-carousel {
        gap: 15px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .carousel-btn i {
        font-size: 18px;
    }

    .review-avatar {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }

    .review-name {
        font-size: 16px;
    }

    .review-service {
        font-size: 12px;
    }

    .review-text {
        font-size: 14px;
    }

    .carousel-dots {
        margin-top: 30px;
    }

    .carousel-dot {
        width: 12px;
        height: 12px;
    }

    .carousel-dot.active {
        width: 30px;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE
   ======================================== */

@media (max-width: 480px) {
    .reviews-section {
        padding: 40px 0;
    }

    .reviews-section .section-title {
        font-size: 24px;
    }

    .review-card {
        padding: 20px;
    }

    .review-card::after {
        font-size: 50px;
        right: 15px;
    }

    .review-header {
        gap: 12px;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .review-rating i {
        font-size: 16px;
    }
}

/* ========================================
   TESTIMONIALS GRID LAYOUT
   For static testimonials sections (non-carousel)
   ======================================== */

.wgu-testimonials,
.ged-testimonials,
.certifications-testimonials,
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue-dark) 50%, var(--primary-blue-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Background Pattern */
.wgu-testimonials::before,
.ged-testimonials::before,
.certifications-testimonials::before,
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Section Headers for Testimonials */
.wgu-testimonials .section-header,
.ged-testimonials .section-header,
.certifications-testimonials .section-header,
.testimonials-section .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
    text-align: center;
}

.wgu-testimonials .section-title,
.ged-testimonials .section-title,
.certifications-testimonials .section-title,
.testimonials-section .section-title {
    color: var(--text-white);
    font-size: 42px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.wgu-testimonials .section-subtitle,
.ged-testimonials .section-subtitle,
.certifications-testimonials .section-subtitle,
.testimonials-section .section-subtitle {
    color: var(--accent-gold);
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}

/* ========================================
   TESTIMONIALS GRID
   ======================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   TESTIMONIAL CARDS
   ======================================== */

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Animated border glow */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange), var(--primary-blue-dark), var(--accent-gold));
    background-size: 300% 300%;
    animation: borderGlow 4s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* Quote icon decoration */
.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(15, 118, 110, 0.1);
    line-height: 1;
    pointer-events: none;
}

/* ========================================
   TESTIMONIAL HEADER
   ======================================== */

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue-dark));
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(15, 118, 110, 0.3);
    animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {

    0%,
    100% {
        box-shadow: 0 5px 15px rgba(15, 118, 110, 0.3);
    }

    50% {
        box-shadow: 0 5px 25px rgba(15, 118, 110, 0.5);
    }
}

.testimonial-avatar.male {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
    animation: avatarPulseMale 3s ease-in-out infinite;
}

@keyframes avatarPulseMale {

    0%,
    100% {
        box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
    }

    50% {
        box-shadow: 0 5px 25px rgba(245, 158, 11, 0.5);
    }
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue-light);
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.testimonial-info span {
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-block;
    background: rgba(45, 212, 191, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

/* ========================================
   TESTIMONIAL RATING
   ======================================== */

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 18px;
    filter: drop-shadow(0 2px 3px rgba(255, 162, 0, 0.3));
    animation: starTwinkle 2s ease-in-out infinite;
}

.testimonial-rating i:nth-child(2) {
    animation-delay: 0.1s;
}

.testimonial-rating i:nth-child(3) {
    animation-delay: 0.2s;
}

.testimonial-rating i:nth-child(4) {
    animation-delay: 0.3s;
}

.testimonial-rating i:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes starTwinkle {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* ========================================
   TESTIMONIAL TEXT
   ======================================== */

.testimonial-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 15px 0;
    font-style: italic;
    position: relative;
    z-index: 1;
    flex: 1;
}

.testimonial-course {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
    position: relative;
    z-index: 1;
}

.testimonial-course i {
    color: #0f766e;
    font-size: 14px;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (max-width: 1024px) {

    .wgu-testimonials,
    .ged-testimonials,
    .certifications-testimonials,
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .wgu-testimonials .section-title,
    .ged-testimonials .section-title,
    .certifications-testimonials .section-title,
    .testimonials-section .section-title {
        font-size: 34px;
    }

    .testimonial-card {
        padding: 25px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 768px) {

    .wgu-testimonials,
    .ged-testimonials,
    .certifications-testimonials,
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .wgu-testimonials .section-title,
    .ged-testimonials .section-title,
    .certifications-testimonials .section-title,
    .testimonials-section .section-title {
        font-size: 28px;
    }

    .wgu-testimonials .section-subtitle,
    .ged-testimonials .section-subtitle,
    .certifications-testimonials .section-subtitle,
    .testimonials-section .section-subtitle {
        font-size: 16px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-avatar {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }

    .testimonial-info h4 {
        font-size: 16px;
    }

    .testimonial-info span {
        font-size: 12px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-course {
        font-size: 12px;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE
   ======================================== */

@media (max-width: 480px) {

    .wgu-testimonials,
    .ged-testimonials,
    .certifications-testimonials,
    .testimonials-section {
        padding: 40px 0;
    }

    .wgu-testimonials .section-title,
    .ged-testimonials .section-title,
    .certifications-testimonials .section-title,
    .testimonials-section .section-title {
        font-size: 24px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-card::after {
        font-size: 50px;
        right: 15px;
    }

    .testimonial-header {
        gap: 12px;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .testimonial-rating i {
        font-size: 16px;
    }
}