.core-values{
    padding:30px 8% 60px;
    background:#f8fbff;
   
}

.core-values-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:10px 20px;
}

.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 80px;
    
}

.section-title span{
    color:#0f3aa9;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    margin:15px 0;
}

.section-title p{
    color:#666;
    line-height:1.8;
    text-align:center !important;
}

.core-line{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.line{
    position:absolute;
    left:0;
    right:0;
    top:42px;
    height:4px;
    background:#dbe5f3;
    border-radius:20px;
}

.core-item{
    width:19%;
    position:relative;
    z-index:2;
    text-align:center;
}

.icon{
    width:84px;
    height:84px;
    margin:auto;
    border-radius:50%;
    background:#fff;
    border:4px solid #0f3aa9;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.icon i{
    font-size:30px;
    color:#0f3aa9;
    transition:.4s;
}

.card{
    margin-top:35px;
    background:#fff;
    padding:25px;
    /* border-radius:18px; */
    box-shadow:0 20px 45px rgba(0,0,0,.07);
    transition:.4s;
}

.card h4{
    margin-bottom:12px;
    color:#0f3aa9;
}

.card p{
    color:#666;
    font-size:14px;
    line-height:1.7;
}

.core-item:hover .icon{
    background:#0f3aa9;
    transform:translateY(-12px) scale(1.08);
    box-shadow:0 20px 45px rgba(15,58,169,.35);
}

.core-item:hover .icon i{
    color:#fff;
}

.core-item:hover .card{
    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(15,58,169,.15);
}

@media (max-width:991px){

    .core-values{
        padding:10px 20px;
    }

    .core-values-container{
        padding:0;
    }

    .section-title{
        margin:0 auto 60px;
    }

    .section-title h2{
        font-size:38px;
    }

    .core-line{
        flex-wrap:wrap;
        justify-content:center;
        gap:30px;
    }

    .core-item{
        width:45%;
    }

    .core-item p{
        text-align:center !important;
    }

    .line{
        display:none;
    }

}

@media (max-width:767px){

    .core-values{
        padding:10px 20px;
    }

    .core-values-container{
        padding:0;
    }

    .section-title{
        margin:0 auto 45px;
    }

    .section-title h2{
        font-size:30px;
    }

    .section-title p{
        font-size:15px;
    }

    .core-line{
        flex-direction:column;
        gap:30px;
    }

    .core-item{
        width:100%;
        max-width:420px;
    }

    .core-item p{
        text-align:center !important;
    }

    .icon{
        display:none;
    }

    .line{
        display:none;
    }

    .card{
        margin-top:0;
    }

}