body
{
    font-family:cambria;
}

/*==================================
 Achievement Section
==================================*/

.achievement_section{
    padding:70px 0;
    background: linear-gradient(135deg, #bf1889, #d91f9c);
    position:relative;
    overflow:hidden;
}

/* Heading */

.achievement_section .ls_heading_wrapper{
    text-align:center;
    margin-bottom:50px;
}

.achievement_section .ls_heading_wrapper h2{
    font-size:52px;
    font-weight:700;
    color:#fff;
    margin-bottom:10px;
}

.achievement_section .ls_heading_wrapper p{
    color:#f5f5f5;
    font-size:18px;
}

/* Counter Box */

.counter-box{
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    margin-bottom:30px;
    transition:0.4s;
    backdrop-filter:blur(5px);
    min-height:320px;
}

.counter-box:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.15);
}

/* Circle */

.counter-circle{
    width:110px;
    height:110px;
    margin:auto;
    border-radius:50%;
    border:4px solid rgba(255,255,255,0.3);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:24px;
    font-weight:bold;
    margin-bottom:25px;
}

/* Text */

.counter-box h3{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
    font-weight:600;
}

.counter-box p{
    color:#f1f1f1;
    font-size:15px;
    line-height:26px;
}

/* Responsive */

@media(max-width:767px){

    .achievement_section .ls_heading_wrapper h2{
        font-size:34px;
    }

    .counter-box{
        min-height:auto;
    }

}

/* why choose us style */

.why_choose_section{
    padding:70px 0;
    background:#f7f9fc;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:38px;
    font-weight:700;
    color:#bf1889;
    margin-bottom:10px;
    position:relative;
}

.section-title p{
    color:#666;
    font-size:16px;
}

.why_choose_row{
    display:flex;
    flex-wrap:wrap;
}

.why_box{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.4s;
    margin-bottom:30px;
    height:100%;
}

.why_box:hover{
    transform:translateY(-10px);
    box-shadow:0 12px 35px rgba(0,0,0,0.15);
}

.why_img{
    overflow:hidden;
}

.why_img img{
    width:100%;
    transition:0.5s;
}

.why_box:hover .why_img img{
    transform:scale(1.05);
}

.why_content{
    padding:25px 20px;
    text-align:center;
}

.why_content h3{
    font-size:22px;
    color:#222;
    margin-bottom:12px;
    font-weight:600;
}

.why_content p{
    color:#666;
    font-size:15px;
    line-height:26px;
}

/* Mobile Responsive */
@media(max-width:767px){

    .section-title h2{
        font-size:30px;
    }

    .why_content{
        padding:20px 15px;
    }

}

/*==================================
 Client Logo Slider
==================================*/

.client_logo_section{
    padding:70px 0;
    background:#f8f9fc;
    overflow:hidden;
}

/* Heading */

.client_logo_section .ls_heading_wrapper{
    text-align:center;
    margin-bottom:50px;
}

.client_logo_section .ls_heading_wrapper h2{
    font-size:42px;
    color:#c51212;
    font-weight:700;
    margin-bottom:10px;
}

.client_logo_section .ls_heading_wrapper p{
    font-size:17px;
    color:#666;
}

/* Slider */

.logo-slider{
    position:relative;
    width:100%;
    overflow:hidden;
}

/* Track */

.logo-track{
    display:flex;
    width:calc(250px * 12);
    animation:scroll 30s linear infinite;
}

/* Logo Item */

.logo-item{
    width:220px;
    height:120px;
    background:#fff;
    margin:0 15px;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
    padding:20px;
}

.logo-item:hover{
    transform:translateY(-8px);
    box-shadow:0 8px 30px rgba(0,0,0,0.15);
}

.logo-item img{
    max-width:100%;
    max-height:70px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:0.8;
    transition:0.4s;
}

.logo-item:hover img{
    filter:grayscale(0%);
    opacity:1;
}

/* Animation */

@keyframes scroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc(-250px * 6));
    }

}

/* Responsive */

@media(max-width:767px){

    .client_logo_section{
        padding:60px 0;
    }

    .client_logo_section .ls_heading_wrapper h2{
        font-size:32px;
    }

    .logo-item{
        width:180px;
        height:100px;
    }

}
