/* Hero Section for Vision & Mission Page */
.hero-vision-mission {
    position: relative;
    padding-top: 115px;
    padding-bottom: 50px;
    background: url('../images/about-bg.webp') no-repeat center center/cover;
    text-align: center;
    color: #fff;
}

.hero-vision-mission .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(1, 29, 56, 0.85), rgba(0, 78, 152, 0.75));
    z-index: 1;
}

.hero-vision-mission .container {
    position: relative;
    z-index: 2;
}

.hero-vision-mission h1 {
    font-size: 3.5rem;
    font-weight: 600;
}

.hero-vision-mission .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.vm-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.vm-icon {
    font-size: 4rem;
    color: #0056b3;
    margin-right: 40px;
    min-width: 80px;
    text-align: center;
}

.vm-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #333;
}

.vm-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

#particles-js-vm {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-vision-mission h1 {
        font-size: 2.5rem;
    }

    .vm-card {
        flex-direction: column;
        text-align: center;
    }

    .vm-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
