/* =========================================================
   SECTION HEADING
========================================================= */
.section-heading {
    margin-bottom: 38px;
}

.section-heading .section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--bs-navy);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-heading .section-label::after {
    content: "";
    width: 55px;
    height: 1px;
    background: #dce3ed;
}

.section-heading h2 {
    font-weight: 700;
    margin: 0;
	color: #0b2850;
}

/* =========================================================
   TEAM SECTION
========================================================= */
.team-section {
    padding: 40px 0 70px;
    background: var(--bs-white);
}

.team-member {
    height: 100%;
    background: var(--bs-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        0 8px 25px rgba(16, 44, 82, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-7px);
    box-shadow:
        0 18px 40px rgba(16, 44, 82, 0.14);
}

.team-member-image {
    position: relative;
    overflow: hidden;
    background: #eef1f5;
}

.team-member-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    image-rendering: auto;
    transition: transform 0.5s ease;
}

.team-member:hover .team-member-image img {
    transform: scale(1.02);
}

/* Social icons */

.team-social {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #dce3ed;
    color: var(--bs-navy);
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.10);
    transition: all 0.25s ease;
}

.team-social a:hover {
    background: var(--bs-navy);
    color: #dce3ed;
    transform: translateY(-2px);
}


/* Team information */

.team-member-info {
    position: relative;
    padding: 17px 18px 19px;
    min-height: 82px;
}

.team-member-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 35px 4px 0;
}

.team-member-info span {
    display: block;
    color: #6c7481;
    font-size: 13px;
}

/* Team Bio Link */

.team-member-bio {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.team-member-bio .bio-link {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--bs-navy);
    text-decoration: none;
    transition: all 0.25s ease;
}

.team-member-bio .bio-link::after {
    content: "→";
    margin-left: 6px;
    font-size: 14px;
    transition: transform 0.25s ease;
}

.team-member-bio .bio-link:hover {
    color: var(--bs-gold);
}

.team-member-bio .bio-link:hover::after {
    transform: translateX(3px);
}

/* =========================================================
   JOURNEY SECTION
========================================================= */

.journey-section {
    position: relative;
    overflow: hidden;
    padding: 65px 0;
    background:#dce3ed;
}

.journey-section::after {
    content: "";
    position: absolute;
    right: -100px;
    top: 0;
    width: 55%;
    height: 100%;
    background:
        linear-gradient(
            135deg,
            transparent 0%,
            rgba(255,255,255,0.35) 50%,
            transparent 100%
        );
    transform: skewX(-20deg);
    pointer-events: none;
}

.journey-image {
    height: 310px;
    border-radius: 16px;
    background:
        url('../img/team/About-us.svg')
        center center / cover no-repeat;
    box-shadow:
        0 12px 30px rgba(16, 44, 82, 0.12);
	background-color: var(--bs-navy);
}

.journey-content {
    position: relative;
    z-index: 2;
    padding-left: 25px;
}

.journey-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--bs-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.journey-label::after {
    content: "";
    width: 55px;
    height: 1px;
    background: var(--bs-dark-grey);
}

.journey-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--bs-navy);
}

.journey-content p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 12px;
}

/* =========================================================
   VALUES SECTION
========================================================= */
.values-section {
    padding: 0;
    background: var(--bs-white);
}

.values-wrapper {
    display: flex;
    min-height: 550px;
}


/* Left values introduction */

.values-intro {
    position: relative;
    width: 36%;
    min-height: 550px;
    display: flex;
    align-items: center;
    padding: 65px 50px;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(5, 32, 65, 0.96),
            rgba(5, 32, 65, 0.78)
        );
}

.values-intro-content {
    position: relative;
    z-index: 2;
    max-width: 350px;
}

.values-intro .section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--bs-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.values-intro .section-label::after {
    content: "";
    width: 55px;
    height: 1px;
    background: rgba(255,255,255,0.5);
}

.values-intro h2 {
    color: var(--bs-white);
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 18px;
}

.values-intro p {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    line-height: 1.75;
}


/* Values list */

.values-list {
    width: 64%;
    padding: 55px 50px;
    background: var(--bs-white);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 35px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    padding: 25px 0;
    border-bottom: 1px solid #e7ebf0;
}

.value-item:nth-child(-n+3) {
    padding-top: 5px;
}

.value-item:nth-child(n+4) {
    border-bottom: 0;
}

.value-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    border-radius: 50%;
    background: var(--bs-dark-navy);
    color: var(--bs-white);
    font-size: 24px;
    box-shadow:
        0 7px 18px rgba(13, 71, 125, 0.18);
}

.value-icon i{
    color: var(--bs-gold);
}

.value-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 1px 0 6px;
}

.value-item p {
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
    max-width: 500px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .journey-image {
        margin-bottom: 30px;
    }

    .journey-content {
        padding-left: 0;
    }

    .values-wrapper {
        display: block;
    }

    .values-intro,
    .values-list {
        width: 100%;
    }

    .values-intro {
        min-height: 350px;
    }

    .values-list {
        padding: 45px 30px;

        grid-template-columns: repeat(2, 1fr);
        gap: 0 30px;
    }

    .value-item:nth-child(n+4) {
        border-bottom: 1px solid #e7ebf0;
    }

    .value-item:nth-child(-n+2) {
        padding-top: 5px;
    }

    .value-item:nth-child(n+5) {
        border-bottom: 0;
    }
}

@media (max-width: 767.98px) {

    .team-section {
        padding: 55px 0;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .journey-section {
        padding: 50px 0;
    }

    .journey-image {
        height: 250px;
    }

    .values-intro {
        padding: 50px 30px;
    }

    .values-intro h2 {
        font-size: 28px;
    }

    .values-list {
        padding: 35px 25px;
    }

    .value-item {
        padding: 18px 0;
    }

    .value-icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 14px;
    }
}


@media (max-width: 575.98px) {

    .journey-image {
        height: 220px;
    }

    .values-list {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .value-item,
    .value-item:nth-child(-n+3),
    .value-item:nth-child(n+4) {
        padding: 18px 0;
        border-bottom: 1px solid #e7ebf0;
    }

    .value-item:last-child {
        border-bottom: 0;
    }

    .value-item {
        display: flex;
    }

    .value-icon {
        margin-bottom: 0;
    }
}