:root {
    --font-DM: "DM Sans", Sans-serif;
    --font-Inter: "Inter", Sans-serif;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: var(--font-Inter);
}

.section-header {
    width: 100%;
}

.section-header h2 {
    font-family: var(--font-DM);
    font-weight: 400;
    color: var(--e-global-color-primary);
}

.section-header p {
    font-family: var(--font-Inter);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: var(--e-global-color-cd105eb);
}

.timeline-scroll {
    position: relative;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-left: 60%;
    height: 55vh;
}

.timeline {
    position: relative;
    display: flex;
    align-items: center;
    height: 320px;
    width: max-content;
    will-change: transform;
}

.line {
    position: absolute;
    top: 50%;
    left: 0;
    /* transform: translateY(-50%); */
    height: 4px;
    background: #D3D3D3;
    width: 100%;
}

.progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    /* transform: translateY(-50%); */
    height: 5px;
    background: #143592;
    width: 0;
    transform-origin: left center;
    will-change: transform;
}

.car-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 9;
    width: 75px;
    display: flex;
    will-change: transform;
}

.car-wrapper .car {
    width: 100%;
    height: auto;
}

.year-block {
    position: relative;
    width: 270px;
    flex-shrink: 0;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.year-block:nth-child(odd) {
    align-self: flex-start;
    min-height: 155px;
}

.year-block:nth-child(even) {
    top: 100px;
    min-height: 130px;
}

.circle {
    display: block;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 2.5px solid #D3D3D3;
    border-radius: 50%;
    transition: background 0.3s;
    position: absolute;
    left: 0;
    bottom: -17px;
    z-index: 1;
}

.year-block:nth-child(even) .circle {
    top: -39px;
    bottom: auto;
}

.year-block.active .circle {
    border: 3.5px solid var(--e-global-color-primary);
}

.year {
    font-size: 33px !important;
    font-weight: 600;
    margin-block: 0 8px;
    color: #4B5162;
}

.year-block.active .year {
    color: #98F034;
}

.year-block .title {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #4B5162;
}

.year-block .desc {
    font-size: 13px;
    line-height: 1.3;
    color: #4B5162;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.year-block .title,
.year-block .desc {
    color: #000000;
}

/* Scrollbar */
.timeline::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

.timeline::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 999px;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.timeline::-webkit-scrollbar-track {
    background: transparent;
}

/*Services Tabs*/
.services-section {
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
    border-radius: 16px;
    background: #F5F8FF;
    gap: 20px;
}

.services-section .left-side {
    width: 33%;
}

.service-feature {
    width: 100%;
    display: none;
}

.services-image-row {
    position: relative;
    height: 395px;
    border-radius: 16px;
    overflow: hidden;
}

.services-image-row img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background: rgba(21, 54, 146, 0.53);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content-row h2 {
    font-size: 32px !important;
    font-weight: 700;
    color: #1D2B36;
    margin-bottom: 10px;
    font-family: var(--font-DM);
}

.service-content-row p {
    font-size: 15px;
    line-height: 1.6;
    font-family: var(--font-Inter);
    color: #666;
    margin-bottom: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 5;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.service-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.read-more-text a {
    text-decoration: none;
    color: #4B5162;
    font-size: 14px;
    font-weight: 500;
}

.read-more-text a svg {
    width: 10px;
    height: 10px;
}

.service-detail-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: auto;
}

.service-detail {
    position: relative;
    cursor: pointer;
    flex: 1 1 calc(19% - 15px);
    border-radius: 10px;
    overflow: hidden;
    transition: all .3s;
}

.service-detail:hover {
    transform: scale(1.03);
}

.service-detail img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.service-detail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    font-size: 14px;
    color: #fff;
    background: rgba(2, 3, 15, 0.63);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.service-feature,
.service-description-block {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.service-feature.active,
.service-description-block.active {
    display: block;
    opacity: 1;
}

.service-detail {
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: inline-flex;
}

.service-detail.active {
    opacity: 1;
    pointer-events: none;
}

/* Progress bar */
.service-progress {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    overflow: hidden;
    border-radius: 2px;
}

.service-progress .progress-bar {
    width: 0%;
    height: 100%;
    background: #007bff;
    transition: width linear 5s;
}


.job-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 14px 18px;
    margin-bottom: 12px;
    transition: box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.job-card>a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

}

.job-card:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--e-global-color-primary);
    text-decoration: none;
}

.icon {
    font-size: 16px;
    color: #2563eb;
}

.job-meta,
.posted-on {
    font-size: 14px;
    color: #4B5162;
    font-weight: 400;
    margin-top: 6px;
    display: flex;
}

.job-meta span {
    margin-right: 6px;
}

.job-meta .meta-info {
    display: flex;
    align-items: center;
}

.job-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.job-cta span {
    font-family: var(--font-DM);
    font-weight: 500;
    font-size: 14px;
    line-height: 126%;
    color: var(--e-global-color-primary);
    align-items: center;
    display: inline-flex;
}

.job-cta span svg {
    width: 10px;
    height: 10px;
    margin-left: 10px;
}

.job-meta .meta-info svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.filter-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.filter-dropdown {
    flex: 1 1 180px;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    color: #374151;
    cursor: pointer;
}

.filter-btn {
    background-color: transparent !important;
    color: var(--e-global-color-primary) !important;
    text-decoration: underline;
    border: none;
    padding: 0px;
    font-size: 14px !important;
    cursor: pointer;
}

/* === Generic Popup Overlay === */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 53, 146, 0.76);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* === Generic Popup Box === */
.popup {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    width: 80%;
    max-width: 700px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: left;
    animation: popupFade 0.3s ease;
    
}

/* === Popup Close Button === */
.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent !important;
    border: none;
    color: black !important;
    font-size: 26px !important;
    cursor: pointer;
    padding: 0 !important;
    line-height: 17px !important;
    width: 18px;
    aspect-ratio: 1;
}
.popup-content{
max-height: 540px;
    overflow-y: auto;
    overflow-x:hidden;
}
.popup-content h2,
.popup-header h2{
    font-family: var(--font-DM);
    font-weight: 400;
    color: var(--e-global-color-primary);
    font-size: 30px !important;
    margin-block: 0 10px;
    text-align: left;
}
.popup-header{
margin-bottom: 25px;
}
/* === Popup Animation === */
@keyframes popupFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


.form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
textarea {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #666666;
    background: transparent;
    /* color: #fff; */
    font-size: 14px;
}

textarea {
    min-height: 100px;
}

::placeholder {
    color: #666666;
}

.full-width {
    width: 100%;
}

.button-group {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.tabs-wrapper {
    display: flex;
    min-height: 300px;
}

.tabs-menu {
    width: 33%;
    background-color: #F8F8F8;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 15px 20px !important;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px !important;
    line-height: 100%;
    font-weight: 500 !important;
    color: #0F172B;
    transition: 0.3s ease;
    font-family: var(--font-DM);
    height: 62px;
}

.tab-btn:not(:last-child) {
    margin-bottom: 8px;
}

.tab-btn:hover,
.tab-btn.active {
    background-color: #143592;
    /* font-weight: 600 !important; */
    font-size: 19px !important;
    color: #ffffff;
}

.tab-btn .service-icon {
    width: 24px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.tab-btn .service-icon svg {
    width: 100%;
    height: 100%;
}

.tab-btn:hover .service-icon,
.tab-btn.active .service-icon {
    width: 30px;
}

.tab-btn .service-icon svg path {
    fill: #0F172B;
}

.tab-btn:hover .service-icon svg path,
.tab-btn.active .service-icon svg path {
    fill: #ffffff;
}

.tab-content {
    flex: 1;
    padding: 20px;
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-btns {
    padding: 27px 17px 27px 70px;
}

.service-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.service-list a {
    font-family: var(--font-DM) !important;
    font-size: 16px;
    font-weight: 500;
    color: #0F172B !important;
    transition: all 0.3s;
}

.service-list a:hover {
    /* transform: scale(1.05); */
}

.service-item a {
    padding: 15px 20px;
    background-color: transparent;
    transition: all 0.3s;
    border-radius: 10px;
    width: 100%;
    display: block;
}

.service-item a:hover {
    background-color: #14359217;
}

.team-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team_card_wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 370px;
}

.team-img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: top;

}

.team_card_wrap .card-meta {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 58.97%);
    text-align: left;
    padding: 12px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    gap: 12px;
    transition: background 0.3s;
}

.team_card_wrap:hover .card-meta {
    background: linear-gradient(0deg, #143592 0%, rgba(20, 53, 146, 0) 58.97%);
}

.team-name {
    font-family: var(--font-DM);
    font-weight: 600;
    font-size: 25px;
    line-height: 100%;
    color: white;
    transition: transform 0.4s ease;
}

.team-desc {
    font-family: var(--font-Inter);
    font-weight: 500;
    font-size: 14px;
    line-height: 126%;
    color: rgba(255, 255, 255, 0.68);
    transition: transform 0.4s ease;
}

.btn-wrap {
    position: absolute;
    bottom: 12px;
    left: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

.team_card_wrap:hover .team-name,
.team_card_wrap:hover .team-desc {
    transform: translateY(-65px);
}

.team_card_wrap:hover .btn-wrap {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.team-content-wrap {
    display: flex;
    gap: 15px;
}

.team-content-wrap * {
    margin: 0;
}

.popup-photo-box {
    width: 230px;
    flex-shrink: 0;
}

.popup-photo-box img {
    border-radius: 12px !important;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    background-color: var(--e-global-color-primary);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.team-content-wrap h2.popup-name {
    color: #1D2B36;
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 10px !important;
}

.team-content-wrap .popup-designation,
.team-content-wrap .popup-desc {
    font-size: 14px;
    color: #666666;
    font-family: var(--font-Inter);
    margin-bottom: 16px;
}
.team-content-wrap .popup-desc{
    /*max-height: 300px;
    overflow-y: auto;*/
}
.team-content-wrap .popup-designation {
    opacity: 0.8;
    line-height: 1.3;
}

.event-gallery-carousel {
    width: 100%;
    /* max-width: 900px; */
    margin: 0 auto;
}

.event-gallery-carousel img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.single-event-image img {
    width: 100%;
    border-radius: 10px;
}

.header-search-wrapper {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

button.reset-btn.search-toggle {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

button.reset-btn.search-toggle:hover {
    transform: scale(1.1);
}

.custom-search-form {
    position: absolute;
    top: 120%;
    /* slightly below icon */
    right: 0;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    gap: 8px;
    align-items: center;

    /* animation state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease-in-out;
}

.custom-search-form.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-search-form .search-field {
    flex: 1;
    width: 230px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none !important;
    transition: border-color 0.2s ease;
}

.custom-search-form .search-field:focus {
    border-color: #0073aa;
}

.custom-search-form .search-submit.btn-sm .btn-content-wrap {
    width: 95px;
    font-weight: 400;
    min-width: unset;
}

.custom-search-results {
    margin-top: 40px;
    margin-inline: auto;
}

.search-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-item {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 15px 20px;
    transition: box-shadow 0.2s ease;
    background: #fff;
}

.search-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.search-item-title {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.search-item-title:hover {
    text-decoration: underline;
    color: var(--e-global-color-primary);
}

.search-excerpt {
    color: #555;
    font-size: 14px;
    margin-top: 6px;
}

.no-results {
    text-align: center;
    margin-top: 40px;
    color: #555;
}

.no-results p {
    font-size: 20px;
}

.search-field.invalid {
    border-color: #ff4d4d !important;
    background-color: #ffecec !important;
}

.header-sticky button.search-toggle svg path,
body.menu-is-open button.search-toggle svg path {
    stroke: var(--e-global-color-primary);
}

.membership-block {
    display: flex;
    flex-wrap: wrap;
}

.membership-items {
    width: 100%;
    border: 1px solid #D9E3FF;
    padding: 0;
    /* height: 422px; */
    overflow: hidden;
    border-radius: 16px;
    background-color: #fff;
}

.membership-items-row {
    padding: 22px 14px;
}

.logo-tag {
    font-family: var(--font-DM);
    font-weight: 500;
    color: #050B20;
    background-color: #14359221;
    padding: 4px 15px;
    display: inline-flex;
    border-radius: 30px;
    margin-bottom: 16px;
}

.logo-tag.popup-open:hover {
    background-color: #14359242;
    cursor: pointer;
}

.membership-items-row h2 {
    margin: 0 0 6px 0;
    font-family: var(--font-DM);
    font-size: 18px !important;
    font-weight: 600;
    color: #000000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.membership-items-description {
    color: #4B5162;
    font-size: 14px;
    margin: 0;
    font-family: var(--font-Inter);
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.membership-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E2EAFF;
    height: 200px;
}

.membership-image img {
    width: 130px;
}

.membership-popup {
    max-width: 65%;
    padding: 45px 20px 25px 20px;
    background-color: #fff;
    border-radius: 15px;
    position: relative;
    max-height: 682px;
}

.membership-popup .close-button {
    cursor: pointer;
    padding: 0;
    border: none;
    background: transparent;
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 9;
}

.membership-popup .membership-items {
    height: auto;
    display: flex;
    flex-wrap: wrap;
}

.membership-popup .membership-image {
    display: inline-flex;
    width: 230px;
}

.membership-popup .membership-items-row {
    padding: 22px 14px;
    flex: 1;
}

.membership-items-row .btn-primary {
    margin-top: 15px;
    opacity: 0;
    transform: all 0.3s;
}

.membership-items:hover .membership-items-row .btn-primary {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

#newsPopupBox .popup-photo-box {
    width: 100%;
    height: 250px;
    margin-bottom: 12px;
}

#newsPopupBox .popup-photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tooltip-wrap .tooltip {
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
}

.tooltip-wrap.active .tooltip {
    opacity: 1;
    visibility: visible;
}

span.map-popup-close-button {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 0;
    top: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}

.productmenubox {
    position: relative;
    padding-left: 40px !important;
}

.productmenubox .elementor-icon-box-icon a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding-top: 20px;
    padding-left: 20px;
}

.everest-forms .evf-field-container .evf-frontend-row .evf-frontend-grid .evf-field,
.wp-block-everest-forms-form-selector .evf-field-container .evf-frontend-row .evf-frontend-grid .evf-field {
    position: relative;
}

.everest-forms label.evf-error,
.wp-block-everest-forms-form-selector label.evf-error {
    position: absolute;
    bottom: -10px;
    font-size: 13px;
    margin: 0;
}

.everest-forms label,
.wp-block-everest-forms-form-selector label {
    margin: 0 0 5px 0;
}

.requestInput input,
.requestInput textarea,
.requestInput select,
.jobInput input {
    pointer-events: none;
    background-color: #f5f5f5;
    color: #555;
    cursor: not-allowed;
}

.evf-invalid {
    border: 1.5px solid #e55353;
    box-shadow: 0 0 0 3px rgba(229, 83, 83, 0.08);
    animation: evf-shake 0.18s linear 0s 1;
}

@keyframes evf-shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    50% {
        transform: translateX(3px);
    }

    75% {
        transform: translateX(-2px);
    }

    100% {
        transform: translateX(0);
    }
}

.choose-avin-card:hover {
    background-color: #14359214;
}

.choose-avin-card:hover .elementor-icon {
    background-color: #143592 !important;
}

.choose-avin-card:hover .elementor-icon svg path {
    fill: #ffffff;
}

header.header-sticky .top-bar {
    height: 0;
    overflow: hidden;
    padding: 0;
}

.productmenubox .elementor-icon-box-wrapper {
    display: flex;
    column-gap: 15px;
}

.post_card .post_title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.map-wrapper {
    width: 100%;
    max-width: 1400px;
    height: auto;
    position: relative;
}

.map-wrapper .tooltip img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px !important;
}

.map-wrapper img.global_img {
    width: 100%;
    height: auto;
}

/* marker pins overlay (optional) */
.marker {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(20, 53, 146, 1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.2s ease;
    z-index: 2;
}

.marker:hover {
    transform: translate(-50%, -50%) scale(1.3);
}

.tooltip {
    position: absolute;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 3;
    width: 250px;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    background: #ffffff;
    border-radius: 13px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.marker:hover+.tooltip {
    opacity: 1;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(20, 53, 146, 0.3);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(20, 53, 146, 0);
    }
}

img.active-img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    display: none;
    opacity: 0.6;
}

.tooltip-wrap {
    position: absolute;
}

.tooltip-wrap:hover+img.active-img {
    display: block;
}

.map-popup-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #333;
    position: relative;
}

.map-popup-content-wrapper img {
    width: 100%;
    border-radius: 3px;
}

.map-popup-content-wrapper .title {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    width: 100%;
    display: block;
}

.map-popup-content-wrapper .address {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    margin: 0;
    color: rgba(0, 0, 0, 0.68);
    width: 100%;
    display: block;
}

.map-popup-content-wrapper a.map_link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

li#mega-menu-item-3683 {
    display: none !important;
}

/* Responsive */
@media (max-width: 1366px) {
    .tab-btn .service-icon {
        width: 20px;
    }

    .tab-btn {
        padding: 12px !important;
        font-size: 15px !important;
    }

    .tab-btns {
        padding: 25px 15px 25px 15px;
    }

    .tab-btn:hover .service-icon,
    .tab-btn.active .service-icon {
        width: 25px;
    }

    .tabs-menu {
        width: 37%;
        background-color: #F8F8F8;
    }

    .tab-btn:hover,
    .tab-btn.active {
        font-size: 17px !important;
    }

    .services-section .left-side {
        width: 300px;
    }

    .service-detail img {
        height: 120px;
    }
}

@media screen and (max-width:1100px) {
    .section-header h2 {
        font-size: 45px;
    }

    .section-header p {
        font-size: 14px;
        line-height: 20px;
    }

    .timeline.vertical {
        width: auto !important;
        display: block;
        transform: none !important;
        padding: 0 12px;
    }

    .year-block.fade-init {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 420ms ease, transform 420ms cubic-bezier(.2, .9, .3, 1);
        will-change: opacity, transform;
    }

    .year-block.fade-in {
        opacity: 1;
        transform: translateY(0);
    }

    .car-wrapper {
        display: none;
    }

    .progress-line {
        display: none;
    }

    .line {
        display: none;
    }

    .year-block:nth-child(even) {
        top: 0;
    }

    .team-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .year-block:nth-child(even) .circle {
        top: -34px;
    }

    .success-story-box {
        overflow: hidden;
    }

    .timeline-scroll {
        padding-left: 108%;
    }

}

@media (max-width: 767px) {
    .services-section {
        padding: 15px;
    }

    .services-section .left-side {
        width: 100%;
    }

    .services-image-row {
        height: 270px;
    }

    .service-content-row h2 {
        font-size: 24px !important;
    }

    .service-content-row p {
        margin-bottom: 15px;
    }

    .service-detail img {
        height: 100px;
    }

    .section-header h2 {
        font-size: 25px;
    }

    .job-card {
        padding: 12px 14px;
        flex-direction: column;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-meta {
        flex-direction: column;
        width: 100%;
    }

    .job-meta .meta-info {
        margin-bottom: 5px;
    }

    .job-card .card-info {
        width: 100%;
    }

    .job-cta {
        flex-direction: row-reverse;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    .job-cta .posted-on {
        margin-top: 0;
    }

    .car-wrapper,
    .progress-line,
    .line {
        display: none !important;
    }

    .timeline-scroll {
        padding-left: 0;
        height: auto;
        overflow: visible;
        position: relative;
    }

    .vertical-line {
        position: absolute;
        left: 20px;
        top: 0;
        width: 3px;
        height: 100%;
        background: #D3D3D3;
    }

    .timeline {
        display: flex;
        flex-direction: column;
        padding: 20px 20px 20px 50px;
        gap: 60px;
        height: auto;
    }

    .year-block {
        width: 100%;
        opacity: 0;
        transform: translateY(40px);
        position: relative;
    }

    .year-block::before {
        content: "";
        position: absolute;
        left: -30px;
        top: 5px;
        width: 16px;
        height: 16px;
        background: #fff;
        border: 3px solid #143592;
        border-radius: 50%;
        z-index: 5;
    }

    .membership-section {
        padding: 20px;
    }

    .membership-popup .membership-image {
        width: 100%;
    }

    .membership-popup {
        max-width: 85%;
        max-height: 80%;
    }

    .tokyo .tooltip {
        left: auto;
        right: 0;
        transform: unset;
    }

    .bloomfield .tooltip {
        left: 0;
        transform: unset;
    }

    .custom-search-form {
        right: -47px;
    }

    li#mega-menu-item-3683 {
        display: list-item !important;
    }

    #newsPopupBox .popup-photo-box {
        height: 160px;
    }

    .popup-content h2 {
        font-family: var(--font-DM);
        font-weight: 400;
        color: var(--e-global-color-primary);
        font-size: 20px !important;
        margin-block: 0 10px;
    }

    .popup-close {
        top: 13px;
        right: 13px;
    }

    .accordion-content {
        flex-wrap: wrap;
    }

    .team-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-content-wrap {
        flex-wrap: wrap;
    }

    .membership-items-row .btn-primary {
        opacity: 1;
    }
    .popup-content .everest-forms-notice.everest-forms-notice--success {
    width: 90%;
}

}

@media (max-width: 480px) {
    .service-detail img {
        height: 80px;
    }
    .popup-photo-box {
    width: 100%;
}
}