/* VMV Intro */
.vmv-intro {
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: center;
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    padding: 0 15px;
}

/* VMV Grid */
.vmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

/* VMV Card */
.vmv-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vmv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Icon wrapper */
.vmv-icon {
    margin-bottom: 12px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.value-item {
    background: #0d0d0d;
    border: 1px solid #222;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    color: #ddd;
    transition: background 0.3s ease;
}

.value-item:hover {
    background: #1a1a1a;
}

/* CLEAN VMV BANNER — NO IMAGE IN CSS */
.vmv-banner {
    padding: 150px 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
  /*  animation: bannerZoom 12s ease-in-out infinite alternate; */
}

/* Text stays above */
.vmv-banner h1,
.vmv-banner p {
    position: relative;
    z-index: 2;
}

/* Zoom Animation */
@keyframes bannerZoom {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

.vmv-banner {
    min-height: 400px; /* ensures visible area */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.vmv-banner {
    min-height: 80vh;
}

.vmv-banner::before {
    display: none !important;
}

