@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;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Playfair Display';
    font-weight: 600;
    font-size: 35px;
    line-height: 47px;
    margin-bottom: 0;
}

p.description {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #464646;
    margin-bottom: 0;
}

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

/* ================= DESIGNED FOR SECTION ================= */

.designed-for-section {
    padding: 50px 0;
}

.designed-for-header {
    text-align: center;
    margin-bottom: 50px;
}

.designed-for-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.df-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 121, 74, 0.1) 0%, rgba(145, 103, 119, 0.1) 50%, rgba(35, 86, 165, 0.1) 100%);
    border-radius: 15px;
    padding: 32px 24px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.df-char {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 2;
    transition: color 0.4s ease;
    font-family: 'Noto Sans JP';
    font-weight: 400;
    font-size: 28px;
    line-height: 40px;
    color: #fff !important;
}

.df-card p {
    width: 180px;
    margin: 0;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #2356A5;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.df-card:hover p {
    color: #fff;
}

.df-fill {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 0px 15px;
    z-index: 1;
    pointer-events: none;
    transition: width 0.7s ease, height 0.7s ease;
}

.df-card:hover .df-fill {
    width: 100%;
    height: 100%;
}

/* ================= MISJ SECTION ================= */

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

.misj-corner-img {
    width: 130px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.misj-content {
    position: relative;
}

.misj-content h2 {
    margin-bottom: 20px;
}

.misj-content p.description span {
    font-weight: 700;
    color: #2356A5;
}

.misj-right-title {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #2356A5;
    margin-bottom: 6px;
}

.misj-right-sub {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #E15625;
    margin-bottom: 24px;
}

.misj-section .right {
    padding-left: 60px;
}

.misj-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.misj-card {
    background: #DDEAFF;
    border-radius: 15px;
    padding: 24px;
    position: relative;
    cursor: pointer;
    transition: background 0.5s ease;
}

.misj-card:hover {
    background: #2356A5;
}

.misj-card .arrow {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f2f5fd;
}

.misj-card .arrow .misj-card-arrow {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #2356A5;
    transition: background 0.5s ease, color 0.5s ease;
    z-index: 2;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 1.5px;
    right: 1.5px;
}

.misj-card:hover .misj-card-arrow {
    background: #FF794A;
    color: #fff;
    animation: svgArrowFloat 2s ease-in-out infinite;
}

@keyframes svgArrowFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(2px, -2px);
    }
}

.misj-card:hover .arrow .misj-card-arrow svg path {
    stroke: #fff;
}

.misj-card-icon {
    margin-bottom: 16px;
    transition: color 0.5s ease;
}

.misj-card:hover .misj-card-icon svg path {
    stroke: #fff;
}

.misj-card p {
    margin: 0;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #2356A5;
    transition: color 0.5s ease;
}

.misj-card:hover p {
    color: #fff;
}

/* ================= LANG CAREER SECTION ================= */

.lang-career-section {
    padding: 50px 0;
}

.lang-career-header {
    margin-bottom: 36px;
}

.lang-career-sub {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #2356A5;
    margin-bottom: 0;
}

/* ---- Numbered cards ---- */

.lc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.lc-card {
    height: 75px;
    background: #FFE9E2;
    border-radius: 0 15px 15px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.lc-num {
    min-width: 40px;
    height: 100%;
    background: #FF794A;
    border-radius: 0 120px 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    color: #FFFFFF;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.lc-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 100%;
    background: #FF794A;
    border-radius: 0 120px 120px 0;
    z-index: 0;
    pointer-events: none;
    transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1), border-radius 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.lc-card:hover .lc-fill {
    width: 100%;
    border-radius: 0;
}

.lc-card p {
    margin: 0;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #E15625;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.lc-card:hover p {
    color: #fff;
}

/* ---- Statement cards ---- */

.lang-stmt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.lang-stmt-full {
    grid-column: 1 / -1;
}

.lang-stmt {
    background: #DDEAFF;
    border-radius: 15px;
    padding: 22px 80px 22px 24px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}

.lang-stmt:hover {
    background: #2356A5;
}

.lang-stmt p {
    margin: 0;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #2356A5;
    position: relative;
    z-index: 1;
}

.lang-stmt:hover p {
    color: #fff;
}

.lang-stmt svg {
    height: 65px;
    position: absolute;
    top: 0;
    right: 0;
}

.lang-stmt svg path {
    fill: #EFF5FF;
}

.lang-stmt:hover svg path {
    fill: #396DBE;
}

/* ================= PROFICIENCY LEVELS SECTION ================= */

.proficiency-section {
    padding: 50px 0;
}

.proficiency-title {
    text-align: center;
    margin-bottom: 36px;
}

.proficiency-table {
    border: 1.5px solid #2356A5;
    border-radius: 14px;
    overflow: hidden;
}

/* --- Header row --- */

.prof-header-row {
    display: flex;
    border-bottom: 1.5px solid #2356A5;
}

.prof-col {
    flex: 1;
    padding: 18px 24px;
    text-align: center;
}

.prof-col:first-child {
    border-right: 1.5px solid #2356A5;
}

.prof-level-name {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #E15625;
}

/* --- Badge row --- */

.prof-badge-row {
    display: flex;
    border-bottom: 1.5px solid #2356A5;
}

.prof-badge-row .prof-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 12px;
}

.prof-badges {
    display: flex;
    align-items: center;
    gap: 14px;
}

.prof-amp {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    color: #464646;
}

.prof-badge {
    width: 90px;
    height: 90px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
}

.prof-badge-blue {
    background: #D9E6FB;
    color: #464646;
}

.prof-badge-orange {
    background: #FFC2AC;
    color: #464646;
}

.prof-badge-sub {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    color: #464646;
}

/* --- Footer row --- */

.prof-footer-row {
    background: #2356A5;
    padding: 22px 40px;
}

.prof-footer-row p {
    margin: 0;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
}

/* ================= JOURNEY / INTEGRATION SECTION ================= */

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

.journey-corner-img {
    width: 130px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.journey-intro {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #E15625;
    margin-bottom: 25px;
    text-align: center;
}

/* --- Card --- */

.journey-card {
    background: #fff;
    border-radius: 15px;
    padding: 36px 40px 44px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    max-width: 600px;
    margin: 0 auto;
}

/* --- Figure --- */

.journey-figure {
    margin-bottom: -2px;
}

.journey-figure svg {
    margin-left: 30px;
}

/* --- Long-term bar --- */

.journey-top-bar {
    width: 100%;
    background: #2356A5;
    border-radius: 15px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0px
}

.journey-top-bar span {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}

.journey-top-bar svg {
    height: 45px;
    position: absolute;
    top: 4px;
    right: 0;
}

.journey-top-bar svg path {
    fill: #396DBE;
}

/* --- Arrow --- */

.journey-arrow-up {
    text-align: center;
    margin: 15px 0;
}

.journey-arrow-up svg {
    animation: svgArrowFloatTop 4s ease-in-out infinite;
}

@keyframes svgArrowFloatTop {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.journey-pillars {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.journey-pillars .journey-pillar {
    width: 112px;
    height: 250px;
}

.journey-pillars .journey-pillar.pillar-blue {
    background: url(img/technical-skill.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-pillars .journey-pillar.pillar-orange {
    background: url(img/language-proficiency.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-pillars .journey-pillar .pillar-label {
    margin-top: 35px;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
}

.journey-pillars .journey-pillar.pillar-blue .pillar-label {
    color: #2356A5;
}

.journey-pillars .journey-pillar.pillar-orange .pillar-label {
    color: #E15625;
}

/* --- Career Access --- */

.journey-career {
    background: #FFE9E2;
    border: 2px solid #E15625;
    border-radius: 15px;
    padding: 10px 44px;
    color: #E15625;
    width: fit-content;
    margin: 0 auto;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #E15625;
}

.get-started {
    padding: 50px 0;
    background: linear-gradient(99.61deg, #FFF7F4 2.2%, #EFF5FF 96.03%);
}

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

.get-started .get-buttons {
    display: flex;
    gap: 20px;
}

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

.get-started .get-buttons .program,
.get-started .get-buttons .learn,
.get-started .get-buttons .language {
    transition: all 0.3s ease;
}
.get-started .get-buttons .program {
    background: #2356A5;
    /*border: 2px solid #FF794A;*/
}

.get-started .get-buttons .program:hover {
    /*border-color: #256C91;*/
    background: #274a81;
}

.get-started .get-buttons .learn {
    background: #FF794A;
    /*border: 2px solid #256C91;*/
}

.get-started .get-buttons .learn:hover {
    /*border-color: #FF794A;*/
    background: #e34d18;
}

.get-started .get-buttons .language {
    width: fit-content;
    margin-top: 20px;
    background: #A20027;
    /*border: 2px solid #256C91;*/
}

.get-started .get-buttons .language:hover {
    /*border-color: #A20027;*/
     background: #820322;
}
.get-started .get-buttons .program,
.get-started .get-buttons .learn,
.get-started .get-buttons .language {
    transition: all 0.3s ease;
}

/* ===== Directional hover button ===== */
.icp-hover-outer {
    position: relative;
    display: inline-block;
    line-height: 0;
    border-radius: 50px;
    cursor: pointer;
    background: transparent !important;
}

.icp-hover-outer>button {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.icp-hover-fill {
    position: absolute;
    inset: 0;
    border-radius: 50px;
    z-index: 1;
    clip-path: circle(0% at 50% 50%);
}

.icp-hover-outer>button span {
    position: relative;
    z-index: 2;
}

#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: 992px) and (max-width: 1200px) {

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

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

    .get-started .get-buttons .language {
        width: 100%;
    }
}

@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: 991px) {
    .designed-for-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .misj-section {
        padding: 25px 0;
    }

    .misj-right-title {
        margin-top: 40px;
    }

    .get-started {
        margin-top: 0;
        margin-bottom: 0px;
    }

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

    .get-started .get-buttons .language {
        width: 100%;
        margin-top: 10px;
    }

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

    .journey-intro {
        margin-bottom: 32px;
    }
}

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

    #backToTopBtn {
        display: none;
    }

    #backToTopBtn.show {
        display: block;
    }

    .container {
        padding: 0 10px;
    }

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

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

    .df-card {
        padding: 60px 16px;
        height: auto;
    }

    .designed-for-section,
    .lang-career-section,
    .journey-section,
    .proficiency-section,
    .get-started {
        padding: 25px 0;
    }

    .icp-career-hero {
        margin-top: 0;
    }

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

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

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

    .lang-stmt-grid {
        grid-template-columns: repeat(1, 1fr);
    }

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

    .journey-section .container {
        padding: 0px 15px;
    }

    .misj-section .right {
        padding-left: 25px;
        padding-right: 35px;
        margin-top: 15px;
    }

    .misj-corner-img,
    .journey-corner-img {
        display: none;
    }

    .misj-watermark {
        font-size: 180px;
        bottom: -40px;
    }

    .misj-right-title {
        font-size: 20px;
        margin-top: 10px;
        text-align: center;
    }

    .misj-right-sub{
        font-size: 16px;
        text-align: center;
    }

    .misj-card p br {
        display: none;
    }

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

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

    .journey-intro {
        font-size: 15px;
    }

    .journey-card {
        padding: 28px 24px 36px;
    }

    .prof-badge {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .prof-badges {
        gap: 10px;
    }

    .prof-amp {
        font-size: 18px;
    }

    .prof-badge-sub {
        margin-top: 8px;
        line-height: 5px;
    }

    .prof-badge {
        line-height: 28px;
    }

    .lang-career-sub{
        text-align: center;
    }

    .lang-stmt .icon,
    .journey-top-bar svg{
        display: none;
    }

    .lang-stmt{
        padding: 18px;
    }
}

@media (max-width: 575px) {

    .designed-for-header {
        margin-bottom: 30px;
    }

    .designed-for-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .df-card p {
        font-size: 13px;
    }

    .misj-grid {
        /* grid-template-columns: 1fr; */
        gap: 12px;
    }

    .misj-watermark {
        font-size: 140px;
        bottom: -20px;
    }

    .misj-card {
        padding: 44px 16px 20px;
    }

    .lang-career-section {
        padding: 50px 0 60px;
    }

    .lang-career-title {
        font-size: 26px;
    }

    .lc-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .lang-stmt-grid {
        grid-template-columns: 1fr;
    }

    .lang-stmt-full {
        grid-column: 1;
    }

    /* .lang-stmt {
        padding: 18px 60px 18px 18px;
    } */

    .proficiency-title {
        font-size: 26px;
    }

    .prof-footer-row {
        padding: 18px 20px;
    }

    .journey-pillar {
        width: 100px;
    }

    .journey-career {
        padding: 10px 28px;
    }
}
