/* Modern Core Values Cards */
.core-values-modern-section {
    background: white;
    padding: 100px 0;
}

.core-value-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.core-value-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2ab737, #3dd04f, #5fe86f);
    z-index: 1;
}

.core-value-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(42, 183, 55, 0.25);
    border-color: #2ab737;
}

.core-value-icon-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2ab737;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.core-value-card-modern:hover .core-value-icon-modern {
    transform: scale(1.1);
    color: #1e8b2a;
}

.core-value-card-modern h4 {
    color: #1e8b2a;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.core-value-card-modern p {
    color: #6c757d;
    line-height: 1.8;
    text-align: center;
    font-size: 1rem;
}
