.vision-mision-wrapper {
    position: relative;
    padding: 100px 0 60px;
    background: #f6f7f9;
}

.vm-background-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e6e4ea 40%, #f7f6fa 100%);
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    z-index: 0;
}

.vm-card {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
}

.vm-image-frame {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.15);
}

.vm-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vm-tabs {
    display: flex;
    gap: 12px;
}

.vm-tab {
    background: #ffffff;
    border: 1px solid #d6d9de;
    border-radius: 999px;
    padding: 8px 28px;
    cursor: pointer;
    transition: all .25s;
}

.vm-tab.active {
    background: #ffdad9;
    color: var(--color-primary);
    border-color: #f9b4b2;
    box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.1);
}

.vm-tab:not(.active):hover {
    border-color: #c2c7cc;
}

.vm-title {
    margin-bottom: 1rem;
}

.vm-text {
    line-height: 1.55;
}


.vm-panel {
    display: none;
    animation: vmFade .4s ease;
}

.vm-panel.show {
    display: block;
}

@keyframes vmFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .vision-mision-wrapper {
        padding: 70px 0 40px;
    }

    .vm-card {
        border-radius: 16px;
    }

    .vm-image-frame {
        margin-bottom: 20px;
    }
}