/* Page Banner Styles */
.page-banner {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    padding: 150px 0;
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 58, 109, 0.7); /* Using primary color with opacity */
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-banner p {
    color: #f0f0f0;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.about-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-content-wrapper {
    padding: 20px 40px;
}

.about-content-wrapper h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color, #193a6d);
    margin-bottom: 25px;
}

.about-content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.about-features li {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.about-features li i {
    color: var(--primary-color, #193a6d);
    font-size: 1.3rem;
    margin-right: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-content-wrapper {
        padding: 40px 0 0 0;
    }
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 100px 0;
    background-image: url('../images/vm_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 58, 109, 0.75); /* Dark overlay to contrast the white cards */
    z-index: 0;
}

.vm-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border-bottom: 4px solid transparent;
}

.vm-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--primary-color, #193a6d);
}

.vm-icon {
    width: 90px;
    height: 90px;
    background: rgba(25, 58, 109, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--primary-color, #193a6d);
    transition: all 0.4s ease;
}

.vm-card:hover .vm-icon {
    background: var(--primary-color, #193a6d);
    color: #ffffff;
    transform: scale(1.1);
}

.vm-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.vm-card:hover h3 {
    color: var(--primary-color, #193a6d);
}

.vm-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}
