#text-slider h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

#text-slider p {
    font-size: 16px;
    color: #555;
}

.splide__arrow {
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.splide__arrow:hover {
    background-color: #555;
}
.vm_section{
   padding-top: 60px;
	padding-bottom: 130px;
}

.vm-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.vm-card {
    width: 500px;
    height: 350px;
    perspective: 1000px;
}

.vm-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.vm-card:hover .vm-card-inner {
    transform: rotateY(180deg);
}

.vm-card-front,
.vm-card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.vm-card-front {
    background: #090C0F;
    color: white;
}

.vm-card-back {
    background: #fff;
    color: #333;
    transform: rotateY(180deg);
    text-align: center;
    padding: 20px;
}

.vm-content h2 {
    color: white;
}

.vm-icon {
    font-size: 50px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .vm-container {
        flex-direction: column;
        align-items: center;
    }

    .vm-card {
        width: 300px;
        height: 350px;
        perspective: 1000px;
    }
}
