.vision-mission {
    padding: 6rem 5%;
    background-color: var(--color-a); /* Changed back to dark green */
    position: relative;
}

.vm-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.vm-content {
    flex: 1;
    min-width: 300px;
}

.vm-content h3 {
    color: var(--color-c); /* Changed to white for readability on dark green background */
    margin-bottom: 1.8rem;
    font-size: 1.9rem;
    position: relative;
    padding-bottom: 15px;
}

.vm-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--color-d);
    border-radius: 2px;
}

.vm-content p {
    margin-bottom: 1.8rem;
    color: var(--color-c); /* Changed to white for readability on dark green background */
    font-size: 1.5rem;
}

.graph-container {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px; /* Original padding */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    height: 400px;
}

.graph-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 180, 219, 0.1) 0%, transparent 70%);
    animation: pulse 8s infinite linear;
}

@keyframes pulse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

canvas {
    max-width: 100%;
    position: relative;
    z-index: 1;
}

/* Staggered animation for vm-content and graph-container */
.vm-animated {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.vision-mission.animated .vm-animated {
    opacity: 1;
    transform: translateY(0);
}

.vision-mission.animated .vm-animated:nth-child(1) { /* For vm-content */
    transition-delay: 0.1s;
}

.vision-mission.animated .vm-animated:nth-child(2) { /* For graph-container */
    transition-delay: 0.3s;
}

.vision-mission .section-title {
    color: var(--color-c); /* White text for dark green background */
}