/* ============================================================
   About Page Premium Styles
   ============================================================ */

:root {
    --blue: #006DAB;
    --orange: #E76028;
    --green: #00964C;
    --text-dark: #00284a;
    --text-muted: #666;
    --bg-light: #f9fbfd;
}

/* ── Mission Section ── */
.mission-section {
 background: #fff;
}

/* ── Hero Banner (Matched with Our Experts Page) ── */
.page-banner {
    height: 300px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 0;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 109, 171, 0.9) 0%, rgba(231, 96, 40, 0.8) 100%);
    z-index: 1;
}

.page-banner h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -1px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #fff !important;
}

.page-banner-entry {
    position: relative;
    z-index: 2;
    width: 100%;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mission-card {
    padding: 40px 30px;
    background: #fff;
    border: 1px solid rgba(0, 109, 171, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* Hover effect removed as per request */

.mission-icon {
    font-size: 40px;
    margin-bottom: 25px;
    display: inline-block;
}

.mission-card.blue .mission-icon { color: var(--blue); }
.mission-card.orange .mission-icon { color: var(--orange); }
.mission-card.green .mission-icon { color: var(--green); }

.mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.mission-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ── Journey Timeline ── */
.journey-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 15px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue), var(--orange), var(--green));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    width: 100%;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-image {
    width: 45%;
    overflow: hidden;
}

.timeline-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Hover scale effect removed as per request */

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 4px solid var(--blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.timeline-year {
    font-size: 48px;
    font-weight: 900;
    color: var(--blue);
    opacity: 0.15;
    position: absolute;
    top: -40px;
    left: 0;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-year {
    right: 0;
    left: auto;
}

.timeline-item:nth-child(even) .timeline-dot {
    border-color: var(--orange);
}

.timeline-item:nth-child(3n) .timeline-dot {
    border-color: var(--green);
}

.timeline-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.anniversary-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 50px;
    }
    
    .timeline-content, .timeline-image {
        width: 100%;
    }
    
    .timeline-image {
        margin-top: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-year {
        top: -30px;
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: auto !important;
        min-height: 250px;
        padding: 50px 0;
    }
    
    .page-banner h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
        margin-bottom: 15px !important;
    }
    
    .page-banner p {
        font-size: 1rem !important;
        line-height: 1.5;
    }
}
