﻿.rich-feature-list{
    list-style: none;
    padding: 0;
    margin: 25px 0;
    max-width: 520px;
}

.rich-feature-list li{
    position: relative;
    padding: 14px 18px 14px 50px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    border-radius: 6px;
    background: linear-gradient(135deg,#0c7db8,#0f4c75);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.35s ease;
}

.rich-feature-list li:before{
    content: "✓";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #ffffff;
    color: #0c7db8;
    font-weight: bold;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
}

/* Rich Hover Effect */
.rich-feature-list li:hover{
    background: linear-gradient(135deg,#ff7a18,#ffb347);
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}


 
.testimonial-section{
padding:80px 0;
background:#fff;
overflow:hidden;
}

.testimonial-title{
text-align:center;
font-size:32px;
margin-bottom:50px;
}

.testimonial-slider{
max-width:1200px;
margin:auto;
overflow:hidden;
}

.testimonial-track{
display:flex;
transition:transform .6s ease;
}

.testimonial-card{
min-width:33.33%;
padding:25px;
box-sizing:border-box;
}

.testimonial-card p{
font-size:15px;
line-height:1.7;
color:#555;
margin-bottom:25px;
}

.quote-icon{
font-size:40px;
color:#e5e5e5;
margin-bottom:15px;
}

.client{
display:flex;
align-items:center;
gap:12px;
}

.client img{
width:55px;
height:55px;
border-radius:50%;
}

.client h4{
margin:0;
font-size:16px;
}

.client span{
font-size:13px;
color:#777;
}

/* card border effect */

.testimonial-card{
border:1px solid #eee;
border-radius:8px;
transition:.3s;
}

.testimonial-card:hover{
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transform:translateY(-6px);
}

/* Default Desktop (3 testimonials) */
.testimonial-card{
min-width:33.33%;
}

/* Tablet */
@media (max-width:992px){

.testimonial-card{
min-width:50%;
}

}

/* Mobile */
@media (max-width:600px){

.testimonial-card{
min-width:100%;
}

}