:root{

    --tm-primary:#ff6b00;      /* Orange */

    --tm-primary-light:#fff3eb;

    --tm-heading:#141b2d;      /* Dark Navy */

    --tm-text:#666666;

    --tm-card:#ffffff;

    --tm-bg:#fafafa;

    --tm-star:#ffb400;

}


/* ===============================
   Testimonials Section
================================= */

.tm-testimonial-section{
    padding:100px 0;
    background:#f8f9fb;
}

.tm-section-title{
    max-width:700px;
    margin:0 auto 60px;
    text-align:center;
}

.tm-section-title span{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:14px 24px;

    border-radius:50px;

    background:var(--tm-primary-light);

    color:var(--tm-primary);

    font-size:15px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:24px;
}

.tm-section-title span::before{

    content:"";

    width:9px;

    height:9px;

    border-radius:50%;

    background:var(--tm-primary);

}

.tm-section-title h2{

    font-family:"Poppins",sans-serif;

    font-size:58px;

    font-weight:700;

    line-height:1.1;

    color:var(--tm-heading);

    margin-bottom:24px;
}

.tm-section-title p{

    font-family:"Poppins",sans-serif;

    color:var(--tm-text);

    font-size:20px;

    line-height:1.9;

    max-width:900px;

    margin:auto;
}

/* ===============================
   Swiper
================================= */

.tm-testimonial-slider{
    padding-bottom:60px;
}

.tm-testimonial-slider .swiper-slide{
    height:auto;
}

/* ===============================
   Card
================================= */

/* Card */
.tm-card{

    background:#fff;
    border:1px solid #ececec;
    border-radius:22px;

    padding:32px;

    width:100%;

    min-height:280px;

    display:flex;
    flex-direction:column;

    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.35s ease;
}

.tm-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);

}
/* ===============================
   Header
================================= */

.tm-header{

    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:22px;

}

.tm-profile{

    width:58px;

    height:58px;

    border-radius:50%;

    object-fit:cover;

    flex-shrink:0;

    border:3px solid #f1f1f1;

}

.tm-placeholder{

    background:#ddd;

}

.tm-info{

    flex:1;

}

.tm-info h4{

    font-family:"Poppins",sans-serif;

    color:var(--tm-heading);

    font-size:19px;

    font-weight:600;

}

.tm-designation{

    margin:5px 0 2px;

    font-family:"Poppins",sans-serif;

    color:#777;

    font-size:14px;

}

.tm-company{

    margin:0;

    font-family:"Poppins",sans-serif;

    color:#777;

    font-size:14px;

}

/* ===============================
   Review
================================= */

.tm-review{

    font-family:"Poppins",sans-serif;

    color:#5d5d5d;

    font-size:15px;

    line-height:1.9;

}

.tm-review p:last-child{

    margin-bottom:0;

}

/* ===============================
   Rating
================================= */

.tm-rating{

    color:#FFC107;

    font-size:20px;

    letter-spacing:2px;

    margin-top:auto;

}

/* ===============================
   Pagination
================================= */

.tm-testimonial-slider .swiper-pagination{

    bottom:0;

}

.tm-testimonial-slider .swiper-pagination-bullet{

    width:10px;

    height:10px;

    opacity:1;

    background:#d5d5d5;

}

.tm-testimonial-slider .swiper-pagination-bullet-active{

    background:#0b7cff;

}

/* ===============================
   Responsive
================================= */

@media (max-width:1200px){

    .tm-section-title h2{

        font-size:36px;

    }

}

@media (max-width:991px){

    .tm-testimonial-section{

        padding:80px 0;

    }

    .tm-section-title{

        margin-bottom:45px;

    }

    .tm-section-title h2{

        font-size:32px;

    }

}

@media (max-width:767px){

    .tm-testimonial-section{

        padding:70px 0;

    }

    .tm-card{

        padding:20px;

    }

    .tm-header{

        gap:14px;

    }

    .tm-profile{

        width:54px;

        height:54px;

    }

    .tm-info h4{

        font-size:17px;

    }

    .tm-designation{

        font-size:13px;

    }

    .tm-company{

        font-size:12px;

    }

    .tm-review{

        font-size:14px;

        line-height:1.8;

    }

}

@media (max-width:575px){

    .tm-section-title{

        margin-bottom:35px;

    }

    .tm-section-title h2{

        font-size:28px;

    }

    .tm-section-title p{

        font-size:15px;

    }

    .tm-card{

        padding:18px;

        border-radius:18px;

    }

    .tm-profile{

        width:50px;

        height:50px;

    }

    .tm-rating{

        font-size:18px;

    }

}