/* card css style  */
/* ============================= */
.box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px !important;
}

.box:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 25px 50px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
/* ============================== */




/* mmfibernet hero section  */
/* ============================== */
@keyframes shift {
0% { transform: translateY(0) translateX(0) scale(1); }
50% { transform: translateY(-10px) translateX(6px) scale(1.02); }
100% { transform: translateY(0) translateX(0) scale(1); }
}
/* =========================== */
