/* =====================================
   MISSION / VISION SECTION
===================================== */

.mission-vision{
    padding:60px 0;
    background:#ffffff;
}

/* SECTION TITLE */

.section-title{
    font-size:36px;
    font-weight:700;
    color:#111827;

    margin-bottom:50px;
}

.section-title i{
    color:var(--primary);
}

/* =====================================
   CARD
===================================== */

.mv-card{
    height:100%;

    background:#ffffff;

    padding:36px 30px;

    border-radius:22px;

    border:2px solid rgba(79,70,229,0.10);
    border-top:5px solid var(--primary);

    text-align:center;

    position:relative;
    overflow:hidden;

    transition:all .35s ease;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.06),
        0 2px 8px rgba(79,70,229,0.08);
}

/* SUBTLE GLOW */

.mv-card::after{
    content:"";
    position:absolute;
    inset:0;

    background:
        radial-gradient(
            circle at top right,
            rgba(79,70,229,0.04),
            transparent 55%
        );

    pointer-events:none;
}

/* SHINE EFFECT */

.mv-card::before{
    content:"";
    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );

    transition:.7s;
}

.mv-card:hover::before{
    left:100%;
}

/* =====================================
   ICON
===================================== */

.mv-icon{
    width:82px;
    height:82px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 20px;

    border-radius:50%;

    font-size:36px;

    color:var(--primary);

    border:2px solid rgba(79,70,229,0.18);

    background:transparent;

    box-shadow:
        0 8px 18px rgba(79,70,229,0.08);

    transition:.35s ease;

    position:relative;
    z-index:2;
}

/* =====================================
   TITLE
===================================== */

.mv-card h5{
    font-size:24px;
    font-weight:700;

    color:#111827;

    margin-bottom:12px;

    transition:.3s ease;
}

/* =====================================
   HR LINE
===================================== */

.mv-card hr{
    width:70px;
    height:3px;

    border:none;

    background:var(--primary);

    margin:0 auto 18px;

    border-radius:10px;

    opacity:1;
}

/* =====================================
   TEXT
===================================== */

.mv-card p{
    margin:0;

    font-size:16px;
    line-height:1.8;

    color:#6b7280;

    transition:.3s ease;
}

/* =====================================
   HOVER EFFECT
===================================== */

.mv-card:hover{
    transform:translateY(-10px);

    border-color:rgba(79,70,229,0.25);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.12),
        0 8px 20px rgba(79,70,229,0.18);

    background:linear-gradient(
        135deg,
        rgba(79,70,229,0.05),
        rgba(6,182,212,0.06)
    );
}

.mv-card:hover .mv-icon{
    transform:scale(1.1);

    border-color:var(--primary);

    box-shadow:
        0 10px 24px rgba(79,70,229,0.16);
}

.mv-card:hover h5{
    color:var(--primary);
}

.mv-card:hover p{
    color:#374151;
}

/* CLICK EFFECT */

.mv-card:active{
    transform:scale(.98);
}

/* =====================================
   TABLET
===================================== */

@media(max-width:992px){

    .mission-vision{
        padding:55px 0;
    }

    .section-title{
        font-size:32px;
        margin-bottom:40px;
    }

    .mv-card{
        padding:32px 24px;
    }

    .mv-icon{
        width:76px;
        height:76px;

        font-size:32px;
    }

    .mv-card h5{
        font-size:22px;
    }

    .mv-card p{
        font-size:15px;
    }

}

/* =====================================
   MOBILE
===================================== */

@media(max-width:576px){

    .mission-vision{
        padding:50px 0;
    }

    .section-title{
        font-size:28px;
        line-height:1.4;

        margin-bottom:35px;

        padding:0 12px;
    }

    .mv-card{
        padding:28px 22px;

        border-radius:22px;

        border-left:6px solid var(--primary);
        border-top:2px solid rgba(79,70,229,0.15);

        min-height:auto;

        box-shadow:
            0 12px 30px rgba(0,0,0,0.08),
            0 4px 10px rgba(79,70,229,0.08);
    }

    .mv-icon{
        width:70px;
        height:70px;

        font-size:30px;

        margin-bottom:16px;
    }

    .mv-card h5{
        width:100%;

        font-size:20px;
        line-height:1.4;

        margin-bottom:10px;

        white-space:normal;
        overflow-wrap:break-word;
        word-break:break-word;
    }

    .mv-card hr{
        width:60px;
        margin-bottom:16px;
    }

    .mv-card p{
        width:100%;

        font-size:14px;
        line-height:1.7;

        margin:0;

        white-space:normal;
        overflow-wrap:break-word;
        word-break:break-word;
    }

}

/* =====================================
   EXTRA SMALL DEVICES
===================================== */

@media(max-width:400px){

    .section-title{
        font-size:24px;
    }

    .mv-card{
        padding:24px 18px;
    }

    .mv-icon{
        width:64px;
        height:64px;

        font-size:26px;
    }

    .mv-card h5{
        font-size:18px;
    }

    .mv-card p{
        font-size:13.5px;
    }

}