.mv-section#about_msg {
    background-color: #ffffff;
    padding: -6px 0 !important;
    margin: 0 !important;
    min-height: auto !important;
    overflow: hidden;
}

.mv-section .container {
    max-width: 1550px;
    padding: 0 15px;
}

.mv-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    position: relative;
    height: 500px !important;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    overflow: hidden;
}

.mv-image-part {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.mv-image-part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mv-container:hover .mv-image-part img {
    transform: scale(1.05);
}

.mv-image-part::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 118, 185, 0.2), transparent);
    z-index: 2;
}

/* The slanted cut */
.mv-image-part-container {
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    position: relative;
    z-index: 1;
}

.mv-image-part-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mv-container:hover .mv-image-part-container img {
    transform: scale(1.1);
}

/* Decorative blue line on the slant */
.mv-image-part::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #0076B9;
    clip-path: polygon(85% 0, 87% 0, 102% 100%, 100% 100%);
    z-index: 3;
}

.mv-content-part {
    flex: 1;
    padding: 10px 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.mv-content-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.6fr 1.2fr;
    align-items: stretch;
    width: 100%;
    gap: 0;
}

/* Mission Column */
.mv-mission-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding-bottom: 0;
}

/* Path Column */
.mv-path-col {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 5px 0;
}

/* Vision Column */
.mv-vision-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding-top: 0;
}

.mv-text {
    font-size: 16px;
    color: black;
    line-height: 1.7;
    margin: 40px 0;
    padding: 0 10px;
    font-weight: 400;
}

.mv-banner {
    padding: 12px 30px;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    border-radius: 8px;
    display: inline-block;
    width: auto;
    min-width: 160px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-transform: capitalize;
}

.mv-banner.blue {
    background: linear-gradient(135deg, #0076B9, #005c91);
}

.mv-banner.green {
    background: linear-gradient(135deg, #88B218, #6d8f13);
}

.mv-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Path Elements */
.mv-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mv-circle:hover {
    transform: scale(1.15) rotate(10deg);
}

.mv-circle.blue {
    border: 6px solid #0076B9;
    margin-top: auto;
}

.mv-circle.green {
    border: 6px solid #88B218;
    margin-bottom: auto;
}

.mv-circle .icon-inner {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.mv-circle.blue .icon-inner {
    color: #0076B9;
}

.mv-circle.green .icon-inner {
    color: #88B218;
}

/* Connecting line decoration */
.mv-path-col::before {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 50%;
    width: 24px;
    background: #f0f4f7;
    transform: translateX(-50%) skewX(-15deg);
    z-index: 1;
    border-radius: 12px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .mv-section {
        padding: 5px 15px;
    }

    .mv-container {
        flex-direction: column;
        border-radius: 20px;
        height: auto !important;
        /* Force auto height on mobile */
        min-height: auto !important;
    }

    .mv-image-part {
        height: 200px;
        flex: none;
        margin-top: 0;
    }

    .mv-image-part-container {
        clip-path: polygon(0 0, 100% 0, 100% 70%, 0% 100%) !important;
        height: 100%;
    }

    .mv-image-part::after,
    .mv-image-part::before {
        display: none;
    }

    .mv-content-part {
        padding: 10px 20px 25px 20px;
        margin-top: 0;
        position: relative;
        z-index: 10;
    }

    .mv-content-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mv-path-col {
        min-height: auto;
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        padding: 15px 0;
        grid-row: 2;
    }

    .mv-path-col::before {
        display: none;
        /* Hide the connecting line on mobile */
    }

    .mv-mission-col {
        grid-row: 1;
        text-align: left;
        padding: 10px;
        margin-bottom: 0;
    }

    .mv-vision-col {
        grid-row: 3;
        text-align: left;
        padding: 10px;
        margin-top: 0;
    }

    .mv-text {
        margin: 10px 0 !important;
        font-size: 14px;
    }

    .mv-banner {
        font-size: 22px;
        padding: 12px 20px;
    }

    .mv-circle {
        width: 90px;
        height: 90px;
    }

    .mv-circle .icon-inner {
        width: 65px;
        height: 65px;
        font-size: 30px;
    }
}