/* Mission Vision Values Section Styles */
.mission_vision_values {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.mission_vision_values .section_tittle h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #0c2e60;
    position: relative;
}

.mvv_card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.mvv_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mvv_card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #40B977, #40B977);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mvv_card:hover:before {
    opacity: 1;
}

.mvv_icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #40B977, #40B977);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 32px;
    transition: all 0.3s ease;
}

.mvv_card:hover .mvv_icon {
    transform: scale(1.1);
}

.mvv_card h3 {
    color: #0c2e60;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.mvv_card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.mvv_card ul {
    list-style: none;
    padding: 0;
    margin: 20px auto 0;
    text-align: center;
    max-width: 280px;
}

.mvv_card ul li {
    position: relative;
    padding: 12px 0;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvv_card ul li:last-child {
    border-bottom: none;
}

/* .mvv_card ul li:before {
    content: '✓';
    color: #40B977;
    font-weight: bold;
    font-size: 18px;
    margin-right: 10px;
} */

/* Responsive Styles */
@media (max-width: 991px) {
    .mission_vision_values {
        padding: 80px 0;
    }
    
    .mission_vision_values .section_tittle h2 {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .mvv_card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .mission_vision_values {
        padding: 60px 0;
    }
    
    .mission_vision_values .section_tittle h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .mvv_icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .mvv_card h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .mvv_card p {
        font-size: 14px;
    }

    .mvv_card {
        padding: 30px 20px;
    }

    .mvv_card ul {
        max-width: 240px;
    }

    .mvv_card ul li {
        font-size: 14px;
        padding: 10px 0;
    }

    .mvv_card ul li:before {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .mission_vision_values {
        padding: 50px 0;
    }
    
    .mission_vision_values .section_tittle h2 {
        font-size: 24px;
    }
    
    .mvv_card {
        padding: 25px 15px;
    }

    .mvv_card ul {
        margin: 15px auto 0;
        max-width: 200px;
    }

    .mvv_card ul li {
        padding: 8px 0;
    }
} 