.tab-btn {
    font-size: 20px;
    border: none;
    background: white;
    transition: .3s;
    color: #063E63;
}

.tab-underline {
    display: block;
    height: 2px;
    background: rgb(0, 0, 0);
    background: #00AD6F;
    border-radius: 100vw;
    margin: 6px 0;
    width: 0px;
    transition: .3s;
}
.hero-section-img img{
    border-radius: 30px;
}
.tab-btn-active .tab-underline {
    width: 100%;
}

.tab-btn-active {
    font-weight: bold;
}

.tab-underline-active {
    width: 100%;

}

.vision-and-mission-section .container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 1em;
}

.vision-title {
    color: #FF6803;
    font-weight: 800;
}

.img-container-wrapper {
    padding: 1em;
}

.img-container {
    width: 100%;
    /* background:gray; */
    height: 100%;
    box-sizing: border-box;
    /* height: 490px; */
    height: 363px;
    position: relative;
}


.img-container-item {
    border-radius: 22px;
    height: auto;
    width: 54%;
}

.img-container-item-mission {
    position: absolute;
    top: 0%;
    right: 0%;
}

.img-container-item-vision {
    position: absolute;
    /* bottom: 0%; */
    bottom: 24%;
    left: 0%;
    z-index: 1;
}

.info-mission {
    display: none;
}

/* Full width image section styles */
.full-width-image-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 500px;
    margin: 30px auto;
    background: #EDFCF5;
    margin-top: -36px !important;
}

.full-width-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-width-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.info-item-title {
    color: #063E63;
}

/* SVG Animation Styles */
.svg-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.svg-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.svg-animate:nth-child(1) {
    transition-delay: 0.1s;
}

.svg-animate:nth-child(2) {
    transition-delay: 0.2s;
}

.svg-animate:nth-child(3) {
    transition-delay: 0.3s;
}

.svg-animate:nth-child(4) {
    transition-delay: 0.4s;
}

/* Location Card Styles */
.location-group {
    position: relative;
    cursor: pointer;
}

.location-card {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.location-card::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.location-group:hover .location-card {
    opacity: 1;
    visibility: visible;
    top: -130px;
}

.location-card h3 {
    color: #063E63;
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.location-card p {
    color: #666;
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.4;
}

.map-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00AD6F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #063E63;
}

.map-link svg {
    transition: transform 0.3s ease;
}

.map-link:hover svg {
    transform: translateX(4px);
}

/* Ensure the SVG elements are clickable */
.location-group ellipse,
.location-group circle,
.location-group path {
    pointer-events: all;
}

/* Add hover effect to the SVG elements */
.location-group:hover ellipse,
.location-group:hover circle,
.location-group:hover path {
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

.start-conversation-cta {
    text-transform: uppercase;
    font-size: 18px !important;
}

@media only screen and (max-width: 1366px) {
    .hero-section .content-info-item-title {
        font-size: 24px !important;
        line-height: normal;
        max-width: 340px;
    }

    .about-us-hero .hero-email-capture-text {
        color: white;
        font-size: 18px !important;
        margin-top: 9px;
    }

    .meet-team-section {
        padding-left: 2em;
        padding-right: 2em;
    }

    .meet-team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1em;
    }

    .vision-and-mission-section {
        padding-left: 2em;
        padding-right: 2em;
    }

    .tab-btn-wrapper {
        display: flex;
        align-items: center;
    }

    .tab-btn {
        font-size: 16px;
        border: none;
        background: white;
        transition: .3s;
        color: #063E63;
        width: max-content;
    }

    .cta-sec-lst .heading-tab {
        font-size: 24px;
        /* line-height: 30px; */
    }

    .cta-sec-lst .subhead {
        font-size: 14px;
    }

    .primary-cta-btn {
        border-bottom: 0px;
        font-weight: 500;
        font-size: 18px !important;
    }


    .meet-team-header h2 {
        font-size: 24px;
    }

    .meet-team-section p {
        color: #063e63 !important;
        font-size: 14px !important;
    }

    .info-item-title {
        color: #063E63;
        font-size: 22px !important;
    }

    .info-item-description {
        font-size: 14px !important;
    }

    .vision-title {
        color: #FF6803;
        font-weight: 800;
        margin: 0px 0px;
        display: block;
    }

    .img-container {
        height: 299px !important;
    }

    .section-header-title {
        font-size: 24px !important;
        color: #063E63;
        margin: auto;
        text-align: center;
    }

    .meet-team-overlay {
        box-sizing: border-box !important;
        border-radius: 8px;
    }
}

/* new css for 90% */
@media only screen and (min-width: 1440px) {
    .hero-section .content-info-item-title {
        font-size: 28px !important;
    }

    .about-us-hero .hero-email-capture-text {
        font-size: 16px !important;
    }

    .meet-team-header h2 {
        font-size: 28px;
    }

    .meet-team-section p {
        font-size: 14px;
    }

    .meet-team-overlay h3 {
        font-size: 16px;
    }

    .meet-team-card p {
        font-size: 14px;
    }

    .tab-btn {
        font-size: 14px;
    }

    .info-item-title {
        font-size: 28px;
    }

    .vision-and-mission-section p {
        font-size: 14px;
        line-height: 1.5;
        margin-right: 2em;
    }

    .vision-and-mission-section p span {
        display: block;
        margin: 3px 0;
    }

    .section-header-title {
        font-size: 28px;
    }
}

.meet-team-section-swiper-mobile {
    display: none;
}

.meet-team-grid { 
    display: grid;
}

.info-img-wrapper {
    display: none;
}

.vision-mission-mobile-section {
    display: none;
}
.milestone-mobile {
    display:none!important;
}

@media only screen and (max-width:600px) {
    .milestone-mobile {
        display:block!important;
    }
     .milestone-desktop {
        display:none!important;
    }

    .vision-and-mission-section {
        display: none;
    }

    .vision-mission-mobile-section {
        display: block;
    }

    .info-img-wrapper {
        display: block;
    }

    .info-img-wrapper img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .meet-team-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1em;
    }

    .meet-team-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .vision-and-mission-section .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1em;
    }

    .vision-and-mission-section {
        padding-left: 1em;
        padding-right: 1em;
    }

    .img-container-item {
        border-radius: 22px;
        height: 55%;
        width: auto;
    }

    .cta-sec-lst {
        padding: 1em 10px;
        text-align: center;
    }

    .meet-team-section-swiper-mobile {
        position: relative;
        display: block;
        padding-bottom: 3em;
    }

    .meet-team-grid {
        display: none;
    }

    .vision-and-mission-section .img-container-wrapper {
        padding: 1em 0;
        display: none;
    }

    .global-presence-section {
        display: none;
    }

    .vision-and-mission-section .info img {
        position: static;
        width: 100%;
    }

    .global-presence-section {
        display: none;
    }

    .hero-section {
        /* height: 100vh; */
        height: auto;
        padding: 8px;
    }

    .hero-section .content-info {
        margin-bottom: 0;
        margin-top: -100px;
    }

    .hero-section .content-info {
        margin-top: -200px;
        margin-bottom: 0;
    }

    .milestone-section {
        margin-bottom: 40px;
    }

    .meet-team-card:hover {
        transform: translateY(0px);
    }

    .about-us-hero .hero-email-capture-text {
        width: fit-content!important;
    }

    .hero-email-capture-container {
        width: fit-content!important;
    }

    .about-us-hero .hero-email-capture-line {
        width: 100%;
    }

    .hero-section-img img {
        border-radius: 0;
    }

    .meet-team-section-swiper-mobile {
        padding-bottom: 0em;
    }

    .team-swiper-pagination  {
        display: block!important;
    }

    .team-memeber-secondary-slide-mobile {
        display: block!important;
    }

    .meet-team-grid {
        display:none!important;
    }

    .team-swiper-nav-btn-wrapper {
        display:none!important;
    }

    .meet-team-card-2
    .meet-team-social {
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        /* gap: 10px; */
        z-index: 1;
        flex-direction: column;
        border-radius: 0 8px!important;
        background: #063e63;
        padding:14px 14px;
        padding-top: 10px!important;
    }

}

.vision-mission-mobile-section {
    padding: 1em 10px;
}

.content-toggle-btn {
    padding: 12px 0;
    width: fit-content;
    font-size: 16px;
    font-weight: bold;
    color: #063E63;
}

.content-toggle-btn .underline {
    display: block;
    height: 2px;
    background: #00AD6F;
    margin-top: 6px;
    border-radius: 12px;
    width: 0%;
    transition: .3s;
}

.vision-mission-tab-wrapper {
    display: flex;
    align-items: center;
    gap: 1em;
}

.content-toggle-btn-active .underline {
    background: #00AD6F;
    width: 100%;
}

.content-toggle-btn-info {
    display: none;
}

.content-toggle-btn-info p {
    line-height: 1.5;
    color: #063E63;
    font-size: 14px;
}

.mobile-nav {
    display: none;
}

.content-toggle-btn-info span {
    margin: 6px 0;
    display: block;
    font-size: 14px;
}

.team-memeber-secondary-slider-wrapper {
    margin: 2em 0;
} 

.team-swiper-pagination {
    position: static!important;
    margin: 1em 0;
}


.team-memeber-secondary-slide-mobile {
    display: none;
}

.team-swiper-pagination  {
    display: none;
} 

.meet-team-card-2
.meet-team-social {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    /* gap: 10px; */
    z-index: 1;
    flex-direction: column;
    border-radius: 0px 20px;
    background: #063e63;
    padding:6px 14px;
    padding-top: 10px;
}

.meet-team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: fit-content;
    padding: 20px;
    background: rgba(6, 62, 99, 0.8);
    border-radius: 20px;
    background: linear-gradient(180deg,
      rgba(23, 23, 23, 0) 20.71%,
      rgba(23, 23, 23, 0.7) 72.39%,
      rgba(23, 23, 23, 0.9) 100%);
    color: white;
    /* transform: translateY(100%); */
    /* transition: transform 0.3s ease; */
}