 /* Card Styling */
 .service-card, .vmv-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover, .vmv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15)!important;
}

.service-img {
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

/* Icon Styling */
.vmv-icon-circle {
    transition: transform 0.3s ease;
}

.vmv-card:hover .vmv-icon-circle {
    transform: scale(1.1);
}

/* Intro Card Styling */
.intro-card {
    border-left: 4px solid #A0785A;
}

/* CTA Section */
.cta-card {
    border-top: 3px solid #A0785A;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .service-img {
        height: 160px;
    }
    
    .vmv-icon-circle {
        width: 60px !important;
        height: 60px !important;
    }
}