/* ==========================================================================
   Mission, Vision, Objective (MVO) Section
   ========================================================================== */

/* --- Main Section & Wrapper --- */
.cim-mvo-section {
    padding: 80px 20px;
    background-color: #f4f7fa; /* Subtle contrast against white content */
    font-family: 'Manrope', sans-serif; /* Clean, bold Sans-Serif architecture */
}

.cim-mvo-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* CSS Grid auto-fit automatically stacks columns on mobile and creates 3 columns on desktop */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* --- Individual MVO Cards --- */
.cim-mvo-item {
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    
    /* Heavy, smooth, and realistic motion physics for the hover effect */
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), 
                box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cim-mvo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- Card Typography & Icons --- */
.cim-mvo-item h2 {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Pushes the icon to the right side */
    font-size: 26px;
    font-weight: 800; /* Bold sans-serif heading */
    color: #0a2540;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eef2f5;
}

/* Icon styling */
.cim-mvo-item h2 i {
    font-size: 28px;
    color: #0a2540;
    opacity: 0.8;
    /* Smooth icon transition */
    transition: color 0.4s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); 
}

.cim-mvo-item:hover h2 i {
    color: #1877F2; /* Highlights the icon in blue when the card is hovered */
    transform: scale(1.1);
}

.cim-mvo-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
}

/* ==========================================================================
   Responsive Design Adjustments
   ========================================================================== */
@media (max-width: 768px) {
    .cim-mvo-section {
        padding: 50px 15px;
    }

    .cim-mvo-item {
        padding: 30px 25px;
    }

    .cim-mvo-item h2 {
        font-size: 22px;
    }
}