@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: auto !important;
    /* disable native smooth scroll — Lenis handles it */
    overflow-x: clip;
}

body {
    overflow-x: clip;
    /* clip prevents horizontal scroll from animations without creating a
       scroll container — so position:sticky still works on nav, services, etc. */
}


.container {
    padding: 0;
}

/* Change these 3 selectors — add h1 */

h2[data-animate] .anim-word,
h1[data-animate] .anim-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

h2[data-animate] .anim-char,
h1[data-animate] .anim-char {
    display: inline-block;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
    will-change: transform, opacity;
}

h2[data-animate].chars-visible .anim-char,
h1[data-animate].chars-visible .anim-char {
    transform: translateY(0%);
    opacity: 1;
}

/* BEFORE — animation runs on page load */

.pathways-note {
    animation: slideIn 0.5s ease forwards;
}

/* AFTER — animation only runs when element reaches viewport */

.pathways-note {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pathways-note.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================= SCROLL ANIMATIONS (ICP style) ================= */

@keyframes sa-fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes sa-fade-up {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sa-fade-down {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-animate {
    opacity: 0;
    transition: opacity 1.1s ease, transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-animate.left-animation {
    transform: translateX(-60px);
}

.scroll-animate.right-animation {
    transform: translateX(60px);
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* fade-in — keyframe animation */

.scroll-animate.fade-in {
    transform: none;
    transition: none !important;
}

.scroll-animate.fade-in.is-visible {
    animation: sa-fade-in 1.1s ease forwards;
}

/* fade-up — keyframe animation */

.scroll-animate.fade-up {
    transform: none !important;
    transition: none !important;
}

.scroll-animate.fade-up.is-visible {
    animation: sa-fade-up 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* fade-down — keyframe animation */

.scroll-animate.fade-down {
    transform: none !important;
    transition: none !important;
}

.scroll-animate.fade-down.is-visible {
    animation: sa-fade-down 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}








.pathways-expand .card-content h4,
.pathways-expand .card-content p {
    width: 100% !important;
    max-width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: revealTextSlower 2.5s linear 0.5s forwards, mobilePopUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.pathways-expand .expand-card .card-content {
    min-width: 100% !important;
}


/* ================= HERO ================= */

.career-hero .container {
    padding: 80px 0px 0px 60px;
    background: linear-gradient(99.61deg, #FFF7F4 2.2%, #EFF5FF 96.03%);
    border-radius: 15px;
}

.career-hero .hero-content h1 {
    font-family: 'Playfair Display';
    font-weight: 600;
    font-size: 38px;
    line-height: 50px;
    background: linear-gradient(89.99deg, #E15625 0.01%, #FF794A 63.67%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 20px;
}

.career-hero .hero-content h1 span {
    background: #256C91;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.career-hero .hero-content p {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #464646;
    margin-bottom: 40px;
}

.career-hero .hero-btn {
    padding: 12px 24px;
    background: #2356A5;
    border: 3px solid #FF794A;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-decoration: none;
    color: #FFFFFF;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease, border-color 0.4s ease, transform 0.35s ease;
}

.career-hero .hero-btn::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: #FF794A;
    transition: width 0.4s ease-in-out;
    z-index: -1;
}

.career-hero .hero-btn:hover::after {
    width: 100%;
}

.career-hero .hero-btn:hover {
    border: 3px solid #2356A5;
}

.career-hero .hero-image img {
    width: 100%;
    height: auto;
}

/* ================= Pathways ================= */

.pathways-expand {
    padding: 80px 0;
}

.pathways-expand .section-head {
    margin-bottom: 40px;
}

.pathways-expand .section-head p {
    text-align: end;
}

h2 {
    font-family: 'Playfair Display';
    font-weight: 600;
    font-size: 35px;
    line-height: 47px;
    background: linear-gradient(89.99deg, #E15625 0.01%, #FF794A 63.67%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 0;
}

h2 span {
    background: #256C91;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

p.description {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #464646;
    margin-bottom: 0;
}

.pathways-expand .expand-wrapper {
    display: flex;
    gap: 20px;
    height: 420px;
}

.pathways-expand .expand-card {
    flex-shrink: 0;
    width: calc((100% - 40px) / 3);
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    will-change: width;
    transition: width 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

/* Staggered fade-in when wrapper enters viewport */

.pathways-expand .expand-wrapper.is-visible .expand-card:nth-child(1) {
    animation: cardFade 1.4s ease-in-out 0s forwards;
}

.pathways-expand .expand-wrapper.is-visible .expand-card:nth-child(2) {
    animation: cardFade 1.4s ease-in-out 0.25s forwards;
}

.pathways-expand .expand-wrapper.is-visible .expand-card:nth-child(3) {
    animation: cardFade 1.4s ease-in-out 0.5s forwards;
}

/* .pathways-expand .expand-card .expand-card-with-hover {
    display: none !important;
} */

.pathways-expand .expand-card.active .expand-card-with-hover {
    display: block !important;
}

@keyframes cardFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.pathways-expand .expand-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.pathways-expand .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 28px 28px 30px 28px;
    color: #fff;
    transition: background 0.6s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
}

.pathways-expand .expand-card:nth-child(1) .card-content {
    background: linear-gradient(180deg, rgba(35, 86, 165, 0) 39.48%, rgba(35, 86, 165, 0.4) 59.05%);
}

.pathways-expand .expand-card:nth-child(2) .card-content {
    background: linear-gradient(181.82deg, rgba(225, 86, 37, 0) 48.25%, #E15625 98.59%);
}

.pathways-expand .expand-card:nth-child(3) .card-content {
    background: linear-gradient(180deg, rgba(37, 108, 145, 0) 48.19%, #256C91 100%);
}

.pathways-expand .card-content h4 {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 22px;
    line-height: 31px;
    color: #FFFFFF;
    margin-bottom: 0;
    width: min(100%, 360px);
    max-width: 360px;
}

.pathways-expand .card-content p {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s cubic-bezier(.25, .8, .25, 1) 0.2s;
    width: min(100%, 360px);
    max-width: 360px;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 0;
}

/* Show description text only after JS marks text-open */

.pathways-expand .expand-card.text-open .card-content p {
    opacity: 1;
    transform: translateY(0);
}

.pathways-expand .pathways-note {
    padding: 30px;
    border: 1px solid #EA6A38;
    border-radius: 15px;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #464646;
    margin-top: 25px;
    transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.pathways-expand .pathways-note:hover {
    background-color: #EA6A38;
    color: #FFFFFF;
}

/* ================= Services ================= */

#services {
    padding: 80px 0;
}

#services .container,
.services-section .container {
    display: flex;
    gap: 17px;
    padding: 0;
}

#services .services-left,
.services-section .services-left {
    width: 50%;
    position: sticky;
    top: 75px;
    height: 89vh;
    overflow: hidden;
    flex-shrink: 0;
    z-index: 100;
}

#services .services-left-img,
.services-section .services-left-img {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

#services .services-left-img img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    display: block;
}

.services-section .services-left-img img {
    width: 100%;
    /* height: 485px; */
    object-fit: cover;
    display: block;
}

#services .services-left-img::after,
.services-section .services-left-img::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: linear-gradient(179.39deg, rgba(35, 86, 165, 0.1) 39.56%, #2356a5 63.7%);
    z-index: 1;
}

#services .srv-title-overlay,
.services-section .srv-title-overlay {
    position: relative;
    z-index: 2;
    padding: 0 40px;
    margin-top: -60px;
}

.services-section .srv-title-overlay {
    margin-top: -180px;
}

#services .srv-title-overlay h2,
.services-section .srv-title-overlay h2 {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 15px;
}

.services-section .srv-title-overlay h2 {
    margin-bottom: 45px;
}

#services .srv-title-overlay h2 span .anim-char,
.services-section .srv-title-overlay h2 span .anim-char {
    background: linear-gradient(89.99deg, #fff 0.01%, #fff 63.67%) text !important;
}

#services .srv-title-overlay p,
.services-section .srv-title-overlay p {
    color: #fff;
    margin-bottom: 65px;
}

#services .srv-progress-bar,
.services-section .srv-progress-bar {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    z-index: 3;
    margin: 0 40px;
    display: flex;
    gap: 6px;
    align-items: center;
}

#services .srv-progress-fill,
.services-section .srv-progress-fill {
    display: none;
}

#services .srv-progress-segment,
.services-section .srv-progress-segment {
    flex: 1;
    height: 2px;
    background: #093A85;
    position: relative;
}

#services .srv-progress-fill-bar,
.services-section .srv-progress-fill-bar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    width: 0%;
    background: #fff;
}

#services .services-right,
.services-section .services-right {
    width: 50%;
}

#services .service-item,
.services-section .service-item {
    position: sticky;
    top: 75px;
    /* height: 89vh; */
    overflow: hidden;
}

#services .service-inner,
.services-section .service-inner {
    width: 100%;
    height: 89vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(99.61deg, #fff7f4 2.2%, #eff5ff 96.03%);
    border-radius: 15px;
    position: relative;
}

/* ── service card reveal animation (mirrors ICP .card.in-view pattern) ── */

/* image area: fades in from above (like .card-top) */

#services .service-top-right-main,
.services-section .service-top-right-main {
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0.05s;
    position: absolute;
    right: 0;
    top: 0;
}

/* in-view: reveal all children */

#services .service-item.in-view .service-top-right-main,
.services-section .service-item.in-view .service-top-right-main {
    opacity: 1;
    transform: translateY(0);
}

#services .service-item.in-view .service-name,
.services-section .service-item.in-view .service-name {
    opacity: 1;
    transform: translateY(0);
}

#services .service-item.in-view .service-desc,
.services-section .service-item.in-view .service-desc {
    opacity: 1;
    transform: translateY(0);
}

#services .service-item.in-view .service-button,
.services-section .service-item.in-view .service-button {
    opacity: 1;
    transform: translateY(0);
}

/* ── end service card reveal animation ── */

#services .service-right-img,
.services-section .service-right-img {
    /* position: absolute;
    top: -293px;
    right: -60px; */
}

#services .service-right-img img {
    width: 280px;
}

.services-section .service-right-img img {
    width: 200px;
}

#services .service-right-icon,
.services-section .service-right-icon {
    position: absolute;
    top: 60px;
    right: 90px;
}

#services .service-right-icon img,
.services-section .service-right-icon img {
    width: 40px;
}

#services .service-name,
.services-section .service-name {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    color: #2356A5;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0.1s;
    margin-bottom: 13px;
}

.services-section .service-name {
    color: #E15625;
}

.services-section .service-icon-img img {
    width: 45px;
    margin-bottom: 25px;
}

#services .service-desc,
.services-section .service-desc {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #464646;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0.2s;
    margin-bottom: 40px;
}

#services .service-button,
.services-section .service-button {
    background: #2356A5;
    border: 3px solid #FF794A;
    border-radius: 35px;
    padding: 14px 28px;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
    width: fit-content;
    text-decoration: none;
    transition: all 0.5s ease-in-out, opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0s, 0.3s, 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transform: translateY(15px);
}

#services .service-button:hover::after,
.services-section .service-button:hover::after {
    width: 100%;
}

#services .service-button::after,
.services-section .service-button::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: #FF794A;
    /*border: 3px solid rgb(35, 86, 165);*/
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

#services .service-button:hover,
.services-section .service-button:hover {
    border: 3px solid #2356A5;
}

/* ================= Journey ================= */

.journey-section .container {
    padding: 50px 0 15px;
    background: linear-gradient(99.61deg, #FFF7F4 2.2%, #EFF5FF 96.03%);
    border-radius: 15px;
}

.journey-section .journey-title {
    text-align: center;
}

.journey-section .description {
    text-align: center;
    max-width: 750px;
    margin: 15px auto 0px;
}

.journey-section .journey-wrapper {
    position: relative;
    margin-top: 20px;
    padding: 0 35px;
}

.journey-section .journey-svg {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1;
    pointer-events: none;
}

.journey-section .journey-svg line {
    z-index: 1;
}

.journey-section .journey-card {
    height: 100%;
    border: 1px solid #FF794A;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.journey-section .journey-card.show {
    opacity: 1;
}

.journey-section .journey-icon {
    width: 70px;
    height: 70px;
    background: #FFFFFF;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.4s ease;
}

.journey-section .journey-icon.show {
    opacity: 1;
    transform: scale(1);
}

.journey-section .journey-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.journey-section .phase {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #EA6A38;
    margin-bottom: 5px;
}

.journey-section .card-title-text {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #2356A5;
    margin-bottom: 10px;
}

.journey-section .card-desc {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    color: #464646;
    margin-bottom: 14px;
}

.journey-section .outcomes {
    min-height: 75px;
    margin-top: auto;
}

.journey-section .outcomes-label {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    color: #2356A5;
    margin-bottom: 4px;
}

.journey-section .outcomes-text {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    color: #464646;
}

.journey-section .arrow-circle {
    position: absolute;
    top: 50px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: #EA6A38;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.journey-section .arrow-circle i {
    font-size: 20px;
    color: #fff;
}

.journey-section .arrow-circle.show {
    opacity: 1;
    transform: scale(1);
}

.journey-section .col:last-child .arrow-circle {
    display: none;
}

/* ================= Modal ================= */

.model-section {
    padding-top: 50px;
    background: linear-gradient(99.61deg, #FFF7F4 2.2%, #EFF5FF 96.03%);
}

.model-section .model-title {
    text-align: center;
    margin-bottom: 20px;
}

.model-section p.description {
    text-align: center;
    margin-bottom: 70px;
}

.model-section p.description b {
    color: #E15625;
}

.model-section .compare-card {
    background: #FFFFFF;
    border-radius: 15px 0px 0px 15px;
    padding: 60px 40px 40px;
    position: relative;
    /* overflow: hidden; */
    height: 100%;
}

.model-section .col-lg-6:nth-child(2) .compare-card {
    border-radius: 0px 15px 15px 0px;
}

.model-section .card-tab {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-40%);
    padding: 15px 30px;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    border-radius: 0px 15px;
    text-align: center;
}

.model-section .tab-structured {
    background: #EA6A38;
}

.model-section .tab-informal {
    background: #256C91;
}

.model-section .compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.model-section .compare-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    padding-left: 30px;
    opacity: 0;
    transform: translateX(-20px);
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #464646;
    display: flex;
    gap: 15px;
}

.model-section .compare-list li img {
    width: 12px;
    height: 12px;
    margin-top: 6px;
    object-fit: contain;
}

.model-section.is-visible .compare-list li {
    animation: slideIn 0.5s ease forwards;
}

.model-section .compare-list li:last-child {
    border-bottom: none;
}

.model-section .compare-list li:nth-child(1) {
    animation-delay: 0s;
}

.model-section .compare-list li:nth-child(2) {
    animation-delay: 0.18s;
}

.model-section .compare-list li:nth-child(3) {
    animation-delay: 0.36s;
}

.model-section .compare-list li:nth-child(4) {
    animation-delay: 0.54s;
}

.model-section .compare-list li:nth-child(5) {
    animation-delay: 0.72s;
}

.model-section .compare-list li:nth-child(6) {
    animation-delay: 0.90s;
}

.model-section .compare-list li:nth-child(7) {
    animation-delay: 1.08s;
}

.model-section .compare-list li:nth-child(8) {
    animation-delay: 1.26s;
}

/* Keyframe animation */

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.model-section .position-section {
    margin-top: 20px;
}

.model-section .position-section .description {
    text-align: left !important;
    margin-top: 15px;
    margin-bottom: 40px !important;
}

.model-section .position-section .highlight-box {
    background: #2356A5;
    border-radius: 0px 15px;
    color: #fff;
    padding: 25px 30px;
    max-width: 450px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
    display: flex;
    gap: 15px;
}

.model-section .position-section .highlight-box img {
    width: 30px;
    height: 40px !important;
}

.model-section .position-section .position-right {
    position: relative;
    /* text-align: right; */
}

.model-section .position-section .position-right img {
    max-width: 100%;
    height: 500px;
    position: relative;
    z-index: 2;
    /* margin-bottom: -50px; */
}

.model-section .position-section .point {
    position: absolute;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 190px;
    opacity: 0;
    transform: translateY(25px);
    text-align: left;
    z-index: 9;
}

.model-section.is-visible .position-section.is-visible .point.one {
    animation: fadeUp 0.8s 0.3s ease forwards;
}

.model-section.is-visible .position-section.is-visible .point.two {
    animation: fadeUp 0.8s 0.6s ease forwards;
}

.model-section.is-visible .position-section.is-visible .point.three {
    animation: fadeUp 0.8s 0.9s ease forwards;
}

.model-section .position-section .point.one {
    top: 34%;
    left: 14%;
}

.model-section .position-section .point.two {
    top: 62%;
    left: 5%;
}

.model-section .position-section .point.three {
    bottom: 0%;
    left: 9%;
}

.model-section .position-section .x-circle {
    width: 80px;
    height: 40px;
    border-radius: 50%;
    color: #f05a28;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.25);
}

.model-section .position-section .point.two .x-circle {
    width: 60px;
}

.model-section .position-section .point-text {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #464646;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.model-section .position-section .details {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.model-section .position-section.is-visible .details {
    opacity: 1;
    transform: translateY(0);
}

.model-section .position-section.is-visible .details:nth-child(1) {
    transition-delay: 0s;
}

.model-section .position-section.is-visible .details:nth-child(2) {
    transition-delay: 0.15s;
}

.model-section .position-section.is-visible .details:nth-child(3) {
    transition-delay: 0.3s;
}

.model-section .position-section .details:last-child {
    margin-bottom: 0;
}

.model-section .position-section .details .icon {
    width: 60px;
    height: 60px;
    padding: 15px;
    background: #FFFFFF;
    transition: background 0.3s ease;
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-section .position-section .details:hover .icon {
    background: #E15625;
}

.model-section .position-section .details .icon svg {
    width: 30px;
    height: 30px;
    border-radius: 0;
}

.model-section .position-section .details:hover .icon svg path {
    stroke: #fff;
}

.model-section .position-section .details .content {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #464646;
}

/* ================= Outcome ================= */

.outcome-section {
    /* padding: 100px 0; */
    margin-top: 30px;
    margin-bottom: 20px;
}

.outcome-section .outcome-wrapper {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    position: relative;
}

.outcome-section .outcome-left {
    width: 50%;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.outcome-section .outcome-box {
    padding: 50px;
    background: linear-gradient(99.61deg, #FFF7F4 2.2%, #EFF5FF 96.03%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100vh - 140px);
    box-sizing: border-box;
    overflow: auto;
}

.outcome-section .outcome-box .outcome-img {
    position: absolute;
    left: 0;
    top: 0;
}

.outcome-section .outcome-box .outcome-img img {
    width: 200px;
}

.outcome-section .outcome-title {
    margin-bottom: 20px;
}

.outcome-section .outcome-sub {
    margin-bottom: 50px !important;
}

.outcome-section .progress-container {
    height: 4px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    margin-bottom: 40px;
    position: absolute;
    bottom: 0;
    z-index: 9999;
    width: 81.5%;
    display: flex;
    gap: 6px;
    align-items: center;
}

.outcome-section .progress-fill {
    display: none;
}

.outcome-section .outcome-progress-segment {
    flex: 1;
    height: 2px;
    background: #B2B2B2;
    position: relative;
}

.outcome-section .outcome-progress-fill-bar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    width: 0%;
    background: #E15625;
}

.outcome-section .outcome-right {
    width: 50%;
}

.outcome-section .outcome-card {
    margin-bottom: 20px;
    position: relative;
}

.outcome-section .outcome-card .outcome-card-inner {
    padding: 30px;
    background: #2356A5;
    border-radius: 0px 15px 15px 15px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.outcome-section .outcome-card:nth-child(even) .outcome-card-inner {
    background-color: #FF794A;
}

.outcome-section .outcome-card:nth-child(even) .big-number {
    color: #EA6A38;
}

.outcome-section .outcome-card:last-child {
    margin-bottom: 0;
}

.outcome-section .outcome-card h4 {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.outcome-section .outcome-card p {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}

.outcome-section .big-number {
    position: absolute;
    right: 30px;
    bottom: -7px;
    height: 211px;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 208px;
    line-height: 252px;
    color: #1B4586;
}

/* ================= Partner ================= */

.partner-section {
    padding: 80px 0;
}

.partner-section .partner-box {
    background: linear-gradient(99.61deg, #FFF7F4 2.2%, #EFF5FF 96.03%);
    border-radius: 15px;
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
}

.partner-section .partner-right {
    position: absolute;
    top: 0;
    right: 0;
}

.partner-section .partner-right img {
    width: 300px;
}

.partner-section .partner-title {
    margin-bottom: 15px;
}

.partner-section p.description {
    max-width: 720px;
    margin-bottom: 30px;
}

.partner-section .partner-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.partner-section .partner-grid.swiper {
    overflow: visible;
}

.partner-section .partner-card {
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 15px 0px 15px 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    height: 120px;
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.partner-card {
    opacity: 0;
    transform: translateY(110%);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
    will-change: transform, opacity;
}

.partner-section.is-visible .partner-card {
    opacity: 1;
    transform: translateY(0%);
}

.partner-section.is-visible .partner-card:nth-child(1) {
    transition-delay: 0.1s;
}

.partner-section.is-visible .partner-card:nth-child(2) {
    transition-delay: 0.3s;
}

.partner-section.is-visible .partner-card:nth-child(3) {
    transition-delay: 0.5s;
}

.partner-section.is-visible .partner-card:nth-child(4) {
    transition-delay: 0.7s;
}

.partner-section.is-visible .partner-card:nth-child(5) {
    transition-delay: 0.9s;
}

.partner-section.is-visible .partner-card:nth-child(n+6) {
    transition-delay: 1.1s;
}

.partner-section.is-visible .partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.partner-section .partner-card img {
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    object-fit: contain;
}

.partner-section .partner-name {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    color: #575757;
}

.partner-section .partner-grid {
    display: block !important;
}

.partner-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
}

.partner-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #D9D9D9;
    opacity: 1;
    border-radius: 999px;
    transition: background 0.3s ease, width 0.3s ease;
}

.partner-pagination .swiper-pagination-bullet-active {
    background: #E15625;
    width: 22px;
}

/* ================= Social ================= */

.social-section {
    padding: 50px 0;
    background: linear-gradient(99.61deg, #FFF7F4 2.2%, #EFF5FF 96.03%);
    position: relative;
}

.social-section .social-title {
    margin-bottom: 20px;
}

.social-section p.description {
    max-width: 480px;
    margin-bottom: 30px;
}

.social-section .social-icons {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 9;
}

.social-section .social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1.5px solid #FF794A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF794A;
    text-decoration: none;
    font-size: 18px;
    transition: all .3s ease;
}

.social-section .social-icons a:hover {
    background: #FF794A;
    color: #fff;
    transform: translateY(-4px);
}

.social-section .social-image {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    height: 100%;
}

.social-section .social-image-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
}

.social-section .social-image img {
    max-width: 100%;
    height: 430px;
    display: block;
    object-fit: contain;
}


/* ================================
    ============ ICP ============
=================================== */

.icp-career-hero {
    margin-top: 70px;
}

.icp-career-hero .container {
    padding-top: 60px;
}

.icp-career-hero .hero-content h1 {
    font-size: 36px !important;
    line-height: 50px !important;
    margin-bottom: 10px !important;
}

.icp-career-hero img {
    height: 390px !important;
    object-fit: contain;
    margin-top: -130px;
}

.students-section {
    margin-bottom: 45px;
}

.students-section .students-box {
    background: #F6F6F6;
    border-radius: 15px;
    padding: 40px 50px;
}

.students-section .students-title {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #2356A5;
    margin-bottom: 20px;
}

.students-section .students-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 35px;
}

.students-section .students-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    color: #464646;
}

.pathways-section .pathways-label {
    width: fit-content;
    padding: 15px 30px;
    background: #2356A5;
    border-radius: 15px 15px 0px 0px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}

.pathways-section .tab-wrapper {
    background: linear-gradient(99.61deg, #FFF7F4 2.2%, #EFF5FF 96.03%);
    border: 1px solid #DBDBDB;
    border-radius: 15px;
    padding: 17px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 50px auto;
}

.pathways-section .tab-item {
    flex: 1;
    text-align: center;
    cursor: pointer;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #2356A5;
    transition: .3s;
}

.pathways-section .tab-item.active {
    color: #E15625;
    font-weight: 600;
}

.pathways-section .tab-content {
    margin: 0 40px;
}

.pathways-section .tab-content h2 {
    margin-bottom: 20px;
}

.pathways-section .tab-pane {
    display: none;
    animation: fade .4s ease;
}

.pathways-section .tab-pane.active {
    display: block;
}

.pathways-section .tab-pane h3 {
    color: #f05a28;
    font-weight: 600;
}

.pathways-section .tab-pane h4 {
    color: #2f5aa8;
    font-weight: 600;
    margin-bottom: 15px;
}

.pathways-section .tab-pane p {
    color: #555;
    line-height: 1.6;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icp-services-section .service-right-img img {
    width: 190px !important;
}

.icp-services-section .service-name img {
    width: 30px;
    margin-right: 10px;
}

.icp-services-section .service-desc span {
    color: #EA6A38;
}

.icp-services-section .service-name {
    margin-bottom: 25px !important;
}

.icp-services-section .service-desc {
    margin-bottom: 15px !important;
}

.program-offer-section .container {
    background: linear-gradient(99.61deg, #FFF7F4 2.2%, #EFF5FF 96.03%);
    border-radius: 15px;
    padding-left: 80px;
}

.program-offer-section .program-wrapper {
    position: relative;
}

.program-offer-section .program-left {
    padding-right: 60px;
    z-index: 2;
    position: relative;
}

.program-offer-section .program-title {
    margin-bottom: 35px;
}

.program-offer-section .offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-offer-section .offer-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.program-offer-section .offer-icon {
    min-width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #E15625;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-offer-section .offer-icon i {
    color: #2356A5;
    font-size: 20px;
    margin-right: -2px;
}

.program-offer-section .offer-list li p.description {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #464646;
}

.program-offer-section .offer-list li p.description span {
    color: #EA6A38;
}

.program-offer-section .program-right {
    position: relative;
    height: 100%;
    text-align: right;
}

.program-offer-section .program-image {
    height: 560px;
    object-fit: contain;
    text-align: right;
    margin-right: -13px;
}

.program-circle {
    width: 130px;
    height: 130px;
    background: #2356A5;
    border-radius: 50%;
    padding: 10px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.program-circle .program-circle-border {
    width: 100%;
    height: 100%;
    border: 2px dashed #FFFFFF;
    border-radius: 50%;
    animation: borderSpin 15s linear infinite;
}

@keyframes borderSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===== ICP Horizontal Scroll (right side cards) ===== */

.icp-outcome-section .outcome-right {
    overflow: hidden;
}

.icp-cards-track {
    display: flex;
    flex-direction: row;
    gap: 20px;
    will-change: transform;
}

.icp-outcome-section .outcome-card {
    flex-shrink: 0;
    width: 100%;
    margin-bottom: 0;
    background: #FF794A;
    justify-content: flex-start;
    padding-top: 36px;
}

.icp-outcome-section .outcome-card.icp-card-alt {
    background: #1B3A7A;
}

.icp-phase-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
    width: fit-content;
}

.icp-outcome-section .outcome-card h4 {
    font-size: clamp(20px, 2vw, 28px);
    margin-bottom: 16px;
}

.icp-card-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 30px;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.icp-card-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
}

.icp-card-bg-icon {
    position: absolute;
    right: -10px;
    bottom: -20px;
    font-size: 180px;
    color: rgba(255, 255, 255, 0.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.icp-journey-section .container {
    height: 300px;
    background: linear-gradient(99.61deg, #FFF7F4 2.2%, #EFF5FF 96.03%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icp-journey-section h2 {
    text-align: center;
}

.icp-journey-section p {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #EA6A38;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0;
}

.certification-section {
    margin: 40px 0;
}

.certification-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.certification-section p.description {
    text-align: center;
}

.certification-section .cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 50px;
}

.certification-section .cert-card {
    padding: 18px;
    background: #FFFFFF;
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.certification-section .cert-img {
    width: 130px;
    height: 130px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.certification-section .cert-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certification-section .cert-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 30px;
    background: #FF794A;
    border-radius: 15px 0px;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-section .cert-number.one {
    background: #FF794A;
}

.certification-section .cert-number.two {
    background: #FFB805;
}

.certification-section .cert-number.three {
    background: #00AF55;
}

.certification-section .cert-number.four {
    background: #2356A5;
}

.certification-section .cert-card h5 {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 17px;
    line-height: 24px;
    color: #2356A5;
    margin-bottom: 10px;
}

.certification-section .cert-card p {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #464646;
    margin-bottom: 0;
}

.certification-section p.cert-footnote {
    padding: 35px 0;
    border-bottom: 1px solid #575757;
}

.program-clarity {}

.program-clarity h2 {
    text-align: center;
    margin-bottom: 30px;
}

.program-clarity .program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.program-card {
    padding: 40px;
    position: relative;
    overflow: hidden;
    min-height: 530px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.program-card.left {
    background: #FFF7F4;
}

.program-card.left img.left-clarity {
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
}

.program-card.right {
    background: linear-gradient(99.61deg, #FFF7F4 2.2%, #EFF5FF 96.03%);
    border-radius: 15px;
}

.program-card.right img.right-clarity {
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.card-header h5 {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 22px;
    line-height: 31px;
    color: #2356A5;
    margin-bottom: 0;
}

.icon img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.program-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-list li {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #464646;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.program-list li img {
    width: 20px;
    height: 20px;
}

#backToTopBtn {
    position: fixed;
    bottom: 55px;
    right: 20px;
    cursor: pointer;
    display: none;
}

#backToTopBtn div {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#backToTopBtn button {
    /* padding: 12px 20px; */
    width: 40px;
    height: 40px;
    background: #FF794A;
    border: 3px solid #FF794A;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    line-height: 28px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease, border-color 0.4s ease;
}

#backToTopBtn p {
    font-size: 14px;
    color: #FF794A;
    margin-bottom: 0;
    margin-top: 5px;
}

#backToTopBtn.scrolled-90 p {
    color: #FF794A;
}

@media(max-width:991px) {
    .program-offer-section {
        padding: 70px 30px;
    }

    .program-offer-section .program-wrapper {
        display: flex;
        flex-direction: column;
    }

    .program-offer-section .program-left {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .program-offer-section .program-right {
        position: relative;
        height: 450px;
    }
}

@media(max-width:576px) {
    .program-offer-section {
        margin: 20px;
        padding: 50px 20px;
    }
}

@media(max-width:768px) {
    .pathways-section .tab-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .pathways-section .tab-item {
        padding: 12px;
    }
}

@media (min-width: 1600px) {
    .services-section .services-left-img-inner {
        height: 70%;
    }

    .services-section .services-left-img img {
        /* height: 91% !important; */
    }

    .services-section:not(#services) .services-left-img-inner {
        height: 83%;
    }
}

@media (min-width: 1501px) and (max-width: 1600px) {
    .services-section .services-left-img-inner {
        height: 65%;
    }

    .services-section:not(#services) .services-left-img-inner {
        height: 83%;
    }

    .services-section:not(#services) .services-left-img-inner img {
        /* height: 100%; */
    }
}

@media (min-width: 1400px) and (max-width: 1500px) {
    .services-section .services-left-img-inner {
        height: 72%;
    }

    #services .services-left-img img {
        /* height: 345px; */
        height: 100%;
    }

    .services-section:not(#services) .services-left-img-inner {
        height: 80%;
    }

    .services-section:not(#services) .services-left-img-inner img {
        /* height: 100%; */
    }

    .services-section .services-left-img img {
        /* height: 420px; */
    }

    #services .srv-title-overlay p,
    .services-section .srv-title-overlay p {
        margin-bottom: 55px;
    }
}

@media (min-width: 1201px) and (max-width: 1399px) {
    .services-section .services-left-img-inner {
        height: 70%;
    }

    #services .services-left-img img {
        /* height: 360px; */
        height: 500px;
    }

    #services .srv-title-overlay p,
    .services-section .srv-title-overlay p {
        margin-bottom: 50px;
    }

    .services-section:not(#services) .services-left-img-inner {
        height: 80%;
    }

    .model-section .position-section .position-right img {
        height: 500px;
    }

    .model-section .position-section .point.one {
        left: 13%;
    }

    .model-section .position-section .point.two {
        top: 65%;
        left: 6%;
    }

    .model-section .position-section .point.three {
        left: 12%;
        bottom: -30px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .services-section .services-left-img-inner {
        height: 65%;
    }

    #services .services-left-img img {
        height: 100%;
    }

    #services .srv-title-overlay p,
    .services-section .srv-title-overlay p {
        margin-bottom: 35px;
    }

    .services-section:not(#services) .services-left-img-inner {
        height: 80%;
    }

    .model-section .position-section .point.one {
        left: 13%;
    }

    .model-section .position-section .point.two {
        top: 65%;
        left: 6%;
    }

    .model-section .position-section .point.three {
        left: 12%;
        bottom: -30px;
    }

    .model-section .position-section .position-right img {
        height: 380px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .model-section .position-section .point.one {
        left: 30%;
    }

    .model-section .position-section .point.two {
        left: 21%;
    }

    .model-section .position-section .point.three {
        left: 26%;
    }
}

/* ================= Small desktop ================= */

@media (min-width: 1200px) {
    .container {
        max-width: 1130px;
    }
}

@media(max-width:1200px) {

    /* ================= Modal ================= */
    .model-section .position-section .x-circle {
        width: 70px;
        height: 40px;
    }

    .model-section .position-section .point.two .x-circle {
        width: 50px;
    }

    /* ================= Partner ================= */
    .partner-section .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .model-section .card-tab {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .partner-pagination {
        display: none;
    }
}

@media (max-width: 1024px) {

    /* ================= Services ================= */
    #services {
        padding: 50px 0;
    }

    #services .container,
    .services-section .container,
    .outcome-section .outcome-wrapper {
        flex-direction: column;
    }

    #services .services-left,
    .services-section .services-left {
        width: 100%;
        height: 100%;
        position: relative;
        top: auto;
    }

    #services .services-right,
    .services-section .services-right,
    .outcome-section .outcome-left,
    .outcome-section .outcome-right {
        width: 100%;
    }

    .outcome-section .outcome-box {
        height: auto;
    }

    /* Outcome cards sticky stacking < 1025px */
    .outcome-section .outcome-right .outcome-card {
        position: sticky;
        top: 75px;
    }

    .outcome-section .outcome-right .outcome-card:nth-child(1) {
        z-index: 1;
    }

    .outcome-section .outcome-right .outcome-card:nth-child(2) {
        z-index: 2;
    }

    .outcome-section .outcome-right .outcome-card:nth-child(3) {
        z-index: 3;
    }

    .outcome-section .outcome-right .outcome-card:nth-child(4) {
        z-index: 4;
    }

    .outcome-section .outcome-right .outcome-card:nth-child(5) {
        z-index: 5;
    }

    #services .srv-progress-bar,
    .services-section .srv-progress-bar {
        bottom: 30px;
    }

    #services .service-inner,
    .services-section .service-inner {
        height: auto;
        padding: 50px 30px;
    }

    #services .service-right-img img,
    .services-section .service-right-img img {
        width: 230px;
    }

    #services .service-right-icon,
    .services-section .service-right-icon {
        position: absolute;
        top: 50px;
        right: 70px;
    }

    #services .service-right-icon img,
    .services-section .service-right-icon img {
        width: 30px;
    }

    #services .services-left-img .services-left-img-inner,
    .services-section .services-left-img .services-left-img-inner {
        height: 530px;
    }

    #services .services-left-img img,
    .services-section .services-left-img img {
        /* height: 820px; */
    }

    #services .srv-progress-bar,
    .outcome-section .progress-container,
    .services-section .srv-progress-bar {
        display: none;
    }

    .outcome-section .outcome-sub {
        margin-bottom: 0px !important;
    }

    .outcome-section .outcome-left {
        position: relative;
        top: 0;
    }
}

/* ================= TABLET ================= */

@media (min-width: 991px) and (max-width: 1200px) {
    .outcome-section .big-number {
        height: 186px;
        font-size: 140px;
    }

    .services-section .services-left-img img {
        /* height: 1030px; */
    }

    .services-section .srv-title-overlay {
        margin-top: -237px;
    }

    .services-section .srv-title-overlay h2 {
        font-size: 45px;
        line-height: 60px;
    }

    .model-section .card-tab {
        padding: 15px 24px;
        font-size: 14px;
    }

    .outcome-section .progress-container {
        width: 78%;
    }
}

@media (max-width: 991px) {

    /* ================= Hero ================= */
    .career-hero {
        padding: 10px;
        margin: 0px;
    }

    .career-hero .container {
        padding: 40px 0px 40px 40px;
    }

    .career-hero .hero-content h1 {
        font-size: 26px;
        line-height: 40px;
        margin-bottom: 10px;
    }

    .career-hero .hero-content p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 25px;
    }

    .career-hero .hero-btn {
        padding: 10px 20px;
        font-size: 13px;
        line-height: 20px;
    }

    /* ================= Pathways ================= */
    .pathways-expand {
        padding: 40px 0;
    }

    .pathways-expand .expand-wrapper {
        height: 350px;
    }

    /* h2 {
        font-size: 26px;
        line-height: 40px;
    } */
    p.description {
        font-size: 14px;
        line-height: 20px;
    }

    .pathways-expand .card-content {
        padding: 15px;
    }

    .pathways-expand .card-content h4 {
        font-size: 18px;
        line-height: 24px;
    }

    .pathways-expand .card-content p {
        font-size: 14px;
        line-height: 20px;
    }

    .pathways-expand .card-content h4 {
        font-size: 16px !important;
        line-height: 22px !important;
    }

    .pathways-expand .card-content p {
        font-size: 13px !important;
        line-height: 22px !important;
    }

    .pathways-expand .card-content {
        padding: 15px 20px 15px 20px !important;
    }

    /* ================= Journey ================= */
    .journey-section .journey-svg {
        display: none;
    }

    .journey-section .arrow-circle {
        display: none;
    }

    .journey-section .journey-icon.show {
        opacity: 1;
        transform: scale(1);
    }

    .journey-section .journey-card.show {
        opacity: 1;
    }

    .journey-section .description {
        max-width: 460px;
        margin: 15px auto 10px;
    }

    .journey-section .journey-wrapper {
        margin-top: 20px;
    }

    /* ================= Modal ================= */
    .model-section .position-section h2 {
        text-align: center;
    }

    .model-section p.description {
        max-width: 550px;
    }

    .model-section .compare-card {
        border-radius: 15px !important;
    }

    .model-section .col-lg-6:nth-child(2) .compare-card {
        margin-top: 60px;
    }

    .model-section .position-section .highlight-box {
        max-width: 100%;
    }

    .model-section .position-section .description {
        text-align: center !important;
    }

    .model-section .position-section .position-right {
        text-align: center;
    }

    .model-section .position-section .position-right img {
        height: 370px;
    }

    .model-section .position-section .position-center {
        margin-bottom: 20px;
    }

    .model-section .position-section {
        padding: 70px 30px;
    }

    .model-section .position-section .point {
        font-size: 13px;
        max-width: 220px;
    }

    .outcome-section .big-number {
        height: 175px;
        font-size: 110px;
    }

    /* ================= Outcome ================= */
    .outcome-section .outcome-left {
        position: relative;
        top: 0;
    }

    .outcome-section .progress-container {
        width: 81%;
    }

    /* ================= Partner ================= */
    .partner-section .partner-box {
        padding: 60px 40px;
    }

    .partner-section .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ================= Social ================= */
    .social-section .social-section {
        padding: 70px 40px;
    }

    .social-section .social-title {
        text-align: left;
    }

    .social-section .social-image-wrapper {
        right: 0;
    }

    .social-section .social-image img {
        height: 320px;
    }

}

/* ================= MOBILE ================= */

@media (max-width: 767px) {
    .mobile#backToTopBtn {
        display: none !important;
    }

    #backToTopBtn {
        display: none;
    }

    #backToTopBtn.show {
        display: block;
    }

    .container {
        padding: 0px 10px;
    }

    body section {
        overflow-y: clip;
    }

    /* ================= Hero ================= */
    .career-hero .container {
        padding: 20px;
    }

    .career-hero .hero-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .career-hero .hero-content h1 {
        font-size: 22px;
        line-height: 34px;
    }

    .career-hero .hero-content p {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .career-hero .hero-btn {
        padding: 10px 18px;
        font-size: 12px;
        line-height: 18px;
    }

    /* ================= Pathways ================= */
    h2 {
        font-size: 22px;
        line-height: 34px;
        text-align: center;
        margin-bottom: 10px;
    }

    p.description {
        font-size: 13px;
        line-height: 18px;
        text-align: center;
    }

    .pathways-expand .section-head {
        margin-bottom: 20px;
    }

    .pathways-expand .expand-wrapper {
        flex-direction: column;
        height: auto;
    }

    .pathways-expand .expand-card {
        height: 280px;
        width: 100% !important;
        transition: none;
    }

    .pathways-expand .expand-card img {
        height: 280px;
        object-fit: cover;
    }

    .pathways-expand .card-content h4 {
        font-size: 17px;
        line-height: 22px;
    }

    .pathways-expand .card-content p {
        font-size: 13px;
        line-height: 18px;
    }

    .pathways-expand .expand-wrapper:hover .expand-card,
    .pathways-expand .expand-wrapper .expand-card:hover {
        flex: unset;
    }

    .pathways-expand .card-content p {
        opacity: 1;
        transform: none;
    }

    .pathways-expand .pathways-note {
        padding: 15px;
        font-size: 13px;
    }

    /* ================= Modal ================= */
    .model-section {
        padding-top: 25px;
        margin-bottom: 25px;
    }

    .model-section .card-tab {
        padding: 10px 25px;
        width: 60%;
        font-size: 12px;
        transform: translateX(-50%);
    }

    .model-section .compare-card {
        padding: 30px 25px 30px;
        height: auto;
    }

    .model-section .compare-list li {
        padding: 10px 0px;
        font-size: 13px;
    }

    .model-section .position-section .position-right {
        display: none;
    }

    .model-section .position-section {
        margin: 20px;
        margin-bottom: 25px;
        padding: 0;
    }

    .model-section .position-section .highlight-box {
        font-size: 12px;
    }

    /* ================= Outcome ================= */
    #services {
        padding: 25px 0;
    }

    #services .service-inner,
    .services-section .service-inner {
        padding: 40px 24px;
    }

    #services .service-name,
    .services-section .service-name {
        font-size: 18px;
        line-height: 26px;
    }

    #services .service-desc,
    .services-section .service-desc {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    #services .service-button,
    .services-section .service-button {
        padding: 10px 17px;
        font-size: 14px;
        line-height: 22px;
    }

    #services .service-right-img img,
    .services-section .service-right-img img {
        width: 125px;
    }

    #services .service-right-img,
    .services-section .service-right-img {
        top: -40px;
        right: -30px;
    }

    #services .service-right-icon,
    .services-section .service-right-icon {
        top: 25px;
        right: 35px;
    }

    #services .service-right-icon img,
    .services-section .service-right-icon img {
        width: 20px;
    }

    #services .service-item,
    .services-section .service-item {
        margin-bottom: 15px;
    }

    .services-section {
        margin: 0 10px;
    }

    /* ================= Outcome ================= */
    .outcome-section .outcome-wrapper {
        flex-direction: column;
    }

    .outcome-section .outcome-left {
        position: relative;
        top: 0;
    }

    .outcome-section .outcome-left,
    .outcome-section .outcome-right {
        width: 100%;
    }

    .outcome-section .outcome-box {
        height: auto;
        padding: 25px;
    }

    .outcome-section .outcome-sub {
        margin-bottom: 25px !important;
    }

    .outcome-section .progress-container {
        margin-bottom: 0;
    }

    .outcome-section .outcome-card .outcome-card-inner {
        min-height: 150px;
    }

    .outcome-section .outcome-card h4 {
        font-size: 16px;
    }

    .outcome-section .outcome-card p {
        font-size: 12px;
        width: 200px;
    }

    .outcome-section .outcome-card p br {
        display: none;
    }

    .outcome-section .big-number {
        bottom: 5px;
        height: 170px;
        font-size: 130px;
    }

    .outcome-section .progress-container {
        position: relative;
        width: 100%;
    }

    /* ================= Partner ================= */
    .partner-section {
        padding: 25px 0;
    }

    .partner-section p.description {
        margin-bottom: 20px !important;
    }

    .partner-section .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ================= Sevice Second ================= */
    #services .services-left-img .services-left-img-inner,
    .services-section .services-left-img .services-left-img-inner {
        /* height: 40vh; */
    }

    .services-section .service-icon-img img {
        margin-bottom: 15px;
    }

    /* ================= Social ================= */
    .social-section {
        padding: 30px 25px;
    }

    .social-section .social-image {
        margin-top: 0px;
        text-align: center;
    }

    .social-section .social-icons a {
        width: 35px;
        height: 35px;
    }

    .social-section .social-icons {
        justify-content: center;
        gap: 10px;
    }

    .social-section .social-title {
        text-align: center;
    }

    .social-section .social-image-wrapper {
        display: none;
    }

    #services .srv-title-overlay,
    .services-section .srv-title-overlay{
        padding: 0 20px;
    }

    #services .srv-title-overlay h2,
    .services-section .srv-title-overlay h2 {
        text-align: left;
    }
}

@media(max-width:576px) {

    /* ================= Partner ================= */
    .partner-section .partner-box {
        padding: 40px 25px;
    }

    .partner-section .partner-title {
        font-size: 24px;
    }

    .partner-section .partner-grid {
        grid-template-columns: 1fr;
    }

    #services .services-left-img .services-left-img-inner,
    .services-section .services-left-img .services-left-img-inner {
        height: 70vh;
    }

    #services .services-left-img img,
    .services-section .services-left-img img {
        height: 480px;
    }
}

@media (max-width: 440px) {

    #services .services-left-img .services-left-img-inner,
    .services-section .services-left-img .services-left-img-inner {
        height: 55vh;
    }

    #services .services-left-img img,
    .services-section .services-left-img img {
        height: 410px;
    }
}








/* ================= Image toggle card content ================= */

/*
.pathways-expand .card-content h4,
.pathways-expand .card-content p {
    -webkit-mask-image: linear-gradient(to right, #000 50%, transparent 50%);
    mask-image: linear-gradient(to right, #000 50%, transparent 50%);
    -webkit-mask-size: 200% 100%;
    mask-size: 200% 100%;
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
    transition: none;
}

.pathways-expand .expand-card.active .card-content h4,
.pathways-expand .expand-card.active .card-content p {
    animation: revealTextSlower 4s linear forwards;
}

.pathways-expand .expand-card.active .card-content h4,.pathways-expand .expand-card.active .card-content p {
    animation-duration: 2.5s;
    animation-delay: 0.3s;
}

.pathways-expand .card-content {
    overflow: hidden;
}

.pathways-expand .expand-card.active .card-content {
    min-width: 440px;
}

@keyframes revealTextSlower {
    from {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
    to {
        -webkit-mask-position: 0% 0;
        mask-position: 0% 0;
    }
}

@keyframes mobilePopUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

/* =================End Image toggle card content ================= */

/* ================= Pathways Expand Cards ================= */

.pathways-expand .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 28px 24px 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
    /* transition: background 0.4s ease; */
    transition: flex 0.5s ease 0.3s;
}

.pathways-expand .card-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 31px;
    color: #FFFFFF;
    margin-bottom: 10px;
    width: min(100%, 360px);
    max-width: 360px;
    white-space: normal;
    overflow: hidden;
    text-overflow: initial;
    transform: translateY(6px);
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

.pathways-expand .expand-card.active .card-content h4 {
    transform: translateY(0);
}

.pathways-expand .card-content p {
    width: min(100%, 360px);
    max-width: 360px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #FFFFFF;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

/* Pathways card text system based on expandable-cards reference */

.pathways-expand .card-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    padding: 4px 12px;
    margin-bottom: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
    width: fit-content;
}

.pathways-expand .card-desc-wrap,
.pathways-expand .card-arrow-wrap {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.95s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pathways-expand .card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-top: 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transition: opacity 0.45s ease;
}

.pathways-expand .expand-card.text-open .card-content p {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease 0.2s, transform 0.55s ease 0.2s;
}

.pathways-expand .expand-card.text-open .card-tag {
    opacity: 1;
}

.pathways-expand .expand-card.text-open .card-desc-wrap {
    max-height: 180px;
}

.pathways-expand .expand-card.text-open .card-arrow-wrap {
    max-height: 52px;
}

.pathways-expand .expand-card.text-open .card-arrow {
    opacity: 1;
}

.pathways-expand .card-content .char {
    display: inline;
    opacity: 1;
    transform: none;
    transition: none;
    white-space: normal;
}

.pathways-expand .expand-card.active .card-content .char {
    opacity: 1;
    transform: none;
}

@media (max-width: 767px) {
    .pathways-expand .card-content h4 {
        white-space: normal;
        transform: none;
        margin-bottom: 0;
        opacity: 1;
    }

    .pathways-expand .card-content p {
        display: none !important;
    }

    .pathways-expand .card-desc-wrap {
        max-height: 0 !important;
        display: none !important;
    }

    .pathways-expand .card-arrow-wrap {
        max-height: 52px !important;
    }

    .pathways-expand .card-tag {
        opacity: 0 !important;
        display: none !important;
    }

    .pathways-expand .card-arrow {
        opacity: 1 !important;
        transition: none;
    }

    .pathways-expand .section-head p {
        text-align: center;
    }

    .pathways-expand .expand-card img {
        object-position: top;
    }

    .service-top-right-main,
    .partner-section .partner-right {
        display: none;
    }

    .model-section .position-section .details:last-child {
        margin-bottom: 25px;
    }
}

.pathways-expand .expand-card:nth-child(1) .card-content {
    background: linear-gradient(180deg, rgba(35, 86, 165, 0) 30%, rgba(35, 86, 165, 0.85) 100%);
}

.pathways-expand .expand-card:nth-child(2) .card-content {
    background: linear-gradient(180deg, rgba(225, 86, 37, 0) 30%, #E15625 100%);
}

.pathways-expand .expand-card:nth-child(3) .card-content {
    background: linear-gradient(180deg, rgba(37, 108, 145, 0) 30%, #256C91 100%);
}

/* ================= End Pathways Expand Cards ================= */


/* ==========================================
   Directional hover fill animation (bhv)
   ========================================== */

.bhv-enhanced {
    position: relative;
    overflow: hidden;
}

/* Disable old left-to-right fill */
.bhv-enhanced::after {
    display: none !important;
}

/* Radial fill layer — expands from cursor on hover */
.bhv-fill {
    position: absolute;
    inset: 0;
    background: #FF794A;
    border-radius: inherit;
    clip-path: circle(0% at 50% 50%);
    z-index: 1;
    pointer-events: none;
}

/* Keep button text above the fill */
.bhv-text {
    position: relative;
    z-index: 2;
}

/* ==========================================
   btn-pop: cp-arrow style hover animation
   ========================================== */

/* Allow arrow to escape service card once in-view */
#services .service-item.in-view,
.services-section .service-item.in-view {
    overflow: visible;
}

/* Make btn-pop overflow visible (arrow needs to escape button bounds) */
.career-hero .hero-btn.btn-pop,
#services .service-button.btn-pop,
.services-section .service-button.btn-pop {
    overflow: visible;
}

/* Switch fill animation from width to scaleX — no overflow:hidden needed */
.career-hero .hero-btn.btn-pop::after,
#services .service-button.btn-pop::after,
.services-section .service-button.btn-pop::after {
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-in-out;
}

.career-hero .hero-btn.btn-pop:hover::after,
#services .service-button.btn-pop:hover::after,
.services-section .service-button.btn-pop:hover::after {
    transform: scaleX(1);
}

/* Arrow element — positioned at button's top-right corner */
.career-hero .hero-btn.btn-pop::before,
#services .service-button.btn-pop::before,
.services-section .service-button.btn-pop::before {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #FF794A;
    border-radius: 0 35px 0 35px;
    color: #fff;
    font-size: 13px;
    z-index: 2;
    transition: transform 0.35s ease;
}

/* On hover: arrow slides outside the button (top-right) */
.career-hero .hero-btn.btn-pop:hover::before,
#services .service-button.btn-pop:hover::before,
.services-section .service-button.btn-pop:hover::before {
    transform: translate(12px, -12px);
}

@media (min-width: 1201px) and (max-height: 586px) {
    .services-section .services-left-img-inner {
        height: 63% !important;
    }

    #services .services-left-img img {
        height: 100% !important;
        object-position: top;
    }

    .services-section .srv-title-overlay {
        margin-top: 30px;
    }
}

@media (min-width: 1025px) and (max-height: 586px) {
    .services-section .services-left-img-inner {
        height: 58% !important;
    }

    #services .services-left-img img {
        height: 100% !important;
        object-position: top;
    }

    #services .services-left-img::after {
        background: linear-gradient(179.39deg, rgba(35, 86, 165, 0.1) 39.56%, #2356a5 58%);
    }

    .services-section .srv-title-overlay {
        margin-top: 15px;
    }

    #services .services-left-img-inner .tab {
        display: none;
    }
}

@media (min-width: 1024px) and (max-height: 586px) {
    #services .services-left-img-inner .tab {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1024px) and (max-height: 586px) {
    #services .services-left-img-inner .desktop {
        display: none;
    }

    #services .services-left-img-inner {
        height: 70vh !important;
    }

    .services-section .services-left-img-inner {
        height: 130vh !important;
    }

    .services-section .services-left-img::after {
        background: linear-gradient(179.39deg, rgba(35, 86, 165, 0.1) 39.56%, #2356a5 75.7%);
    }
}

@media (min-width: 992px) and (max-height: 586px) {
    #services .services-left-img img {
        height: 100% !important;
        object-position: top;
    }
}

@media (max-width: 991px) and (max-height: 586px) {
    #services .services-left-img-inner .tab {
        display: none;
    }
}

@media (max-width: 768px) {
    .outcome-section .outcome-box .outcome-img {
        display: none;
    }
}

/*!* =============================================*/
/*   PATHWAY COMPARISON TABLE*/
/*   ============================================= *!*/

/*.pathway-comparison {*/
/*    padding-top: 80px;*/
/*}*/

/*.pathway-comparison h2 {*/
/*    margin-bottom: 40px !important;*/
/*}*/

/*.pc-table-wrap {*/
/*    border-radius: 15px;*/
/*    overflow-x: auto;*/
/*    overflow-y: clip;*/
/*    border-bottom: 1px solid #B0B0B0;*/
/*}*/

/*.pc-table {*/
/*    width: 100%;*/
/*    border-collapse: separate;*/
/*    border-spacing: 0;*/
/*    min-width: 720px;*/
/*    font-family: 'Inter', sans-serif;*/
/*}*/

/*.pc-table thead tr {*/
/*    background: #2356A5;*/
/*}*/

/*.pc-table thead th {*/
/*    padding: 16px 18px;*/
/*    font-family: 'Inter';*/
/*    font-weight: 600;*/
/*    font-size: 14px;*/
/*    line-height: 27px;*/
/*    text-align: left;*/
/*    color: #FFFFFF;*/
/*}*/

/*.pc-table thead th:first-child {*/
/*    width: 160px;*/
/*    border-left: 1px solid #2356A5;*/
/*    border-top: 1px solid #2356A5;*/
/*    border-top-left-radius: 15px;*/
/*}*/

/*.pc-table thead th:last-child {*/
/*    border-right: 1px solid #2356A5;*/
/*    border-top: 1px solid #2356A5;*/
/*    border-top-right-radius: 15px;*/
/*}*/

/*.pc-table tbody tr {*/
/*    background: #fff;*/
/*}*/

/*.pc-table tbody tr.pc-row-alt {*/
/*    background: #EFF5FF;*/
/*}*/

/*.pc-table tbody td {*/
/*    padding: 14px 18px;*/
/*    font-family: 'Inter';*/
/*    font-weight: 400;*/
/*    font-size: 14px;*/
/*    line-height: 19px;*/
/*    color: #575757;*/
/*    vertical-align: top;*/
/*    border-right: 1px solid #B0B0B0;*/
/*}*/
/*.pc-table tbody td:first-child {*/
/*    border-left: 1px solid #B0B0B0;*/
/*}*/

/*.pc-table tbody tr:last-child td {*/
/*    border-bottom: 1px solid #B0B0B0;*/
/*}*/

/*.pc-table tbody tr:last-child td:first-child {*/
/*    border-bottom-left-radius: 15px;*/
/*}*/

/*.pc-table tbody tr:last-child td:last-child {*/
/*    border-bottom-right-radius: 15px;*/
/*}*/

/*.pc-table tbody tr.pc-row-alt td {*/
/*    !* border-left: none; *!*/
/*    border-right: none;*/
/*}*/

/*.pc-table tbody tr.pc-row-alt td:last-child{*/
/*    border-right: 1px solid #B0B0B0;*/
/*}*/
/*@media (max-width: 767px) {*/
/*    .pathway-comparison {*/
/*        padding: 48px 0;*/
/*    }*/

/*    .pc-table-wrap {*/
/*        border-radius: 15px;*/
/*    }*/

/*    .pc-table thead th,*/
/*    .pc-table tbody td {*/
/*        padding: 12px 14px;*/
/*        font-size: 13px;*/
/*    }*/

/*    .pc-table thead th:first-child,*/
/*    .pc-td-dim,*/
/*    .pc-th-dim {*/
/*        width: 120px;*/
/*    }*/
/*}*/
