/* ==========================================
   TRUST BANNER
========================================== */

.crm-trust{
    padding:15px 20px;
    background:#f8f8f8;
    border:1px solid #e5e5e5;
    text-align:center;
    font-weight:600;
    font-size:18px;
    border-radius:6px;
    margin-bottom:30px;
}

/* ==========================================
   REVIEWS CONTAINER
========================================== */

.crm-reviews{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    margin-top:20px;
}

/* ==========================================
   REVIEW CARD
========================================== */

.crm-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:8px;
    padding:25px;
    flex:1 1 calc(50% - 25px);
    box-sizing:border-box;
    box-shadow:0 2px 10px rgba(0,0,0,0.04);
    transition:all 0.25s ease;
}

.crm-card:hover{
    transform:translateY(-3px);
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

/* ==========================================
   STAR RATING
========================================== */

.crm-stars{
    color:#f5a623;
    font-size:26px;
    line-height:1;
    letter-spacing:3px;
    margin-bottom:15px;
}

/* ==========================================
   REVIEW TITLE
========================================== */

.crm-card h4{
    font-size:26px;
    line-height:1.25;
    font-weight:600;
    margin:0 0 15px 0;
    color:#111;
}

/* ==========================================
   REVIEW CONTENT
========================================== */

.crm-card p{
    font-size:16px;
    line-height:1.75;
    color:#555;
    margin:0 0 12px;
}

/* ==========================================
   VERIFIED LABEL
========================================== */

.crm-card small{
    display:block;
    margin-top:20px;
    padding-top:15px;
    border-top:1px solid #f0f0f0;
    font-size:13px;
    font-weight:600;
    color:#444;
    opacity:0.9;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 1024px){

    .crm-card{
        flex:1 1 100%;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px){

    .crm-reviews{
        gap:15px;
    }

    .crm-card{
        padding:20px;
    }

    .crm-stars{
        font-size:22px;
    }

    .crm-card h4{
        font-size:20px;
    }

    .crm-card p{
        font-size:15px;
    }

    .crm-card small{
        font-size:12px;
    }

}
.crm-swiper{
    padding:20px 70px;
    position:relative;
}

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

.swiper-button-next{
    right:10px;
}
.swiper-button-next,.swiper-button-prev{color:#333}
.swiper-pagination{position:relative;margin-top:15px}
.swiper-button-next,
.swiper-button-prev{
    transform:scale(0.45);
    color:#666;
    opacity:0.6;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    opacity:1;
    color:#222;
}
/* Smaller carousel arrows */

.swiper-button-next,
.swiper-button-prev{
width:24px !important;
height:24px !important;
color:#777 !important;
opacity:0.4 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after{
font-size:24px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
opacity:0.8 !important;
}

/* Move arrows further outside */

.swiper-button-prev{
left:-10px !important;
}

.swiper-button-next{
right:-10px !important;
}

