@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');

/* ================= SCROLL ANIMATIONS ================= */

@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);
}

.scroll-animate.fade-in {
    transform: none;
    transition: none !important;
}

.scroll-animate.fade-in.is-visible {
    animation: sa-fade-in 1.1s ease forwards;
}

.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;
}

.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;
}


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;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1130px;
    }
}

/* 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;
}

h1 {
    font-family: 'Playfair Display';
    font-weight: 600;
    font-size: 36px;
    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;
}

h1 span {
    background: #256C91;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

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;
}

#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 (min-width: 768px) {
    .mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile#backToTopBtn {
        display: none !important;
    }

    #backToTopBtn {
        display: none;
    }

    #backToTopBtn.show {
        display: block;
    }

    .desktop {
        display: none;
    }

    .container {
        padding: 0 15px;
    }

    h2 {
        font-size: 22px;
        line-height: 30px;
        text-align: center;
        margin-bottom: 10px;
    }

    p.description {
        font-size: 13px;
        line-height: 18px;
    }
}

.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-image img {
    width: 100%;
    height: auto;
}

.icp-career-hero {
    margin-top: 70px;
}

.icp-career-hero .container {
    padding-top: 60px;
}

.icp-career-hero img {
    height: 390px !important;
    object-fit: contain;
    margin-top: -130px;
}

@media (min-width: 992px) and (max-width: 1200px) {

    .icp-career-hero img {
        margin-top: -74px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .icp-career-hero .hero-content h1 {
        font-size: 27px !important;
        line-height: 40px !important;
    }

    .career-hero .container {
        padding: 40px 0px 0px 40px !important;
    }

    .icp-career-hero img {
        margin-top: -75px;
    }
}

@media (max-width: 767px) {
    .icp-career-hero {
        margin-top: 0;
    }

    .icp-career-hero .container {
        padding: 25px !important;
    }

    .icp-career-hero .hero-content h1 {
        font-size: 23px !important;
        line-height: 34px !important;
    }

    .icp-career-hero img {
        height: 280px !important;
        margin-top: 0;
    }

    .icp-career-hero .hero-content {
        margin-bottom: 0;
    }
}

.icp-hover-outer {
    display: inline-block;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
    width: fit-content;
}

.icp-hover-outer .cf-submit {
    position: relative;
    z-index: 1;
    background: transparent;
    margin: 0;
    color: #fff;
}

.icp-hover-outer .cf-submit span {
    position: relative;
    z-index: 2;
    color: #fff;
}

.icp-hover-fill {
    position: absolute;
    inset: 0;
    clip-path: circle(0px at 50% 50%);
    pointer-events: none;
}

/* =============================================
   INDICATIVE COST SECTION
   ============================================= */

.cost-section {
    margin: 50px 0;
}

.cost-section h2 {
    margin-bottom: 15px;
}

.cost-section .description {
    margin-bottom: 40px;
}

.cost-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.cost-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cost-acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border: 0;
    border-radius: 15px 15px 15px 0px;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    transition: border-radius 0.3s ease;
}

.cost-acc-header i {
    flex-shrink: 0;
    font-size: 14px;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.cost-accordion.is-open .cost-acc-header i {
    transform: rotate(180deg);
}

.cost-orange .cost-acc-header {
    background: #FF794A;
}

.cost-blue .cost-acc-header {
    background: #2356A5;
}

.cost-acc-body {
    overflow: hidden;
    height: 0;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cost-acc-inner {
    height: 100%;
    padding: 20px 24px 24px;
}

.cost-orange {
    background: #FFECE5;
    border-radius: 15px 15px 15px 0px;
}

.cost-blue {
    background: #DDEAFF;
    border-radius: 15px 15px 15px 0px;
}

.cost-acc-inner {
    font-family: 'Inter';
    font-weight: 400;
    color: #464646;
}

.cost-acc-inner p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 10px;
}

.cost-acc-inner p:last-child {
    margin-bottom: 0;
}

.cost-list-label {
    font-size: 14px;
    line-height: 22px;
}

.cost-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.cost-list li {
    font-size: 14px;
    line-height: 22px;
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}

.cost-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.95898 4.95703H12.0423V12.0404' stroke='%23FF794A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.95898 12.0404L12.0423 4.95703' stroke='%23FF794A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.cost-blue .cost-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.95898 4.95703H12.0423V12.0404' stroke='%232356A5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.95898 12.0404L12.0423 4.95703' stroke='%232356A5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (max-width: 767px) {
    .cost-grid {
        display: flex;
        flex-direction: column;
    }

    /* Flatten columns so all accordions are siblings, then interleave by pair */
    .cost-col {
        display: contents;
    }

    .cost-col[data-col="left"] .cost-accordion[data-pair="0"] {
        order: 1;
    }

    .cost-col[data-col="right"] .cost-accordion[data-pair="0"] {
        order: 2;
    }

    .cost-col[data-col="left"] .cost-accordion[data-pair="1"] {
        order: 3;
    }

    .cost-col[data-col="right"] .cost-accordion[data-pair="1"] {
        order: 4;
    }

    .cost-col[data-col="left"] .cost-accordion[data-pair="2"] {
        order: 5;
    }

    .cost-col[data-col="right"] .cost-accordion[data-pair="2"] {
        order: 6;
    }

    .cost-col[data-col="left"] .cost-accordion[data-pair="0"] {
        background: #DDEAFF;
    }

    .cost-col[data-col="left"] .cost-accordion[data-pair="0"] .cost-acc-header {
        background: #2356A5;
    }

    .cost-col[data-col="left"] .cost-accordion[data-pair="0"] .cost-list li::before {
        background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.95898 4.95703H12.0423V12.0404' stroke='%232356A5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.95898 12.0404L12.0423 4.95703' stroke='%232356A5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .cost-col[data-col="right"] .cost-accordion[data-pair="0"] {
        background: #FFECE5;
    }

    .cost-col[data-col="right"] .cost-accordion[data-pair="0"] .cost-acc-header {
        background: #FF794A;
    }

    .cost-col[data-col="right"] .cost-accordion[data-pair="0"] .cost-list li::before {
        background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.95898 4.95703H12.0423V12.0404' stroke='%23FF794A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.95898 12.0404L12.0423 4.95703' stroke='%23FF794A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .cost-col[data-col="left"] .cost-accordion[data-pair="2"] {
        background: #DDEAFF;
    }

    .cost-col[data-col="left"] .cost-accordion[data-pair="2"] .cost-acc-header {
        background: #2356A5;
    }

    .cost-col[data-col="left"] .cost-accordion[data-pair="2"] .cost-list li::before {
        background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.95898 4.95703H12.0423V12.0404' stroke='%232356A5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.95898 12.0404L12.0423 4.95703' stroke='%232356A5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .cost-col[data-col="right"] .cost-accordion[data-pair="2"] {
        background: #FFECE5;
    }

    .cost-col[data-col="right"] .cost-accordion[data-pair="2"] .cost-acc-header {
        background: #FF794A;
    }

    .cost-col[data-col="right"] .cost-accordion[data-pair="2"] .cost-list li::before {
        background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.95898 4.95703H12.0423V12.0404' stroke='%23FF794A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.95898 12.0404L12.0423 4.95703' stroke='%23FF794A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .cost-section {
        margin: 25px 0;
    }

    .cost-acc-header {
        font-size: 14px;
        padding: 15px 18px;
    }

    .cost-acc-inner {
        padding: 16px 18px 20px;
    }
}

/* =============================================
   FINANCIAL DISCIPLINE SECTION
   ============================================= */

.fin-disc-section {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(99.61deg, #FFF7F4 2.2%, #EFF5FF 96.03%);
}

.fin-disc-section .financial-img {
    position: absolute;
    right: 0;
    bottom: 25px;
    width: 100px;
}

.fin-disc-section h2 {
    margin-bottom: 30px;
}

.fin-disc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    /* align-items: center; */
    margin-bottom: 50px;
}

.fin-disc-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fin-disc-card {
    border-radius: 15px;
    padding: 39.4px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.fin-disc-card.blue {
    background: #2356A5;
}

.fin-disc-card.orange {
    background: #FF794A;
}

.fin-disc-icon img {
    width: 80px;
}

.fin-disc-card p {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #FFFFFF;
    margin: 0;
}

.fin-disc-card strong {
    font-weight: 600;
}

.fin-disc-image img {
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) and (max-width: 991px){
    .fin-disc-card{
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .fin-disc-section {
        padding: 25px 0;
    }

    .fin-disc-section .financial-img {
        display: none;
    }

    .fin-disc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .fin-disc-card {
        padding: 15px;
    }
}

/* =============================================
   OUTCOME SECTION
   ============================================= */

.outcome-section {
    background: linear-gradient(99.61deg, #FFF7F4 2.2%, #EFF5FF 96.03%);
}

.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: 83vh;
    box-sizing: border-box;
    overflow: auto;
}

.outcome-section .outcome-box img {
    width: 100%;
    height: 100%;
    object-position: top;
    object-fit: cover;
    border-radius: 15px;
}

.outcome-section .outcome-title {
    margin-bottom: 20px;
}

.outcome-section .outcome-sub {
    margin-bottom: 20px !important;
}

.outcome-section .outcome-right {
    width: 50%;
}

.outcome-section .outcome-card {
    padding: 30px;
    background: #2356A5;
    border-radius: 0px 15px 15px 15px;
    margin-bottom: 20px;
    position: relative;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.outcome-section .outcome-card .cards-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    z-index: 1;
}

.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;
}

/* ICP scroll-driven horizontal */

.icp-outcome-section {
    height: 150vh;
    padding-bottom: 50px;
}

.icp-outcome-section .icp-pin-wrapper {
    position: sticky;
    top: 72px;
    overflow: hidden;
    width: 100%;
}

.icp-outcome-section .container,
.icp-outcome-section .container-fluid {
    padding: 0;
    max-width: 100%;
}

.icp-outcome-section .outcome-wrapper {
    display: flex;
    height: 100%;
    align-items: stretch;
    gap: 25px;
}

.icp-outcome-section .outcome-left {
    position: relative;
    top: auto;
    width: 49%;
    height: 85.5vh;
    flex-shrink: 0;
    padding-left: max(15px, calc((100vw - 1130px) / 2));
}

@media (min-height: 900px) {
    .icp-outcome-section .outcome-left {
        height: 83vh;
    }
}

/* Align outcome section with Bootstrap's lg container (960px) between 1025–1199px */
@media (min-width: 1025px) and (max-width: 1199px) {
    .icp-outcome-section .outcome-left {
        padding-left: max(15px, calc((100vw - 960px) / 2));
    }
}

@media (max-width: 575px){
    .icp-outcome-section .outcome-right{
        padding: 0 15px !important;
    }
}

.icp-outcome-section .outcome-right {
    overflow: hidden;
    flex: 1;
    width: auto;
    height: 100%;
}

.icp-outcome-section .icp-cards-track {
    display: flex;
    flex-direction: row;
    gap: 11px;
    will-change: transform;
    height: 100%;
}

.icp-outcome-section .outcome-card {
    flex-shrink: 0;
    width: calc((100% - 11px) * 2 / 3);
    height: 83vh;
    margin-bottom: 0;
    justify-content: center;
    background: #FF794A;
    border-radius: 0px 15px 15px 15px;
    padding: 50px;
}

.icp-outcome-section .outcome-card.icp-card-alt {
    background: #2356A5;
}

.icp-outcome-section .outcome-card h4 {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 26px;
    line-height: 31px;
    color: #FFFFFF;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.icp-outcome-section .outcome-card p {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 15px;
    line-height: 19px;
    color: #FFFFFF;
}

.icp-outcome-section .outcome-card ul li {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 15px;
    line-height: 19px;
    color: #FFFFFF;
}

/* Responsive — tablet/mobile: disable horizontal scroll */

@media (max-width: 1100px){
    .outcome-section .outcome-card .cards-img {
        display: none;
    }
}

@media (max-width: 1024px) {

    .outcome-section .outcome-wrapper {
        flex-direction: column;
    }

    .outcome-section .outcome-left,
    .outcome-section .outcome-right {
        width: 100%;
    }

    .outcome-section .outcome-box {
        height: auto;
    }

    .icp-outcome-section {
        height: auto;
        padding: 50px 0;
    }

    .icp-pin-wrapper {
        position: relative;
        top: 0;
        height: auto;
        overflow: visible;
    }

    .icp-outcome-section .icp-pin-wrapper {
        position: static;
        top: auto;
        height: auto;
        overflow: visible;
    }

    .icp-outcome-section .outcome-wrapper {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }

    .icp-outcome-section .outcome-left {
        width: 100%;
        height: auto !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .icp-outcome-section .outcome-box {
        height: auto !important;
    }

    .icp-outcome-section .outcome-box img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 15px;
    }

    .icp-outcome-section .outcome-right {
        width: 100%;
        height: auto;
        overflow: visible;
        /* padding: 0 15px 30px; */
    }

    .icp-outcome-section .icp-cards-track {
        flex-direction: column;
        transform: none !important;
        gap: 0;
        height: auto;
        will-change: auto;
        overflow: visible;
    }

    .icp-outcome-section .outcome-card {
        width: 100%;
        height: auto !important;
        min-height: 180px;
        padding: 30px;
        border-radius: 0px 15px 15px 15px;
        margin-bottom: 10px;
        transform-origin: top center;
        will-change: transform, filter;
    }

    .icp-outcome-section .outcome-card:nth-child(1) {
        z-index: 1;
    }

    .icp-outcome-section .outcome-card:nth-child(2) {
        z-index: 2;
    }

    .icp-outcome-section .outcome-card:nth-child(3) {
        z-index: 3;
    }

    .icp-outcome-section .outcome-card:nth-child(4) {
        z-index: 4;
    }

    .icp-outcome-section .outcome-card:nth-child(5) {
        z-index: 5;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .icp-outcome-section .outcome-card {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 767px) {
    .outcome-section .outcome-box {
        height: auto;
    }

    .outcome-section .outcome-card {
        min-height: 150px;
    }

    .outcome-section .outcome-card h4 {
        font-size: 16px;
    }

    .outcome-section .outcome-card p {
        font-size: 12px;
    }

    .outcome-section .outcome-card p br {
        display: none;
    }

    .icp-outcome-section{
        padding: 25px 0;
    }

    .icp-outcome-section .outcome-card h4 br {
        display: none;
    }

    .icp-outcome-section .outcome-card h4 {
        margin-bottom: 5px;
    }

    .icp-outcome-section .outcome-card p {
        width: 100%;
        margin-bottom: 0;
    }
}

/* Align full outcome section (image + cards) with Bootstrap sm container (540px) at 576–767px.
   +15px offset accounts for the container's own padding: 0 15px rule active at max-width: 768px */
@media (min-width: 576px) and (max-width: 767px) {
    .icp-outcome-section .outcome-wrapper {
        padding-left: max(15px, calc((100vw - 540px) / 2 + 15px));
        padding-right: max(15px, calc((100vw - 540px) / 2 + 15px));
    }

    .icp-outcome-section .outcome-left {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Align full outcome section (image + cards) with Bootstrap md container (720px) at 768–991px */
@media (min-width: 768px) and (max-width: 991px) {
    .icp-outcome-section .outcome-wrapper {
        padding-left: max(15px, calc((100vw - 720px) / 2));
        padding-right: max(15px, calc((100vw - 720px) / 2));
    }

    .icp-outcome-section .outcome-left {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Align full outcome section (image + cards) with Bootstrap lg container (960px) at 992–1024px */
@media (min-width: 992px) and (max-width: 1024px) {
    .icp-outcome-section .outcome-wrapper {
        padding-left: max(15px, calc((100vw - 960px) / 2));
        padding-right: max(15px, calc((100vw - 960px) / 2));
    }

    .icp-outcome-section .outcome-left {
        padding-left: 0;
        padding-right: 0;
    }
}

/* =============================================
   PATH FROM STUDENT TO PROFESSIONAL
   ============================================= */

.wj-path-section {
    padding: 50px 0;
}

.wj-path-title {
    text-align: center;
    margin-bottom: 40px;
}

.wj-path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    gap: 10px;
}

.wj-path-card {
    padding: 20px;
    position: relative;
    overflow: hidden;
    background: #FFF4F7;
    border-radius: 15px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background 0.5s ease;
}

.wj-path-card:hover {
    background: #E15625;
}

.wj-path-card:hover .wj-step-label,
.wj-path-card:hover h4,
.wj-path-card:hover p {
    color: #fff;
}

.wj-path-card:hover .wj-step-badge svg ellipse {
    fill: #FFF4F7;
}

.wj-path-card:hover .wj-step-badge svg path {
    stroke: #E15625;
}

.wj-path-card:hover .wj-card-deco svg path {
    fill: #EA6A38;
}

.wj-step-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.wj-step-label {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #E15625;
}

.wj-path-card h4 {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #2356A5;
    margin-bottom: 8px;
}

.wj-path-card p {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #464646;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.wj-path-card p:last-child {
    margin-bottom: 0;
}

.wj-path-card p svg {
    margin-top: 5px;
}

.wj-card-deco {
    position: absolute;
    bottom: 0;
    right: 16px;
}

.wj-path-card:hover p svg path {
    stroke: #fff;
}

.wj-path-footer {
    margin-top: 10px;
    background: #FFF4F7;
    padding: 16px;
    text-align: center;
    border-radius: 15px;
    transition: background 0.5s ease;
}

.wj-path-footer:hover {
    background: #EA6A38;
}

.wj-path-footer p {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #2356A5;
    margin-bottom: 0;
}

.wj-path-footer:hover p {
    color: #fff;
}

@media (max-width: 1024px) {
    .wj-path-section {
        padding: 25px 0;
    }

    .wj-path-grid {
        grid-template-columns: 1fr;
        overflow: visible;
    }

    .wj-path-item {
        position: sticky;
        top: 80px;
    }

    .wj-path-item:last-child {
        margin-bottom: 0;
    }

    .wj-path-card {
        will-change: transform, filter;
    }
}

/* =============================================
   COMMITMENT SECTION
   ============================================= */

.fp-commit-section {
    margin: 50px 0;
    background: #fff;
}

.fp-commit-section h2{
    margin-bottom: 15px;
}

.fp-commit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
}

.fp-commit-left {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.fp-commit-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fp-commit-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180.1deg, rgba(35, 86, 165, 0.1) 50.08%, #2356A5 65.6%);
    border-radius: 15px;
}

.fp-commit-heading span.anim-word>.anim-char {
    background: text #fff !important;
}

.fp-commit-overlay p {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 0;
}

.fp-commit-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fp-commit-card {
    background: linear-gradient(88.57deg, rgba(255, 121, 74, 0.1) 4.77%, rgba(37, 108, 145, 0.1) 95.12%);
    border-radius: 15px;
    height: 164px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.fp-commit-card--animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease var(--delay, 0ms), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms);
}

.fp-commit-card--animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fp-commit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 47px;
    height: 47px;
    border-radius: 10px;
    background: #FF794A;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.5px;
}

.fp-commit-card p {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #2356A5;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .fp-commit-grid {
        grid-template-columns: 1fr;
    }

    .fp-commit-left {
        min-height: 320px;
    }
}

@media (max-width: 767px) {
    .fp-commit-section {
        margin: 25px 0;
    }

    .fp-commit-overlay {
        padding: 25px;
        background: linear-gradient(180.1deg, rgba(35, 86, 165, 0.1) 35.08%, #2356A5 50.6%);
    }

    .fp-commit-overlay p {
        text-align: center;
    }
}

@media (max-width: 576px) {

    .fp-commit-right {
        grid-template-columns: 1fr;
    }

    .fp-commit-card {
        height: auto;
        min-height: 80px;
    }

    .fp-commit-icon {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .fp-commit-card p {
        font-size: 14px;
    }
}

/* =============================================
   GET STARTED SECTION
   ============================================= */

.get-started {
    margin: 50px 0;
}

.get-started h2 {
    margin-bottom: 20px;
}

.get-started .get-buttons {
    display: flex;
    /* justify-content: center; */
    gap: 20px;
}

.get-started .get-buttons button {
    border-radius: 50px;
    border: 0;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 13px;
    padding: 8px 14px;
    line-height: 24px;
    color: #FFFFFF;
    width: 100%;
}

.get-started .get-buttons .program {
    background: #2356A5;
    transition: all 0.3s ease;
}

.get-started .get-buttons .program:hover {
    background: #274a81;
}

.get-started .get-buttons .learn {
    padding: 8px 30px;
    width: fit-content;
    background: #FF794A;
    transition: all 0.3s ease;
}

.get-started .get-buttons .learn:hover {
    background: #e34d18;
}

@media (max-width: 992px) {
    .get-started .get-buttons {
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .descktop {
        display: none;
    }

    .get-started {
        margin: 25px 0;
    }

    .get-started h2 {
        text-align: center;
    }

    .get-started p.description {
        text-align: center;
        margin-bottom: 20px;
    }

    .get-started .get-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .get-started .get-buttons button {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 1951px){
    .icp-outcome-section .outcome-card:last-child{
        width: 57.5%;
    }
}

@media (min-width: 1901px) and (max-width: 1950px){
    .outcome-section .outcome-card:last-child{
        width: 56.5%;
    }
}

@media (min-width: 1851px) and (max-width: 1900px){
    .icp-outcome-section .outcome-card:last-child{
        width: 60.5%;
    }
}

@media (min-width: 1801px) and (max-width: 1850px){
    .icp-outcome-section .outcome-card:last-child{
        width: 62.5%;
    }
}

@media (min-width: 1751px) and (max-width: 1800px){
    .icp-outcome-section .outcome-card:last-child{
        width: 64.5%;
    }
}

@media (min-width: 1701px) and (max-width: 1750px){
    .icp-outcome-section .outcome-card:last-child{
        width: 65.5%;
    }
}

@media (min-width: 1651px) and (max-width: 1700px){
    .icp-outcome-section .outcome-card:last-child{
        width: 67%;
    }
}

@media (min-width: 1600px) and (max-width: 1650px){
    .icp-outcome-section .outcome-card:last-child{
        width: 72%;
    }
}

@media (min-width: 1451px) and (max-width: 1500px) {
    .icp-outcome-section .outcome-card:last-child{
        width: 75%;
    }
}

@media (min-width: 1401px) and (max-width: 1450px) {
    .icp-outcome-section .outcome-card:last-child{
        width: 79%;
    }
}

@media (min-width: 1351px) and (max-width: 1400px) {
    .icp-outcome-section .outcome-card:last-child{
        width: 81%;
    }
}

@media (min-width: 1301px) and (max-width: 1350px) {
    .icp-outcome-section .outcome-card:last-child{
        width: 84%;
    }
}

@media (min-width: 1251px) and (max-width: 1300px) {
    .icp-outcome-section .outcome-card:last-child{
        width: 87%;
    }
}

@media (min-width: 1201px) and (max-width: 1150px) {
    .icp-outcome-section .outcome-card:last-child{
        width: 93%;
    }
}

@media (min-width: 1101px) and (max-width: 1200px) {
    .icp-outcome-section .outcome-card:last-child{
        width: 86%;
    }
}

@media (min-width: 1025px) and (max-width: 1100px) {
    .icp-outcome-section .outcome-card:last-child{
        width: 92%;
    }
}