/* About Page CSS */

/* Page Banner */
.page-banner {
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
    position: relative;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.6);
    z-index: 1;
}
.page-banner .container {
    position: relative;
    z-index: 2;
}
.page-banner h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}
.page-banner .breadcrumb {
    font-size: 14px;
    color: #ccc;
}
.page-banner .breadcrumb a {
    color: #fff;
    text-decoration: none;
}
.page-banner .breadcrumb span.separator {
    margin: 0 10px;
}
.page-banner .breadcrumb span.current {
    color: var(--primary);
}

/* About Us - Split Section */
.about-split-section {
    display: flex;
    margin-top: 60px;
    position: relative;
}
.about-split-left {
    flex: 1;
    background-color: #ffffff;
    padding: 80px 40px 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.about-split-left .bg-decor {
    position: absolute;
    bottom: 0;
    left: 20px;
    max-height: 150px;
    z-index: 1;
    mix-blend-mode: multiply;
    filter: brightness(1.05) contrast(1.2);
}
.about-split-content {
    position: relative;
    z-index: 2;
}
.about-split-content .tag {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: bold;
}
.about-split-content h2 {
    font-size: 36px;
    margin: 15px 0;
    line-height: 1.2;
}
.about-split-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}
.about-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}
.a-feature {
    text-align: center;
}
.a-feature i {
    font-size: 28px;
    color: #555;
    margin-bottom: 10px;
}
.a-feature span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}
.about-split-right {
    flex: 1;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}
.about-split-right img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background-color: var(--light);
}
.mission-vision-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.mv-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.mv-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}
.mv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}
.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
    text-align: justify;
    font-size: 15px;
}

/* Responsive adjustments for about page */
@media (max-width: 991px) {
    .about-split-section {
        flex-direction: column;
        margin-top: 20px;
    }
    .about-split-left {
        padding: 20px 20px 40px;
    }
    .about-split-right {
        min-height: 300px;
    }
}
@media (max-width: 768px) {
    .page-banner {
        padding: 50px 0;
    }
    .page-banner h1 {
        font-size: 28px;
    }
    .about-split-content h2 {
        font-size: 26px;
    }
    .about-split-content p {
        text-align: justify;
        font-size: 14px;
    }
    .mission-vision {
        padding: 50px 0;
    }
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .mv-card {
        padding: 25px;
    }
    .mv-card i {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .mv-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .mv-card p {
        text-align: justify;
        font-size: 14px;
    }
    .about-split-left .bg-decor {
        max-height: 70px;
        left: 0;
        bottom: 0;
        opacity: 0.5;
    }
}
