

.quick {
    text-align: left;
    max-width: 84vw;
    margin-left: 8vw;
    margin-right: 8vw;
    margin-bottom: 0;
    padding-bottom: 0;
}

#our-journey {
    text-align: left;
    margin-left: 8vw;
    margin-right: 8vw;
    margin-top: 1vh;
    margin-bottom: 3vh;
}

.journey-video {
    margin-left: 8vw;
    margin-right: 8vw;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.journey-video-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #003366;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.journey-video-link img {
    width: 3rem;
    height: 3rem;
    transition: transform 0.2s ease;
}

.journey-video-link:hover img {
    transform: scale(1.1);
}

.timeline-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    width: 100%;
    max-width: 84vw;
    margin: 2.5rem auto;
    padding: 0;
}

.timeline-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.875rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.timeline-date {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: #0052cc;
    margin-bottom: 0.5rem;
}

.timeline-milestone {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #76797e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.journey-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.journey-list li {
    font-size: 0.9rem;
    color: #555;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.journey-list li::before {
    content: '✔';
    color: #f08800;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.125rem;
}

.intracity {
    border: none;
    box-shadow: none;
    padding: calc(4vh + 1px) calc(2.5vw + 1px);
}

.leadership-section {
    text-align: center;
    padding: 4rem 1rem 5rem;
    background-color: #fff;
}

.leadership-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #002c5f;
    margin-bottom: 3rem;
}
.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    max-width: 950px;
    margin: 0 auto;
    gap: 3.5rem 4rem;
}

.team-member {
    width: 220px;
    text-align: center;
}

.team-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #002c5f;
    margin-bottom: 0.3rem;
}

.team-title {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.3rem;
}

.team-desc {
    font-size: 0.85rem;
    color: #76797E;
    margin-bottom: 0.8rem;
}

.team-linkedin img {
    width: 22px;
    height: 22px;
}

@media (max-width: 980px) {
    .timeline-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 90vw;
    }

    #our-journey {
        margin-left: 5vw;
        margin-right: 5vw;
    }

    .journey-video {
        margin-left: 5vw;
        margin-right: 5vw;
    }

    .quick {
        margin-left: 5vw;
        margin-right: 5vw;
        max-width: 90vw;
    }
}


@media (max-width: 768px) {
    #our-journey {
        text-align: left;
        margin-left: 5vw;
        margin-right: 5vw;
    }

    .journey-video {
        padding: 0 5vw;
        margin: -2vh auto 0 auto;
        margin-left: 5vw;
        margin-right: 5vw;
    }

    .timeline-container {
        grid-template-columns: 1fr;
        padding: 0 5vw;
        max-width: 100%;
    }

    .team-container {
        grid-template-columns: 1fr;
        padding: 0 5vw;
    }

    .team-desc {
        min-height: auto;
    }

    .intracity {
        padding: 3vh 5vw;
    }

    .quick {
        margin-left: 5vw;
        margin-right: 5vw;
        max-width: 90vw;
    }
}