.visi-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.visi-card:hover {
    transform: translateY(-5px);
}

.mission-card {
    border: none;
    background: #fff;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary, #1f2937), var(--secondary, #083a54));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mission-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary, #1f2937);
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.mission-card:hover .icon-box {
    background: var(--primary, #1f2937);
    color: #fff;
    transform: rotateY(360deg);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--primary, #111827);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary, #111827);
    border-radius: 2px;
}

.center-title.section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.visi-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4b5563;
}

.illustration-wrapper img {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease;
}

.illustration-wrapper:hover img {
    transform: scale(1.03);
}