/*=========================================
Why Choose Us
=========================================*/
.why-us-section{
    background:#F8FAFC;
    }
    .why-image img{
    border-radius:24px;
    box-shadow:var(--shadow);
    }
    .why-list{
    display:flex;
    flex-direction:column;
    gap:25px;
    }
    .why-item{
    display:flex;
    gap:20px;
    align-items:flex-start;
    background:#fff;
    padding:25px;
    border-radius:18px;
    border:1px solid var(--border);
    transition:.35s;
    }
    .why-item:hover{
    transform:translateX(8px);
    box-shadow:var(--shadow);
    }
    .why-icon{
    width:65px;
    height:65px;
    min-width:65px;
    border-radius:16px;
    background:#EEF5FF;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    }
    .why-item h3{
    font-size:1.25rem;
    margin-bottom:10px;
    }
    .why-item p{
    margin:0;
    color:var(--light-text);
    }
    @media(max-width:991px){
    .why-image{
    text-align:center;
    }
    }
    @media(max-width:767px){
    .why-item{
    flex-direction:column;
    text-align:center;
    align-items:center;
    }
    }