/* ===============================
   ABOUT US PAGE STYLES
   =============================== */

.about-hero-simple {
    background: linear-gradient(
        rgba(0, 48, 96, 0.85),
        rgba(0, 48, 96, 0.85)
    ),
    url('../images/slide1.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px 0;
    color: white;
}

.about-hero-simple .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

.about-hero-simple a {
    color: #ffcc00;
    text-decoration: none;
}

/* Justified About content */
.about-hero-simple + section p {
    text-align: justify;
    line-height: 1.8;
}

/* Journey list */
.journey-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.journey-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #003060;
    font-size: 20px;
}

/* Vision & Mission cards */
.mission-card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}
.vm-icon {
    color: #003060;
    background: rgba(0,48,96,0.08);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.inner-highlight {
    border-left: 3px solid #003060;
    padding-left: 15px;
}
/* ===============================
   VISION & MISSION – LIGHT GRADIENT
   =============================== */

/* Vision card – soft saffron tint */
.mission-card.vision-card {
    border-left: 4px solid rgba(255, 153, 51, 0.6);
    background: linear-gradient(
        135deg,
        rgba(255, 153, 51, 0.08) 0%,
        rgba(255, 255, 255, 0.95) 55%,
        #ffffff 100%
    );
}

/* Mission card – soft green tint */
.mission-card.mission-card-green {
    border-left: 4px solid rgba(19, 136, 8, 0.6);
    background: linear-gradient(
        135deg,
        rgba(19, 136, 8, 0.08) 0%,
        rgba(255, 255, 255, 0.95) 55%,
        #ffffff 100%
    );
}

/* Icon glow refinement */
.mission-card .vm-icon {
    box-shadow: 0 0 0 6px rgba(0,0,0,0.02);
}
