/* Mission and Vision Modern PPT Style Design */
.mission-vision-modern-section {
    padding: 120px 0;
    background-color: #f7f9fc;
    overflow: hidden;
    position: relative;
}

/* Diagonal Background Band */
.mission-vision-modern-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 300px;
    background: #ffffff;
    transform: translate(-50%, -50%) rotate(-25deg);
    z-index: 0;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
}

.mv-modern-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    /* Reduced gap from 80px to fit 3 cards */
    max-width: 1400px;
    /* Increased max-width */
    margin: 0 auto;
}

.mv-card {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background colored circle */
.mv-bg-circle {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    z-index: 1;
}

.mv-card.vision .mv-bg-circle {
    background: #ff8c8e;
    /* Coral/Pinkish color from image */
    top: -20px;
    left: -20px;
}

.mv-card.mission .mv-bg-circle {
    background: #4a6fa5;
    /* Steel Blue color from image */
    bottom: -20px;
    right: -20px;
}

.mv-card.values .mv-bg-circle {
    background: #638a87;
    /* ASA Green color */
    top: -20px;
    right: -20px;
}

/* Main white circle */
.mv-main-circle {
    position: relative;
    width: 380px;
    height: 380px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mv-card:hover .mv-main-circle {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.mv-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.mv-card-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px !important;
    text-transform: capitalize;
}

.mv-card.vision .mv-card-title {
    color: #e64a50;
}

.mv-card.mission .mv-card-title {
    color: #2b6d91;
}

.mv-card.values .mv-card-title {
    color: #507673;
}

.mv-card-text {
    font-size: 15px;
    /* Slightly smaller overall */
    line-height: 1.5;
    color: #555;
    margin: 0;
    padding: 0 10px;
}

.values-text {
    font-size: 11.5px !important;
    /* Significantly smaller for Core Values to fit */
    line-height: 1.35 !important;
    padding: 0 5px !important;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .mission-vision-modern-section {
        padding: 60px 10px;
    }

    .mission-vision-modern-section::before {
        display: none;
    }

    .mv-modern-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .mv-card,
    .mv-bg-circle,
    .mv-main-circle {
        width: 360px;
        height: 360px;
        max-width: 95vw;
        aspect-ratio: 1 / 1;
    }

    .mv-main-circle {
        padding: 18px;
        /* Reduced to give more room for text */
        box-sizing: border-box;
    }

    .mv-card.vision .mv-bg-circle {
        top: -10px;
        left: -10px;
    }

    .mv-card.mission .mv-bg-circle {
        bottom: -10px;
        right: -10px;
    }

    .mv-card.values .mv-bg-circle {
        top: -10px;
        right: -10px;
    }

    .mv-card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 10px;
    }

    .mv-card-title {
        font-size: 28px;
        margin-bottom: 8px !important;
    }

    .mv-card-text {
        font-size: 13.5px;
        line-height: 1.4;
        padding: 0 5px;
        text-align: center;
    }

    .values-text {
        font-size: 10.5px !important;
        line-height: 1.25 !important;
    }
}

@media (max-width: 375px) {

    .mv-card,
    .mv-bg-circle,
    .mv-main-circle {
        width: 300px;
        height: 300px;
    }

    .mv-main-circle {
        padding: 15px;
    }

    .mv-card-text {
        font-size: 12px;
        line-height: 1.35;
        padding: 0;
    }

    .mv-card-title {
        font-size: 24px;
        margin-bottom: 5px !important;
    }

    .mv-card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }
}