body {
    font-family: 'Anek Latin', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.section-heading {
    font-size: 48px;
    font-weight: 600;
    font-family: 'Lexend Deca', sans-serif;
}

.section-para {
    font-size: 18px;
    font-family: 'Anek Latin', sans-serif;
}

.section-padding {
    padding: 5rem 0;
}
.member-card.no-image-card{
    background: linear-gradient(to bottom, #FFFFFF 0%, #F0F0F0 100%);
}
.member-card.no-image-card:hover .no-member-info-default{
    opacity: 0;
}
.no-member-info-default h4{
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 2px;
    /*color: #fff;*/
    font-family: 'Lexend Deca', sans-serif;
}
.no-member-info-default{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    top: 0;
    padding: 0 20px;
    color: #000;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}   

@media screen and (min-width: 769px) and (max-width: 1280px) {
    .section-heading {
        font-size: 32px;
    }

    .about-banner-text .section-heading {
        width: 100%;
        max-width: 80%;
    }

    .about-banner-text {
        left: 6%;
    }

    .lead-text {
        max-width: 50% !important;
    }

    .csr-section .section-subtitle {
        max-width: 55%;
    }

    .about-us-section .section-title {
        line-height: 46px !important;
        max-width: 80%;
    }

    .people-strength-section .accordion-button,
    .directors-section .member-info-default h4 {
        font-size: 28px !important;
    }

    .directors-section.section-padding .no-member-info-default h4{
        font-size: 28px !important;
    }

    .directors-section .member-overlay {
        padding: 50px 30px 30px 50px !important;
    }

    .directors-section .overlay-title {
        font-size: 24px !important;
        margin-bottom: 5px !important;
    }

    .directors-section .overlay-role {
        margin-bottom: 0px !important;
    }

    .cpp-section .section-title {
        font-size: 20px !important;
    }

    .cpp-section .cert-card .compliance-percent,
    .text-box h1 {
        font-size: 40px !important;
    }

    #desc {
        font-size: 20px;
        font-weight: 400
    }


}

@media (max-width: 768px) {
    .section-heading {
        font-size: 28px;
    }

    .section-padding {
        padding: 3rem 0;
    }
}


/*banner*/
.about-banner-section {
    position: relative;
}

.about-banner-wrapper img {
    width: 100%;
    height: auto;
}

.about-banner-text {
    position: absolute;
    top: 30%;
    left: auto;
    width: 30%;
}

.about-banner-text h1 {
    color: #1C204F;
}

.about-banner-text p {
    color: #000;
    line-height: 26px;
}

.mobile-banner {
    display: none;
    width: 100%;
}

/*banner css end*/


/*about us css start*/
.about-us-section .section-title {
    font-weight: 600;
    color: #1C204F;
    line-height: 56px;
    padding-bottom: 20px;
}

.about-us-section .section-text {
    color: #000;
    line-height: 26px;
    font-weight: 300;
    font-family: 'Anek Latin', sans-serif;
}

.about-us-section .btn-primary-custom {
    display: inline-block;
    padding: 10px 20px;
    background-color: #06439C;
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 400;
    transition: background-color 0.3s;
    font-family: 'Anek Latin', sans-serif;
}

.about-us-section .btn-primary-custom span{
    display: inline-block;
    padding-left: 5px;
}

.about-us-section .btn-primary-custom:hover {
    background-color: #0276FD;
}

.about-us-section .main-stat-grid {
    display: flex;
    justify-content: end;
    gap: 15px;
}


.about-us-section .stat-card {
    min-height: 220px;
    /* Slightly taller to better match the visual in the image */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    margin-bottom: 15px;
}

.about-us-section .stat-card img {
    width: 100%;
    height: auto;
}

.about-us-section .stat-grid-2 {
    margin-top: 60px;
}

/*.about-us-section .stat-1{
    background: url('../images/home/about-img-3.png');
}

.about-us-section .stat-2{
    background: url('../images/home/about-img-2.png');
}


.about-us-section .stat-3{
    background: url('../images/home/about-img-4.png');
}


.about-us-section .stat-4{
    background: url('../images/home/about-img-1.png');
}
*/

.about-us-section .stat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-us-section .stat-number {
    font-weight: 600;
    line-height: 56px;
}

.about-us-section .stat-label {
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 5px;
    line-height: 26px;
    text-align: center;
}


.about-us-section .hidden {
    opacity: 1;
    transform: translateY(20px);
}

.about-us-section .visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .about-us-section .stat-grid {
        grid-template-columns: 1fr;
    }

    .about-us-section .stat-card {
        border-radius: 20px !important;
        min-height: 180px;
    }

    .about-us-section .main-stat-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .about-us-section .stat-grid-2 {
        margin-top: 0;
    }
}

/*about us css end*/

/*mvc section*/
.mvc-section {}

.overlay-box-1 {
    background: url("../images/about/mvc-bg-1.png") no-repeat;
    background-size: cover;
    margin-right: 5px;
}

.overlay-box-2 {
    background: url("../images/about/mvc-bg-2.png") no-repeat;
    background-size: cover;
    margin-left: 5px;
    border-top-right-radius: 20px;
}

.overlay-box {
    padding: 40px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.core-values-container {
    background: url("../images/about/mvc-bg-3.png") no-repeat;
    background-size: cover;
    padding: 40px 20px;
    margin-top: 10px;
    border-bottom-right-radius: 20px;
}

.value-card {
    background-color: #0276FD;
    /* Brighter blue for the value cards */
    border: 1px solid #89B0F180;
    border-radius: 8px;
    padding: 25px 15px;
    height: 100%;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background-color: #0069d9;
}

.value-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-size: 18px;
    color: #fff;
    font-family: 'Anek Latin', sans-serif;
}

.value-text {
    font-size: 16px;
    color: #E6E6E6;
    font-weight: 400;
    line-height: 24px;
    font-family: 'Anek Latin', sans-serif;
}

.core-values-container h2,
.overlay-box h2 {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    font-family: 'Lexend Deca', sans-serif;
    margin-bottom: 20px !important;
}

.lead-text {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    font-family: 'Anek Latin', sans-serif;
    max-width: 43%;
}

/*mvc section end*/
*/

/*peopple stregth accordian*/
.people-strength-section {
    background: #E2EBFF;
}

.people-strength-section.section-padding {
    background: #E2EBFF;
}

.people-strength-section .image-stack-wrapper {
    position: relative;
    width: 90%;
    margin: 0 auto;
    height: 550px;
}

.people-strength-section .slide-img {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 40px 40px 0px 40px;
    transition: all 0.6s ease-in-out;
    /*box-shadow: -10px 10px 30px rgba(0,0,0,0.2);*/
    object-fit: cover;
    display: block;
}

.people-strength-section #img-0 {
    transform: translateX(-20px) translateY(20px);
    z-index: 3;
}

.people-strength-section #img-1 {
    transform: translateX(-30px) translateY(30px);
    z-index: 2;
}

.people-strength-section #img-2 {
    transform: translateX(-40px) translateY(40px);
    z-index: 1;
}

.people-strength-section .slide-img.active {
    z-index: 10 !important;
    transform: translateX(-10px) translateY(10px) !important;
    /*box-shadow: 20px 20px 50px rgba(0,0,0,0.2);*/
}

/*        .people-strength-section .purple-shape {
            position: absolute;
            bottom: -20px;
            left: -20px;
            width: 140px;
            height: 90px;
            background: #f0ebf8;
            border-radius: 40px;
            z-index: 0;
        }
*/
.people-strength-section .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 0rem;
    padding: 1rem 0rem;
    border-top: 1px solid #06439C;
    border-radius: 0;
}

.people-strength-section .accordion-item:last-child {
    border-bottom: 1px solid #06439C !important;
}

.people-strength-section .accordion-button {
    font-size: 32px;
    font-weight: 500;
    color: #000;
    padding: 0;
    background: none !important;
    box-shadow: none !important;
    font-family: 'Lexend Deca', sans-serif;
}

.people-strength-section .accordion-button:not(.collapsed) {
    color: #0276FD;
}

.people-strength-section .accordion-button::after {
    display: none;
}

.people-strength-section .accordion-body {
    padding: 10px 0;
    font-size: 18px;
    color: #000;
    font-weight: 300;
    line-height: 26px;
    font-family: 'Anek Latin', sans-serif;
}

.people-strength-section .check-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.people-strength-section .check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.people-strength-section .check-list li::before {
    content: "•";
    color: #0046af;
    position: absolute;
    left: 0;
    font-weight: bold;
}


/*directors css*/
.directors-section .section-title {
    color: #1C204F;
    margin-bottom: 10px;
}

.directors-section .section-subtitle {
    color: #626262;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.directors-section .member-card {
    position: relative;
    overflow: hidden;
    border: none;
    text-align: left;
    aspect-ratio: 1 / 1.1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
}

.directors-section .member-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.directors-section .member-info-default {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transition: opacity 0.3s ease;
}

.directors-section .member-info-default h4 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 2px;
    color: #fff;
    font-family: 'Lexend Deca', sans-serif;
}

.directors-section .member-info-default p {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 400;
    color: #fff;
    opacity: 0.9;
    font-family: 'Anek Latin', sans-serif;
}

.directors-section .member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 71, 161, 0.92);
    /* Deep Blue */
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    /*transition: all 0.4s ease-in-out;*/
    transform: translateY(10px);
}

.directors-section .member-card:hover .member-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.directors-section .member-card:hover .member-info-default {
    opacity: 0;
}

.directors-section .overlay-title {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
    font-family: 'Lexend Deca', sans-serif;
}

.directors-section .overlay-role {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #fff;
    font-family: 'Anek Latin', sans-serif;
}

.directors-section .divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    margin-top: 10px;
}

.directors-section .overlay-bio {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: #fff;
    font-family: 'Anek Latin', sans-serif;
}


/*ccp section css start*/
.cpp-section {
    background: #E2EBFF;
}

.cpp-section .tabs-container {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
}

.cpp-section .nav-pills {
    gap: 15px;
}

.cpp-section .nav-pills .nav-link {
    border-radius: 100px;
    border: 1px solid #626262;
    color: #06439C !important;
    padding: 4px 45px !important;
    font-weight: 500;
    font-size: 24px;
    background: transparent;
    line-height: 32px;
    transition: all 0.3s ease;
    font-family: 'Lexend Deca', sans-serif;
    text-transform: capitalize;
}

.cpp-section .nav-pills .nav-link.active {
    background-color: #0276FD !important;
    color: #fff !important;
    border-color: #0276FD;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Content Section */
.cpp-section .section-title {
    font-weight: 700;
    font-size: 24px;
    color: #000;
    font-family: 'Lexend Deca', sans-serif;
}

.cpp-section .section-desc {
    color: #626262;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300 font-family: 'Anek Latin', sans-serif;
}

/* Icon Grid */
.cpp-section .cert-card {
    text-align: center;
    padding: 15px;
}

.cpp-section .cert-card img {
    width: 90px;
    height: auto;
    margin-bottom: 15px;
}

.cpp-section .cert-card h6 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 3px;
    color: #000;
    line-height: 26px;
    font-family: 'Anek Latin', sans-serif;
}

.cpp-section .cert-card h2 {
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 3px;
    color: #0276FD;
    line-height: 26px;
    font-family: 'Anek Latin', sans-serif;
}

.compliance-percent {
    font-size: 60px !important;
    font-family: 'Lexend Deca', sans-serif !important;
    margin-bottom: 1.5rem !important;
}

.cpp-section .cert-card p {
    font-size: 16px;
    color: #626262;
    margin: 0;
    font-weight: 400;
    line-height: 24px;
    font-family: 'Anek Latin', sans-serif;
}


/* logo scrolling section start */
.initiative-section .section-title {
    color: #1C204F;
    margin-bottom: 50px;
    text-align: center;
    font-size: 32px;
    line-height: 40px;
}

.initiative-section .logo-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.initiative-section .logo-track {
    display: inline-flex;
    animation: scroll 15s linear infinite;
}

.initiative-section .initiative-item {
    flex: 0 0 auto;
    width: 250px;
    margin: 0 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: normal;
}

.initiative-section .initiative-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.initiative-section .initiative-item p {
    font-size: 18px;
    color: #000;
    line-height: 24px;
    font-weight: 300;
    font-family: 'Anek Latin', sans-serif;
}

/* The Animation Keyframes */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Moves half the distance (one full set) */
}

/* Pause on hover if desired */
.initiative-section .logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/*csr section css start*/
.csr-section {
    background: #E2EBFF;
}

.csr-section .section-title {
    color: #1C204F;
    margin-bottom: 1rem;
}

.csr-section .section-subtitle {
    color: #626262;
    line-height: 26px;
    width: 100%;
    max-width: 50%;
    margin: 0 auto 2rem auto;
}

.csr-section .csr-card {
    background: white;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: none;
}

.csr-section .image-display-area {
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.csr-section .tab-pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.csr-section .list-group-item {
    border: none;
    border-bottom: 2px solid #E6E6E6 !important;
    padding: 20px;
    cursor: pointer;
    font-size: 18px;
    color: #000;
    line-height: 26px;
    font-weight: 300;
    background: transparent;
    font-family: 'Anek Latin', sans-serif;
}

.csr-section .list-group-item:last-child {
    border-bottom: none !important;
}

/*        .csr-section .list-group-item:hover:not(.active) {
            background-color: #06439C;
            color: #fff;
            border-color: #E6E6E6;
            padding-left: 30px; 
        }*/

.csr-section .list-group-item.active {
    background-color: #06439C !important;
    border-color: #E6E6E6 !important;
    color: #fff !important;
    position: relative;
}

.csr-section .fade {
    transition: opacity 0.4s linear;
}


/* journey timeline css start */
.header-text {
    text-align: center;
    margin-bottom: 40px;
}

.header-text h2 {
    color: #000;
}

.header-text p {
    color: #000;
}

.journey-timeline-section .header-text {
    margin-bottom: 20px !important;
}

/* ===== TIMELINE ===== */
.timeline-viewport {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.fixed-line {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0276FD;
}

.fixed-dot {
    position: absolute;
    top: 85px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    background: #0276FD;
    border: 4px solid #fff;
    outline: 2px solid #0276FD;
    border-radius: 50%;
    z-index: 5;
}

.years-track {
    position: absolute;
    top: 16px;
    left: 50%;
    display: flex;
    align-items: center;
    transform: translateX(-50%);
    transition: transform .6s cubic-bezier(.45, 0, .55, 1);
}

/* ===== YEAR ITEM ===== */
.year {
    width: 150px;
    text-align: center;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    transition: .4s;
}

.year.active {
    width: 400px;
}

/* Year text */
.year span {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #9aa0b5;
}

/* Dot under every year */
.year::after {
    content: "";
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #0276FD;
    border-radius: 50%;
}

/* Active year */
.year.active span {
    font-size: 30px;
    color: #000;
}

/* Bigger active dot */
.year.active::after {
    width: 14px;
    height: 14px;
}

/* ===== CARD ===== */
.journey-card {
    max-width: 1200px;
    margin: 20px auto 40px auto;
    background: #fff;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.img-box {
    width: 40%;
    max-height:400px;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.text-box {
    width: 60%;
    background: #1C204F;
    color: #fff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-box h1 {
    font-size: 48px;
    font-weight: 600;
    color: #0276FD;
    font-family: 'Lexend Deca', sans-serif;
}

.text-box p {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    line-height: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: .5s;
    font-family: 'Lexend Deca', sans-serif;
}

.text-box p.show {
    opacity: 1;
    transform: translateY(0)
}

/* ===== CONTROLS ===== */
.controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.arrow {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    transition: .3s;
}

.arrow img {
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    padding: 4px 10px;
}

.arrow:hover {
    color: var(--blue);
    transform: scale(1.2)
}

@media(max-width:768px) {
    .year {
        width: 110px
    }

    .year span {
        font-size: 16px
    }

    .year.active span {
        font-size: 24px
    }

    .journey-card {
        flex-direction: column
    }

    .img-box,
    .text-box {
        width: 100%;
        max-height: 100%;
    }

    .text-box {
        text-align: center;
        padding: 30px
    }

    .text-box h1 {
        font-size: 46px
    }
    .compliance-percent{
        font-size: 50px !important;
    }
    .cpp-section .nav-pills{
        flex-wrap: wrap !important;
    }
    .overlay-box{
        justify-content:flex-start;
    }
}





@media (max-width: 991px) {
    .about-banner-text {
        top: 22%;
        width: 70%;
    }

    .overlay-box-1 {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .directors-section .member-info-default h4,
    .directors-section .overlay-title {
        font-size: 26px;
    }
    .no-member-info-default h4{
        font-size: 26px !important;
    }
    .initiative-section .initiative-item {
        width: 180px;
        margin: 0 15px;
    }
    .about-us-section .section-text{
        margin-bottom: 20px;
    }

    .initiative-section .initiative-item img {
        width: 60px;
        height: 60px;
    }

    #travelAccordion {
        margin-top: 5rem;
    }
    .img-box{
        max-height: 100%;
    }
    .cpp-section .tabs-container{
        height: 100%;
        max-width: 100%;
    }
    .cpp-section .nav-pills{
        flex-wrap: nowrap;
    }
}

@media screen and (min-width: 2500px) {
    body {
        max-width: 2500px;
    }
}

@media screen and (min-width: 2000px) and (max-width: 2499px) {
    .about-banner-text {
        width: 20% !important;
    }
}


@media screen and (min-width: 1901px) and (max-width: 2000px) {
    .about-banner-text {
        width: 20% !important;
    }
}


@media screen and (min-width: 992px) and (max-width: 1024px) {

    .about-banner-text {
        top: 22%;
        width: 32%;
    }

    .about-us-section .stat-card {
        margin-bottom: 0;
    }

    .directors-section .row .col-lg-4 {
        width: 49%;
    }
    .cpp-section .tabs-container{
        height: auto;
    }



}
@media screen and (min-width: 991px) and (max-width: 1024px) {
    .cert-card h6{
        height: 50px;
    }
}
@media screen and (min-width: 569px) and (max-width: 991px) {
    .people-strength-section .image-stack-wrapper {
        margin:0 auto;
        height: 550px;
    }

    .directors-section .overlay-bio {
        font-size: 14px;
    }
    .about-banner-text{
        width: 45%;
        top:17% ;
    }

    .directors-section .member-info-default h4,
    .directors-section .overlay-title {
        font-size: 20px;
    }

    .no-member-info-default h4{
        font-size: 20px !important;
    }

    .directors-section .overlay-role {
        font-size: 14px;
    }

    .directors-section .member-overlay {
        padding: 33px;
    }

    .csr-section .section-subtitle {
        max-width: 80%;
    }

    .about-us-section .stat-grid {
        grid-template-columns: 1fr;
    }

    .about-us-section .stat-card {
        border-radius: 20px !important;
        min-height: 180px;
    }

    .about-us-section .main-stat-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .about-us-section .stat-grid-2 {
        margin-top: 0;
    }

    .stat-card.stat-1,
    .stat-card.stat-2 {
        margin-right: 20px;
        gap: 0;
    }
    .cpp-section .nav-pills{
        flex-wrap: nowrap !important;
    }
}

@media screen and (min-width: 320px) and (max-width: 568px) {
    .text-box p {
        font-size: 20px;
        font-weight: 400;
    }

    .cpp-section ul li {
        width: 100% !important;
        max-width: 100%;

    }

    .people-strength-section .accordion-button {
        font-size: 22px;
    }

    #travelAccordion {
        margin-top: 5rem;
    }

    .cpp-section .nav-pills .nav-link {
        width: 100% !important;
    }

    .csr-section .section-subtitle {
        max-width: 92%;
    }

    .directors-section .divider,
    .overlay-bio p {
        margin-bottom: 0px;
    }

    .directors-section .overlay-title {
        font-size: 24px !important;
    }

    .directors-section .member-overlay {
        padding: 30px 30px 30px 40px !important;
    }

    .people-strength-section .image-stack-wrapper {
        margin: 0 auto;
        width: 90%;
        height: 250px;
    }

}

@media (max-width: 767px) {
    .about-banner-text {
        top: 3%;
        width: 90%;
    }
    .tab-content {
        min-height: 500px !important;
    }

    .tab-pane {
        min-height: 100px !important;
    }

    .tabs-container {
        height: 100% !important;
    }

    .desktop-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
    }

    .overlay-box-2 {
        margin-left: 0;
    }

    .top-box {
        margin-bottom: 10px;
    }
}