/* assets/css/pages/purpose.css */

/* Page Header Styles moved to global.css */
/* Section Typography moved to global.css */


/* Immersive Backdrop Section */
.immersive-bg {
    position: relative;
    background-image: linear-gradient(rgba(240, 253, 250, 0.6), rgba(240, 253, 250, 0.6)), url('../../images/students-discussing.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.immersive-bg h3 {
    font-size: 2.25rem;
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
}

.immersive-bg p {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

/* Vision & Mission Styling */
/* Vision & Mission Styling */
.alt-bg {
    background: radial-gradient(circle at top right, rgba(20, 184, 166, 0.05), transparent 60%),
        radial-gradient(circle at bottom left, rgba(15, 118, 110, 0.05), transparent 60%),
        var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.vision-card,
.mission-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border);
    border-top: 4px solid var(--brand-primary);
    /* Accent Border */
    background: linear-gradient(to bottom, #ffffff, #fafcfc);
    /* Subtle depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.vision-card h3,
.mission-card h3 {
    color: var(--brand-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {

    .vision-card,
    .mission-card {
        padding: 2rem 1.5rem;
    }

    .immersive-bg h3 {
        font-size: 1.75rem;
    }
}




.quote-container {
    margin-top: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--brand-dark);
    line-height: 1.4;
}