.our-service-banner {
    background-image: url("../images/home/bg3.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Optional gradient overlay */
.our-service-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #000000A6;
}

/* Make content appear above background */
.our-service-banner .banner-content {
    position: relative;
    z-index: 2;
}

.our-service-banner .banner-title {
    margin: unset;
    max-width: 130px;
}

.our-service-banner .banner-heading,
.our-service-banner .banner-subheading,
.our-service-banner .banner-buttons {
    max-width: unset;
    margin: unset;
}

.banner-heading .h1-text {
    text-transform: capitalize;
}

/* who we are */
.who-card {
    border: 1px solid #E2E8F0;
    border-top-left-radius: 77px;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.who-card-icon {
    max-width: 32px;
    max-height: 32px;
    overflow: hidden;
}

.who-card-text {
    padding: 0 16px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.who-icon-wrapper {
    padding: 6px 18px 18px 6px;
    background: #fff;
    max-width: 76px;
}

/* our-mission */
.our-mission-section {
    background: url(../images/about-us/our-mission-bg.webp);
    background-size: cover;
    background-position: center;
}

.mission-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 36px 0;
}

.mission-right {
    /* height: 100%; */
    max-width: 550px;
    max-height: 486px;
    border-radius: 16px;
    overflow: hidden;
}

.mission-card {
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0px 4px 16px 0px #00000005;
    display: flex;
    gap: 20px;
    align-items: center;
}

.mission-card-img {
    max-width: 44px;
    max-height: 44px;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* our impact  */
.our-impact-section {
    overflow: hidden;
    position: relative;
}

.impact-bg-icon {
    position: absolute;
    bottom: 0;
    left: -90px;
    width: 30%;
    height: 56%;
}

.impact-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.impact-left .h2-text::before {
    content: url('../images/about-us/impact-line.svg');
    position: absolute;
    left: 0;
    bottom: -10px;
}

.impact-left-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

.impact-right {
    padding: 36px;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
}

.impact-subsection {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.impact-card {
    display: flex;
    gap: 12px;
    align-items: center;
}

.impact-img {
    min-width: 20px;
    max-height: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* our-executive section */
.our-executive-section {
    overflow: hidden;
    position: relative;
    background: linear-gradient(261.01deg, #004084 29.33%, rgba(0, 52, 149, 0.76) 100%);
}

.executive-fade {
    position: absolute;
    right: 20px;
    bottom: 30px;
}

.executive-right .h2-text::before {
    content: url('../images/about-us/executive-line.svg');
    position: absolute;
    left: 0;
    bottom: -20px;
}

.executive-left {
    border-radius: 12px;
    padding: 8px;
    border: 1px dashed var(--color-grey-7);
}

/* expanding cards */
.expanding-card-container {
    display: flex;
}

.panel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 50vh;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    flex: 0.5;
    margin: 8px;
    position: relative;
    -webkit-transition: all 400ms ease-in;
}

.panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(179.33deg, rgba(255, 255, 255, 0) 0.56%, rgba(0, 0, 0, 0.64) 74.01%);
    border-radius: 12px;
}

.expandable-card-text {
    position: absolute;
    bottom: 30px;
    left: 18px;
    margin: 0;
}

.panel h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    font-family: var(--primary-font);
    opacity: 0;
    margin-bottom: 0;
}

.panel p {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0;
    font-family: var(--secondary-font);
    opacity: 0;
    margin-bottom: 0;
}

/* .panel.active {
    flex: 2;
}

.panel.active h3 {
    opacity: 1;
    transition: opacity 0.3s ease-in 0.4s;
}
.panel.active p {
    opacity: 1;
    transition: opacity 0.3s ease-in 0.4s;
} */

.panel:hover {
    flex: 2;
}

.panel:hover h3,
.panel:hover p {
    opacity: 1;
    transition: opacity 0.3s ease-in 0.4s;
}


.break-line {
    display: none;
}







@media (max-width:1199px) {
    .mission-left {
        padding: 0;
    }
}



@media (max-width:991px) {
    .our-service-banner .banner-title {
        margin: 0 auto;
    }

    .our-service-banner .banner-content {
        gap: 16px;
    }

    .our-service-banner .banner-heading,
    .our-service-banner .banner-subheading,
    .our-service-banner .banner-buttons {
        text-align: center;
        margin: 0 auto;
    }

    .our-service-banner {
        background-image: url(../images/home/bg3-mob.jpg);
    }

    .break-line {
        display: block;
    }

    .banner-heading .h1-text {
        text-transform: unset;
    }

    .who-card-text .h4-text {
        font-size: 20px;
    }

    .who-card-text .lh-24 {
        line-height: 19.6px;
    }

    .mission-left {
        padding: 0;
    }

    .mission-title .h5-text {
        font-size: 14px;
        text-align: center;
    }

    .mission-left {
        gap: 16px;
    }

    .mission-card {
        padding: 12px;
    }

    .impact-left {
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .impact-left .h2-text::before {
        bottom: -8px;
        left: unset;
        right: -70px;
    }

    .impact-left .h5-text {
        font-size: 14px;
    }

    .impact-right {
        padding: 16px;
    }

    .impact-subsection .h3-text {
        font-size: 16px;
    }

    .impact-subsection {
        gap: 8px;
    }

    .panel {
        min-width: 260px;
        min-height: 340px;
    }

    .panel h3 {
        font-size: 16px;
        opacity: 1;
    }

    .panel p {
        font-size: 12px;
        opacity: 1;
    }

    .expandable-card-text {
        left: 12px;
        bottom: 20px;
    }

    .executive-right .impact-left {
        text-align: start;
        align-items: start;
    }

    .executive-right .h2-text::before {
        content: url(../images/about-us/executive-line.svg);
        right: unset;
        left: 0;
        bottom: 0px;
        max-width: 130px;
        overflow: hidden;
        max-height: 20px;
    }

    .mission-content,
    .our-impact-section .content-conainer,
    .executive-content,
    .who-content {
        max-width: 575px;
        margin: 0 auto;
    }


    .expanding-card-container {
        overflow-x: scroll;
    }

    .expanding-card-container::-webkit-scrollbar {
        display: none;
    }

    .executive-left {
        padding: 0;
    }

    .executive-fade {
        display: none;
    }

    .impact-bg-icon {
        position: absolute;
        bottom: 110px;
        left: 11px;
        width: 60%;
        height: 50%;
    }
}