/* =============================================
   MISSION & VISION PAGE - REDESIGNED
   Color Palette: #141d2a (dark), #8186d5 (primary), #F5875D (accent)
   ============================================= */

:root {
    --mission-dark: #141d2a;
    --mission-dark-light: #1a2332;
    --mission-primary: #8186d5;
    --mission-accent: #F5875D;
    --mission-gradient-start: #6366f1;
    --mission-gradient-end: #8b5cf6;
    --mission-text: #1f2937;
    --mission-text-muted: #6b7280;
    --mission-border: rgba(129, 134, 213, 0.2);
    --mission-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

/* =============================================
   PARALLAX SECTIONS
   ============================================= */
.parallax-container {
    position: relative;
    overflow-x: clip;
}

.parallax-section1 {
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0;
    position: relative;
    color: white;
}

.parallax-section2 {
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0;
    position: relative;
    color: white;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 29, 42, 0.85) 0%, rgba(20, 29, 42, 0.75) 100%);
}

/* =============================================
   QUOTE CONTAINER
   ============================================= */
.quote-container {
    background: linear-gradient(135deg, rgba(129, 134, 213, 0.08), rgba(99, 102, 241, 0.05));
    border-left: 5px solid;
    border-image: linear-gradient(180deg, var(--mission-gradient-start), var(--mission-gradient-end)) 1;
    border-radius: 0 16px 16px 0;
    padding: 36px 40px;
    font-style: italic;
    position: relative;
    box-shadow: var(--mission-shadow);
}

.quote-container::before {
    content: '"';
    font-size: 100px;
    font-family: Georgia, serif;
    position: absolute;
    top: -20px;
    left: 20px;
    color: rgba(129, 134, 213, 0.15);
    line-height: 1;
}

.quote-container p {
    color: var(--mission-text);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.quote-container .blockquote-footer {
    color: var(--mission-primary);
    font-weight: 600;
}

/* =============================================
   MISSION SECTION
   ============================================= */
#mission {
    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
}

.mission-point {
    position: relative;
    padding-left: 45px;
    margin-bottom: 32px;
}

.mission-point::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mission-gradient-start), var(--mission-gradient-end));
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
}

.mission-point::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.mission-point h5 {
    color: var(--mission-text);
    font-weight: 700;
    margin-bottom: 8px;
}

.mission-point p {
    color: var(--mission-text-muted);
    margin-bottom: 0;
    line-height: 1.7;
}

/* =============================================
   VISION SECTION
   ============================================= */
.vision-container {
    position: relative;
    z-index: 1;
}

.vision-item {
    border-left: 3px solid var(--mission-primary);
    padding: 0 0 32px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.vision-item::before {
    content: "";
    position: absolute;
    left: -11px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mission-gradient-start), var(--mission-gradient-end));
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.vision-item:hover::before {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.vision-item:last-child {
    padding-bottom: 0;
    border-left-color: transparent;
}

.vision-item h5 {
    color: var(--mission-text);
    font-weight: 700;
    margin-bottom: 10px;
}

.vision-item p {
    color: var(--mission-text-muted);
    margin-bottom: 0;
    line-height: 1.7;
}

/* =============================================
   VALUES SECTION
   ============================================= */
.value-column {
    transition: all 0.3s ease;
    border: 1px solid var(--mission-border);
    border-radius: 20px !important;
}

.value-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.12);
    border-color: rgba(129, 134, 213, 0.3);
}

.value-column i {
    color: var(--mission-primary) !important;
    transition: all 0.3s ease;
}

.value-column:hover i {
    color: var(--mission-gradient-start) !important;
    transform: scale(1.1);
}

.value-column h5 {
    color: var(--mission-text);
    font-weight: 700;
}

.value-column p {
    color: var(--mission-text-muted);
}

/* =============================================
   STRATEGIC GOALS SECTION
   ============================================= */
.d-flex .text-primary i {
    color: var(--mission-primary) !important;
}

.d-flex > .me-3 {
    background: rgba(129, 134, 213, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.d-flex > .me-3 i {
    font-size: 1.3rem !important;
}

/* =============================================
   SECTION LABELS
   ============================================= */
.text-primary.text-uppercase {
    color: var(--mission-accent) !important;
}


/* =============================================
   IMAGES
   ============================================= */
.custom-shadow {
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
    border-radius: 20px;
    border: 1px solid var(--mission-border);
    transition: all 0.3s ease;
}

.custom-shadow:hover {
    box-shadow: 0 30px 70px rgba(99, 102, 241, 0.15);
    transform: translateY(-5px);
}

/* =============================================
   CTA SECTION (Second Parallax)
   ============================================= */
.parallax-section2 h2 {
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.parallax-section2 p {
    color: rgba(255, 255, 255, 0.9);
}

.mission-top-button{
    margin-right: 0.5em;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .parallax-section1,
    .parallax-section2 {
        padding: 100px 0;
    }

    .mission-point {
        padding-left: 40px;
    }

    .vision-item {
        padding-left: 28px;
    }
}

@media (max-width: 768px) {

    .parallax-section1 {
        padding: 80px 0;
    }

    .parallax-section2 {
        padding: 70px 0;
    }

    .quote-container {
        padding: 28px 24px;
    }

    .quote-container::before {
        font-size: 60px;
        top: -10px;
        left: 10px;
    }

    .quote-container p {
        font-size: 1.05rem;
    }

    .mission-point {
        padding-left: 35px;
        margin-bottom: 24px;
    }

    .mission-point::before {
        width: 20px;
        height: 20px;
    }

    .mission-point::after {
        left: 6px;
        top: 12px;
        width: 8px;
        height: 8px;
    }

    .vision-item {
        padding-left: 24px;
        padding-bottom: 24px;
    }

    .vision-item::before {
        width: 16px;
        height: 16px;
        left: -9px;
    }

    .value-column {
        border-radius: 16px !important;
    }

    .d-flex > .me-3 {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .missionContainer { overflow-x: clip; }
}

@media (max-width: 576px) {
    .parallax-section1 {
        padding: 60px 0;
    }

    .parallax-section1 h1 {
        font-size: 2rem;
    }
}
