/*------------------ 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); /* Gradient from dark blue to lighter blue */
    color: white; /* Ensures text is visible on dark background */
    padding: 3rem 0;
    text-align: center;
}

.team-members {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column; /* Ensures vertical stacking */
    gap: 3rem;
    align-items: center; /* Centers content */
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers each member's content */
    text-align: center;
    width: 100%; /* Ensures it takes full width */
}

.team-member .member-img {
    border-radius: 6px;
    width: 200px; /* Adjust image size */
    height: auto; /* Maintains aspect ratio */
}

.team-member .member-content {
    padding: 1rem;
    max-width: 600px; /* Restricts text width for better readability */
}

.team-member .member-designation {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

.team-member .member-name {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0.6rem 0;
}
/*------------------------------- 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 ----------------------------*/
}
