﻿/* =============================================
   NAVIQUE EXPRESS — ABOUT PAGE
   Material Design, Responsive
   ============================================= */

/* ── HERO ── */
.about-hero {
    position: relative;
    background: url('../images/cf46a1eaff.jpg.jpeg') center center / cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 60, 0.72);
}

.about-content {
    position: relative;
    max-width: 900px;
    z-index: 2;
}

.about-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.95;
    margin-bottom: 8px;
}

.about-tagline {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    opacity: 0.85;
    margin-bottom: 16px;
}

.about-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.about-title span {
    color: var(--md-secondary);
}

.about-divider {
    width: min(380px, 60%);
    height: 4px;
    background: var(--md-secondary);
    margin: 14px auto 24px;
    border-radius: 2px;
}

.about-description {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 60vh;
    }

    .about-content {
        padding: 20px;
    }
}

/* ── VALUE CARDS ── */
.about-values-section {
    padding: 64px 0;
    background: var(--md-surface);
}

.value-card {
    border-radius: var(--md-shape-xl);
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    transition: transform var(--md-duration) var(--md-motion);
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-card h5 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Dark Blue Cards */
.value-card.dark {
    background: linear-gradient(180deg, #0b0f3f, #05053a);
    color: #ffffff;
}

/* Orange Cards */
.value-card.orange {
    background: var(--md-secondary);
    color: #ffffff;
}

/* ── DIRECTORS ── */
.directors-heading {
    text-align: center;
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--md-primary);
    margin-bottom: 24px;
}

.directors-card {
    max-width: 850px;
    height: 230px;
    margin: 0 auto;
    background: linear-gradient(180deg, #0b0b52, #05053a);
    border-radius: var(--md-shape-xl);
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .value-card {
        padding: 22px 18px;
    }
}

@media (max-width: 576px) {
    .about-values-section {
        padding: 40px 0;
    }

    .directors-card {
        height: 180px;
    }
}