/*------------------ Breadcrumb styling --------------------*/
.breadcrumbs {
    background: linear-gradient(rgba(150, 60, 221, 0.1), rgba(17, 17, 69, 0.8)), url('../img/about-bread.png');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-container {
    height: 34vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1.5rem;
}

.breadcrumb-container .hero-heading {
    font-size: 3rem;
}
/*------------------ Breadcrumb styling --------------------*/


/*------------------ Future protection styling ----------------*/
.future-protection-imgs {
    margin: 1.5rem 0;
}

.future-protection-img {
    border-radius: 6px;
}
/*------------------ Future protection styling ----------------*/


/*----------------------- Company value --------------------------*/
.values .container {
    text-align: center;
}

.value {
    margin: 2.5rem 0;
}

.value ion-icon {
    color: var(--yellow-color);
    font-size: 2.6rem;
}

.value .value-heading {
    font-size: 1.4rem;
    font-weight: 600;
}
/*----------------------- Company value --------------------------*/


/*----------------------------- Key Numbers ------------------------------*/
.key-numbers {
    background: linear-gradient(rgba(10, 17, 79, 0.9), rgba(10, 17, 79, 0.9)), url("../img/hero-bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.key-num-row {
    margin: 2rem 0;
}

.key-no-img {
    border-radius: 6px;
}

.key-number {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #ffffff;
    border-radius: 6px;
    text-align: center;
}

.key-number .heading {
    font-size: 2.2rem;
    line-height: 1;
}

.key-number .para-line {
    font-weight: 600;
    text-transform: uppercase;
}
/*----------------------------- Key Numbers ------------------------------*/


/*------------------------------- Highlights --------------------------------*/
.highlight {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.highlight ion-icon {
    color: var(--yellow-color);
    font-size: 3.2rem;
}

.highlight-heading {
    font-size: 1.4rem;
    font-weight: 600;
}
/*------------------------------- Highlights --------------------------------*/


/*------------------------------- Our Team -------------------------------------*/
.our-team {
    background: linear-gradient(to bottom right, #251963, #2a5298);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    justify-items: center;
    align-items: start;
    margin: 2rem 0;
    padding: 0 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 500px; /* Forces consistent card height */
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.team-member .member-img {
    border-radius: 6px;
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.team-member .member-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 350px;
}

.team-member .member-designation {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #c8d6f7;
}

.team-member .member-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.6rem 0;
    color: #fff;
}

.team-member .para-line {
    font-size: 0.95rem;
    color: #e0e3f0;
    line-height: 1.6;
    margin-top: 0.8rem;
}
/*------------------------------- Our Team -------------------------------------*/



/*--------------------------------- About CTA -------------------------------------*/
.about-cta {
    background: linear-gradient(rgba(10, 17, 79, 0.9), rgba(10, 17, 79, 0.9)), url("../img/hero-bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.about-cta .container .row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
/*--------------------------------- About CTA -------------------------------------*/





/*-----------------------------------------------------------------------------------------*/
/*-------------------------------- Desktop screen styling --------------------------------*/
/*-----------------------------------------------------------------------------------------*/
@media screen and (min-width: 789px) {
    /*----------- Breadcrumb styling ----------*/
    .breadcrumb-container {
        height: 50vh;
    }

    /*-------------- Future styling --------------*/
    .future .container {
        text-align: center;
    }

    .future .para-line {
        max-width: 1050px;
        margin: 0 auto;
    }

    .future-protection-imgs {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    /*------------------------ Company values -----------------------*/
    .company-values {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3rem;
    }

    /*------------------------- Key Numbers ---------------------------*/
    .key-numbers .container .para-line {
        max-width: 800px;
    }

    .key-num-row {
        justify-content: center;
        align-items: flex-start;
    }

    .key-num-2-col {
        margin-top: 4rem;
    }

    /*------------------------------- Highlights -------------------------------*/
    .company-highlights .container {
        display: grid;
        grid-template-rows: repeat(2, 1fr);
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    /*------------------------------- Highlights -------------------------------*/


    /*------------------------------------- Our team ----------------------------*/
    .our-team .container {
        text-align: center;
    }

    .team-members {
        flex-direction: row;
    }

    .team-member .member-content {
        text-align: left;
    }
    /*------------------------------------- Our team ----------------------------*/


    /*------------------------------------ About CTA ----------------------------*/
    .about-cta .container .row {
        flex-direction: row;
    }

    .cta-content-col {
        width: 160%;
        text-align: left;
    }

    .cta-btn-col {
        width: 40% !important;
    }
    /*------------------------------------ About CTA ----------------------------*/
}
