body, .wcrs-slider-wrapper, .wcrs-box, .wcrs-text, .wcrs-name, .wcrs-role {
    font-family: 'Poppins', sans-serif;
}


.wcrs-slider-wrapper {
    background: #f4fff6;
    padding: 60px 20px;
   
    text-align: center;
    max-width: 1300px;
    margin: auto;
}

.wcrs-box {
    background-color: #2e4a2b;
    color: #fff;
    padding: 35px 25px 25px;

    margin: 20px 10px;
    position: relative;
    min-height: 320px;
}

.wcrs-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 4px solid #fff;
    object-fit: cover;
    margin: -50px auto 10px;
    position: relative;
    z-index: 2;
}

.wcrs-quote {
    width: 28px;
    height: 28px;
    background: orange;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -25px auto 10px;
    position: relative;
    z-index: 3;
}

.wcrs-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.wcrs-name {
    color: orange;
    font-weight: 600;
    font-size: 16px;
}

.wcrs-role {
    font-size: 13px;
    opacity: 0.85;
}

/* Slider arrows */
.slick-prev, .slick-next {
    background: #658056;
    color: white;
    border: none;
    width: 100px;
    height: 50px;
    clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.slick-prev {
    left: -120px;
}
.slick-next {
    right: -120px;
}

.slick-prev:hover, .slick-next:hover {
    background: #ffcd00;
    color: #000;
}

.slick-prev:before, .slick-next:before {
    font-size: 20px;
    color: white;
}

/* Dots */
.slick-dots {
    margin-top: 30px;
}
.slick-dots li button:before {
    color: #658056;
    font-size: 12px;
    opacity: 1;
}
.slick-dots li.slick-active button:before {
    color: orange;
}
@media (max-width: 768px) {
    .wcrs-box {
        margin: 20px 5px;
        padding: 25px 15px 20px;
        min-height: auto;
    }

    .wcrs-text {
        font-size: 14px;
    }

    .wcrs-name {
        font-size: 15px;
    }

    .slick-prev,
    .slick-next {
        display: none !important; /* Hide arrows on smaller screens */
    }

    .wcrs-avatar {
        width: 65px;
        height: 65px;
    }

    .wcrs-slider-wrapper {
        padding: 40px 10px;
    }
}
.wcrs-box {
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.slick-slide.slick-active .wcrs-box {
    transform: scale(1.02);
    opacity: 1;
}
