/* Hero Section for Vision & Mission Page */
.hero-vision-mission {
    position: relative;
    padding-top: 115px;
    padding-bottom: 50px;
    background: url('../images/about-service.jpg') 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(132, 143, 154, 0.8), rgba(0, 78, 152, 0.7));
    z-index: 1;
}

.hero-vision-mission .container {
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    z-index: 2;
}

.hero-vision-mission h1 {
    font-size: 3.5rem;
    text-align: center;
    color: #fff;
    font-family: "Gill Sans Bold" !important;
    font-weight: 600;
}

.hero-vision-mission .hero-subtitle {
    font-family: "Gill Sans Bold" !important;
    font-size: 1.3rem;
    color: white;
    text-align: center;
    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: #005CBF;
    margin-right: 40px;
    min-width: 80px;
    text-align: center;
}

.vm-content h2 {
    font-size: 3.2rem;
    font-family: "Gill Sans Bold" !important;
    margin-bottom: 15px;
    justify-content: center;
    align-items: center;
    display: flex;
    text-align: center !important;
    color: #000;
}

.vm-content h2::after {
    content: '';
    position: absolute;
    display: block;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.vm-content p {
    font-size: 1.2rem;
    text-align: justify;
    font-family: "Gill Sans Bold" !important;
    line-height: 1.8;
    color: #000;
}

/* 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;
    }
}
