.text-title-orange {
    color: #F38221;
    font-size: 40px;
}

.text-orange {
    color: #F38221;
    font-weight: 400;
}

/* MAIN BOX FLEX HEIGHT */
.mv-box {
    border: 2px solid #f4801e;
    border-radius: 20px;
    display: flex;
    align-items: stretch;
    /* Key fix */
    overflow: hidden;
}

/* ICON FULL HEIGHT (Desktop) */
.mv-icon {
    background: #f4801e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    border-radius: 18px 0 0 18px;
    flex-shrink: 0;
}

/* For Vision row (reversed box) */
.flex-lg-row-reverse .mv-icon {
    border-radius: 0 18px 18px 0;
}

/* ICON SIZE */
.mv-icon img {
    width: 110px;
    height: auto;
}

/* CONTENT */
.mv-content {
    padding: 25px 30px;
}

.mv-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.mv-content p {
    font-size: 18px;
    color: #333;
}

/* ✅ Mobile Responsive Rules */
@media (max-width: 991px) {
    .mv-box {
        flex-direction: column;
        text-align: center;
    }

    .mv-icon {
        width: 100%;
        height: auto;
        padding: 20px 0;
        border-radius: 18px 18px 0 0 !important;
    }

    .mv-icon img {
        width: 55px;
    }

    .mv-content {
        padding: 20px;
        text-align: center !important;
    }

    .mv-content h3 {
        font-size: 24px;
    }

    .mv-content p {
        font-size: 16px;
    }
}