/* ===================== MISSION VISION ADVANCED ===================== */

.mv-card{
    background:#fff;
    border-radius:18px;
    padding:35px 30px;
    text-align:center;
    position:relative;
    overflow:hidden;
    border:1px solid rgba(0,0,0,0.05);
    transition:0.35s ease;
    height:100%;
}

.mv-card:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
    border-color:rgba(79,70,229,0.25);

    background:linear-gradient(
        135deg,
        rgba(79,70,229,0.06),
        rgba(6,182,212,0.06)
    );
}

.mv-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(79,70,229,0.1),transparent);
    transition:0.5s;
}

.mv-card:hover::before{
    left:100%;
}

/* ICON */
.mv-icon{
    font-size:45px;
    color:var(--primary);
    margin-bottom:15px;
    transition:0.3s;
}

.mv-card:hover .mv-icon{
    transform:scale(1.25) rotate(6deg);
}

/* TITLE */
.mv-card h5{
    font-weight:800;
    color:var(--primary);
    margin-bottom:10px;
}

/* TEXT */
.mv-card p{
    color:#555;
}

/* subtle divider */
.mv-card hr{
    width:50px;
    height:3px;
    border:none;
    margin:12px auto;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
}