
.elementor-256 .elementor-element.elementor-element-375d50b70:not(.elementor-motion-effects-element-type-background),
.elementor-256 .elementor-element.elementor-element-375d50b70 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    min-height: 250px;
    height: auto;
}

.elementor-element-43445239{
    margin-top:30px;
}

.elementor-element-1d3b8791{
    margin-top:30px;
}

.elementor-element-5e259b73{
    margin-top:30px;
}

.elementor-256 .elementor-element.elementor-element-375d50b70 {
    padding: 40px 20px 50px 20px;
}

/* Tablet */
@media (max-width: 1024px) {
    .elementor-256 .elementor-element.elementor-element-375d50b70 {
        padding: 30px 15px 40px 15px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .elementor-256 .elementor-element.elementor-element-375d50b70:not(.elementor-motion-effects-element-type-background),
    .elementor-256 .elementor-element.elementor-element-375d50b70 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
        min-height: auto;
    }
}




/* Hover effect */
a:hover .elementor-icon-list-text {
    color: rgb(5, 134, 189) !important;
    transform: scale(1.1);
}

/* Tablet */
@media (max-width: 1024px){
    a:hover .elementor-icon-list-text{
        color: rgb(5, 134, 189) !important;
        transform: scale(1.1);
    }
}

/* Mobile */
@media (max-width: 767px){
    a:hover .elementor-icon-list-text{
        color: rgb(5, 134, 189) !important;
        transform: scale(1.1);
    }
}




/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section{
    padding: 80px 20px;
    background: #e5e5e5;
    font-family: "Inter", sans-serif;
}

.testimonial-wrapper{
    max-width: 1280px;
    margin: auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;   /* LAST ROW CENTER */
    gap: 20px;
}

/* CARD */

.testimonial-card{
    background: #1f6ea5;
    border-radius: 18px;
    padding: 30px 28px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;

    width: calc(33.333% - 14px); /* 3 CARDS PER ROW */
    min-height: 400px;

    transition: all 0.35s ease;
    box-sizing: border-box;
}

/* HOVER EFFECT */

.testimonial-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* IMAGE */

.testimonial-image{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
}

.testimonial-image img{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255,255,255,0.2);
    display: block;

    transition: 0.4s ease;
}

/* IMAGE HOVER */

.testimonial-card:hover .testimonial-image img{
    transform: scale(1.08);
}

/* CONTENT */

.testimonial-content p{
    color: #FFFFFF;
    font-family: "Inter", Sans-serif;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
}

/* NAME */

.testimonial-content h3{
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* DESIGNATION */

.testimonial-content span{
   	color: #DFDFDF;
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
}

.section-heading{
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2{
    color: #0E2B3D;
    font-family: "Montserrat", Sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-heading p{
    color: #C70000;
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

/* =========================
   TABLET
========================= */

@media(max-width: 1024px){

    .testimonial-wrapper{
        gap: 18px;
    }

    .testimonial-card{
        width: calc(50% - 10px); /* 2 CARDS */
        min-height: auto;
    }

    .testimonial-content h3{
        font-size: 24px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width: 767px){

    .testimonial-section{
        padding: 60px 15px;
    }

    .testimonial-wrapper{
        gap: 20px;
    }

    .testimonial-card{
        width: 100%; /* 1 CARD */
        padding: 25px 22px 35px;
        min-height: auto;
    }

    .testimonial-image img{
        width: 95px;
        height: 95px;
    }

    .testimonial-content p{
        font-size: 14px;
        line-height: 1.8;
    }

    .testimonial-content h3{
        font-size: 22px;
    }
}