:root {
    --color1: #1F3B5D;
    --color2: #FBD405;
    --color3: #061B3E;
    --color4: #ffffff;
    --color5: #256DFF;
}

/* ==============================
   INTERNATIONAL HERO SECTION
================================= */

.international-hero-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 88px);
    color: var(--color4);
    background:
        radial-gradient(circle at 82% 46%, rgba(0, 132, 255, 0.94) 0%, rgba(6, 70, 190, 0.66) 32%, rgba(6, 25, 59, 0) 62%),
        linear-gradient(115deg, #06193b 0%, #08255c 48%, #057dff 100%);
}

.international-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(2, 13, 35, 0.62) 0%,
        rgba(2, 13, 35, 0.25) 48%,
        rgba(2, 13, 35, 0) 100%
    );
}

.international-hero-container {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 88px);
    padding-left: 72px;
    padding-right: 0;
}

.international-hero-row {
    min-height: calc(100vh - 88px);
    align-items: stretch;
}

.international-hero-content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 58px;
    padding-bottom: 58px;
}

.international-hero-badge {
    width: fit-content;
    min-height: 50px;
    margin-bottom: 42px;
    padding: 0 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(37, 109, 255, 0.55);
    color: rgba(255,255,255,0.94);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 14px 28px rgba(37,109,255,0.22);
}

.international-hero-badge i {
    font-size: 27px;
}

.international-hero-content h1 {
    max-width: 820px;
    margin: 0;
    color: var(--color4);
    font-size: 70px;
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: -2.3px;
}

.international-hero-content h1 span {
    color: var(--color2);
}

.international-hero-line {
    width: 88px;
    height: 5px;
    margin: 34px 0 30px;
    border-radius: 50px;
    background: #35AEF4;
}

.international-hero-content p {
    max-width: 640px;
    margin: 0 0 42px;
    color: rgba(255,255,255,0.86);
    font-size: 23px;
    font-weight: 500;
    line-height: 1.6;
}

.international-hero-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.international-hero-btn {
    min-height: 66px;
    min-width: 300px;
    padding: 0 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: 0.35s ease;
}

.international-hero-btn i {
    font-size: 30px;
    transition: transform 0.35s ease;
}

.international-hero-btn-primary {
    background: var(--color2);
    border: 2px solid var(--color2);
    color: var(--color1);
    box-shadow: 0 18px 34px rgba(251, 212, 5, 0.28);
}

.international-hero-btn-outline {
    background: rgba(255,255,255,0.02);
    border: 2px solid rgba(255,255,255,0.50);
    color: var(--color4);
}

.international-hero-btn:hover {
    background: #e8e8e8;
    border-color: #e8e8e8;
    color: var(--color1);
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.20);
}

.international-hero-btn:hover i {
    transform: translateX(6px);
}

/* Visual */
.international-hero-visual {
    position: relative;
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0;
}

.international-hero-glow {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 780px;
    height: 660px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 62% 48%, rgba(53,174,244,0.32), transparent 54%),
        radial-gradient(circle at 76% 72%, rgba(255,255,255,0.10), transparent 52%);
    animation: internationalHeroGlow 4s ease-in-out infinite;
}

.international-hero-visual img {
    position: relative;
    z-index: 3;
    height: calc(100vh - 88px);
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 28px 42px rgba(0,0,0,0.30));
}

/* Animation */
.international-hero-badge,
.international-hero-content h1,
.international-hero-line,
.international-hero-content p,
.international-hero-buttons {
    animation: internationalHeroTextReveal 0.85s ease both;
}

.international-hero-badge { animation-delay: 0.08s; }
.international-hero-content h1 { animation-delay: 0.18s; }
.international-hero-line { animation-delay: 0.30s; }
.international-hero-content p { animation-delay: 0.42s; }
.international-hero-buttons { animation-delay: 0.56s; }

@keyframes internationalHeroTextReveal {
    from {
        opacity: 0;
        transform: translateY(32px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.international-hero-visual img {
    animation: internationalHeroImageReveal 1s ease both 0.25s;
}

@keyframes internationalHeroImageReveal {
    from {
        opacity: 0;
        transform: translateX(70px) scale(0.98);
        filter: blur(5px) drop-shadow(0 28px 42px rgba(0,0,0,0.30));
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0) drop-shadow(0 28px 42px rgba(0,0,0,0.30));
    }
}

@keyframes internationalHeroGlow {
    0%, 100% {
        opacity: 0.72;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

/* Responsive */
@media (max-width: 1399.98px) {
    .international-hero-container {
        padding-left: 54px;
    }

    .international-hero-content h1 {
        font-size: 58px;
    }

    .international-hero-content p {
        font-size: 19px;
    }

    .international-hero-btn {
        min-width: 250px;
        font-size: 15px;
    }
}

@media (max-width: 1199.98px) {
    .international-hero-section,
    .international-hero-container,
    .international-hero-row,
    .international-hero-visual {
        min-height: calc(100vh - 80px);
    }

    .international-hero-container {
        padding-left: 36px;
        padding-right: 36px;
    }

    .international-hero-content h1 {
        font-size: 50px;
    }

    .international-hero-visual img {
        height: 560px;
    }
}

@media (max-width: 991.98px) {
    .international-hero-section,
    .international-hero-container,
    .international-hero-row {
        min-height: auto;
    }

    .international-hero-content {
        padding-top: 62px;
        padding-bottom: 20px;
    }

    .international-hero-badge {
        margin-bottom: 30px;
    }

    .international-hero-content h1 {
        max-width: 680px;
        font-size: 44px;
    }

    .international-hero-content p {
        max-width: 620px;
        font-size: 16px;
    }

    .international-hero-btn {
        width: 100%;
        min-width: unset;
    }

    .international-hero-visual {
        min-height: 430px;
        justify-content: flex-end;
    }

    .international-hero-visual img {
        height: 430px;
        right: -36px;
    }
}

@media (max-width: 767.98px) {
    .international-hero-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .international-hero-content {
        padding-top: 48px;
    }

    .international-hero-badge {
        min-height: 40px;
        margin-bottom: 24px;
        padding: 0 16px;
        font-size: 12px;
    }

    .international-hero-badge i {
        font-size: 20px;
    }

    .international-hero-content h1 {
        font-size: 35px;
        letter-spacing: -1px;
    }

    .international-hero-line {
        width: 72px;
        height: 4px;
        margin: 24px 0 22px;
    }

    .international-hero-content p {
        margin-bottom: 28px;
        font-size: 14px;
    }

    .international-hero-btn {
        min-height: 54px;
        padding: 0 16px;
        font-size: 13px;
    }

    .international-hero-btn i {
        font-size: 22px;
    }

    .international-hero-visual {
        min-height: 360px;
    }

    .international-hero-visual img {
        height: 360px;
        right: -38px;
    }
}

@media (max-width: 420px) {
    .international-hero-content h1 {
        font-size: 31px;
    }

    .international-hero-visual {
        min-height: 320px;
    }

    .international-hero-visual img {
        height: 320px;
        right: -48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .international-hero-badge,
    .international-hero-content h1,
    .international-hero-line,
    .international-hero-content p,
    .international-hero-buttons,
    .international-hero-visual img,
    .international-hero-glow {
        animation: none !important;
        transition: none !important;
    }
}

/* ==============================
   INTERNATIONAL OVERVIEW SECTION
================================= */

.international-overview-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0 86px;
    background:
        radial-gradient(circle at 8% 16%, rgba(31, 59, 93, 0.045), transparent 44%),
        radial-gradient(circle at 92% 88%, rgba(37, 109, 255, 0.045), transparent 48%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 52%, #eef6ff 100%);
}

.international-overview-container {
    position: relative;
    z-index: 2;
    padding-left: 42px;
    padding-right: 42px;
}

.international-overview-heading {
    max-width: 1240px;
    margin: 0 auto 46px;
    text-align: center;
}

.international-overview-badge {
    min-height: 44px;
    margin-bottom: 28px;
    padding: 0 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 109, 255, 0.10);
    color: #256DFF;
    border: 1px solid rgba(37, 109, 255, 0.08);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(31, 59, 93, 0.05);
}

.international-overview-badge i {
    font-size: 17px;
}

.international-overview-heading h2 {
    margin: 0;
    color: var(--color1);
    font-size: 54px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.6px;
}

.international-overview-heading h2 span {
    color: #256DFF;
}

.international-overview-line {
    width: 74px;
    height: 4px;
    margin: 24px auto 24px;
    border-radius: 50px;
    background: #256DFF;
}

.international-overview-heading p {
    max-width: 1020px;
    margin: 0 auto;
    color: rgba(22, 34, 58, 0.68);
    font-size: 18px;
    line-height: 1.55;
}

/* Cards */
.international-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.international-overview-card {
    position: relative;
    min-height: 420px;
    padding: 26px 22px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(31, 59, 93, 0.08);
    box-shadow: 0 18px 38px rgba(31, 59, 93, 0.08);
    overflow: hidden;
}

.overview-card-head {
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 18px;
    align-items: flex-start;
    min-height: 172px;
}

.overview-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color4);
    background: #256DFF;
    font-size: 29px;
    box-shadow: 0 12px 26px rgba(37,109,255,0.22);
}

.overview-purple .overview-icon { background: #714DFF; }
.overview-green .overview-icon { background: #30C978; }
.overview-orange .overview-icon { background: #FF9F1C; }

.overview-card-head h3 {
    margin: 0 0 12px;
    color: var(--color1);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.4px;
}

.overview-card-head p {
    margin: 0;
    color: rgba(22, 34, 58, 0.70);
    font-size: 13.5px;
    line-height: 1.55;
}

.overview-card-line {
    position: relative;
    height: 2px;
    margin: 8px 0 18px;
    background: rgba(31, 59, 93, 0.10);
}

.overview-card-line::after {
    content: "";
    position: absolute;
    left: 23%;
    top: 0;
    width: 34%;
    height: 2px;
    border-radius: 50px;
    background: currentColor;
}

.overview-blue { color: #256DFF; }
.overview-purple { color: #714DFF; }
.overview-green { color: #30C978; }
.overview-orange { color: #FF9F1C; }

.international-overview-card > img {
    width: 100%;
    height: 190px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 12px 26px rgba(31, 59, 93, 0.10);
}

/* Bottom note */
.international-overview-note {
    margin-top: 28px;
    min-height: 98px;
    padding: 20px 30px;
    display: grid;
    grid-template-columns: 330px 1fr 180px;
    gap: 28px;
    align-items: center;
    border-radius: 16px;
    background: rgba(255,255,255,0.92);
    border: 1.5px solid rgba(37,109,255,0.18);
    box-shadow: 0 18px 38px rgba(31, 59, 93, 0.07);
}

.overview-note-title {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: center;
    padding-right: 28px;
    border-right: 1px solid rgba(31, 59, 93, 0.14);
}

.overview-note-icon {
    width: 66px;
    height: 66px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #256DFF;
    color: var(--color4);
    font-size: 30px;
    box-shadow: 0 14px 28px rgba(37,109,255,0.22);
}

.overview-note-title h3 {
    margin: 0;
    color: #256DFF;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.15;
}

.international-overview-note p {
    margin: 0;
    color: rgba(22, 34, 58, 0.78);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;
}

.overview-note-ornament {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    color: #256DFF;
    font-size: 34px;
}

/* Animation */
.international-overview-heading,
.international-overview-card,
.international-overview-note {
    animation: internationalOverviewFadeUp 0.85s ease both;
}

.international-overview-heading { animation-delay: 0.05s; }
.international-overview-card:nth-child(1) { animation-delay: 0.16s; }
.international-overview-card:nth-child(2) { animation-delay: 0.26s; }
.international-overview-card:nth-child(3) { animation-delay: 0.36s; }
.international-overview-card:nth-child(4) { animation-delay: 0.46s; }
.international-overview-note { animation-delay: 0.56s; }

@keyframes internationalOverviewFadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.international-overview-card,
.international-overview-card > img,
.overview-icon,
.international-overview-note {
    transition: 0.35s ease;
}

.international-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(31, 59, 93, 0.13);
}

.international-overview-card:hover > img {
    transform: scale(1.035);
    filter: brightness(1.04) saturate(1.08);
}

.international-overview-card:hover .overview-icon {
    transform: rotate(-5deg) scale(1.08);
}

.international-overview-note:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1399.98px) {
    .international-overview-heading h2 {
        font-size: 44px;
    }

    .international-overview-heading p {
        font-size: 17px;
    }

    .overview-card-head {
        grid-template-columns: 58px 1fr;
        gap: 14px;
    }

    .overview-icon {
        width: 54px;
        height: 54px;
        font-size: 25px;
    }

    .overview-card-head h3 {
        font-size: 20px;
    }

    .overview-card-head p {
        font-size: 12.5px;
    }
}

@media (max-width: 1199.98px) {
    .international-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .international-overview-note {
        grid-template-columns: 1fr;
    }

    .overview-note-title {
        padding-right: 0;
        border-right: 0;
    }

    .overview-note-ornament {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .international-overview-section {
        padding: 54px 0 58px;
    }

    .international-overview-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .international-overview-badge {
        min-height: 38px;
        padding: 0 18px;
        font-size: 11px;
    }

    .international-overview-heading h2 {
        font-size: 31px;
    }

    .international-overview-heading p {
        font-size: 14px;
    }

    .international-overview-grid {
        grid-template-columns: 1fr;
    }

    .international-overview-card {
        min-height: auto;
    }

    .overview-card-head {
        min-height: auto;
    }

    .international-overview-card > img {
        height: 210px;
    }

    .international-overview-note {
        text-align: center;
        padding: 24px 18px;
    }

    .overview-note-title {
        grid-template-columns: 1fr;
        padding-right: 0;
    }

    .overview-note-icon {
        margin: 0 auto;
    }

    .overview-note-ornament {
        justify-content: center;
    }
}

/* ==============================
   INTERNATIONAL STUDENTS SECTION
================================= */

.international-students-section {
    position: relative;
    overflow: hidden;
    padding: 72px 20px 76px;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 52%, #eef6ff 100%);
}

.international-students-container {
    position: relative;
    z-index: 2;
    max-width: 1480px;
    margin: 0 auto;
    padding: 44px 36px 34px;
    border-radius: 22px;
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(31,59,93,0.08);
    box-shadow: 0 18px 44px rgba(31,59,93,0.08);
}

.international-students-heading {
    max-width: 1060px;
    margin: 0 auto 28px;
    text-align: center;
}

.international-students-badge {
    min-height: 38px;
    margin-bottom: 18px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37,109,255,0.10);
    color: #256DFF;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.international-students-badge i {
    font-size: 15px;
}

.international-students-heading h2 {
    margin: 0;
    color: var(--color1);
    font-size: 44px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.2px;
}

.international-students-heading h2 span {
    color: #256DFF;
}

.international-students-line {
    width: 70px;
    height: 4px;
    margin: 18px auto 18px;
    border-radius: 50px;
    background: #256DFF;
}

.international-students-heading p {
    max-width: 820px;
    margin: 0 auto;
    color: rgba(22,34,58,0.66);
    font-size: 16px;
    line-height: 1.55;
}

.international-students-top {
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.international-students-count {
    width: fit-content;
    min-width: 282px;
    min-height: 74px;
    padding: 14px 18px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(37,109,255,0.15);
    box-shadow: 0 14px 30px rgba(31,59,93,0.08);
}

.students-count-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #256DFF;
    color: var(--color4);
    font-size: 21px;
}

.international-students-count h3 {
    margin: 0 0 3px;
    color: #256DFF;
    font-size: 18px;
    font-weight: 900;
}

.international-students-count p {
    margin: 0;
    color: var(--color1);
    font-size: 11px;
    font-weight: 800;
}

.international-students-arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}

.student-scroll-btn {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #256DFF;
    color: var(--color4);
    font-size: 24px;
    box-shadow: 0 14px 28px rgba(37,109,255,0.20);
    transition: 0.35s ease;
}

.student-scroll-btn:hover {
    background: var(--color2);
    color: var(--color1);
    transform: translateY(-4px);
}

.international-students-scroll-wrap {
    position: relative;
    overflow: hidden;
}

.international-students-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 18px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.international-students-scroll::-webkit-scrollbar {
    height: 8px;
}

.international-students-scroll::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(37,109,255,0.10);
}

.international-students-scroll::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(37,109,255,0.55);
}

.international-student-card {
    position: relative;
    flex: 0 0 calc((100% - 80px) / 6);
    scroll-snap-align: start;
    padding: 10px 10px 18px;
    border-radius: 15px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(31,59,93,0.08);
    box-shadow: 0 14px 30px rgba(31,59,93,0.08);
    overflow: hidden;
}

.student-number {
    position: absolute;
    z-index: 4;
    top: 14px;
    left: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #256DFF;
    color: var(--color4);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(37,109,255,0.28);
}

.student-photo {
    width: 100%;
    height: 158px;
    border-radius: 11px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #edf4ff;
}

.student-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-info {
    padding: 0 6px;
}

.student-info h3 {
    margin: 0 0 13px;
    color: var(--color1);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
}

.student-info p {
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(22,34,58,0.78);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}

.student-info p i {
    width: 16px;
    color: #256DFF;
    font-size: 14px;
    text-align: center;
}

.student-flag {
    width: 18px;
    display: inline-flex;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
}

.international-students-footer {
    width: fit-content;
    margin: 18px auto 0;
    padding: 8px 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,109,255,0.08);
    color: #256DFF;
    font-size: 13px;
    font-weight: 900;
}

/* Animation */
.international-students-heading,
.international-students-count,
.international-students-arrows,
.international-student-card,
.international-students-footer {
    animation: internationalStudentsFadeUp 0.85s ease both;
}

.international-students-heading { animation-delay: 0.05s; }
.international-students-count { animation-delay: 0.15s; }
.international-students-arrows { animation-delay: 0.20s; }

.international-student-card:nth-child(1) { animation-delay: 0.22s; }
.international-student-card:nth-child(2) { animation-delay: 0.28s; }
.international-student-card:nth-child(3) { animation-delay: 0.34s; }
.international-student-card:nth-child(4) { animation-delay: 0.40s; }
.international-student-card:nth-child(5) { animation-delay: 0.46s; }
.international-student-card:nth-child(6) { animation-delay: 0.52s; }

.international-students-footer { animation-delay: 0.58s; }

@keyframes internationalStudentsFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.international-student-card,
.student-photo img,
.student-number,
.students-count-icon {
    transition: 0.35s ease;
}

.international-student-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 52px rgba(31,59,93,0.14);
}

.international-student-card:hover .student-photo img {
    transform: scale(1.06);
    filter: brightness(1.04) saturate(1.08);
}

.international-student-card:hover .student-number {
    background: var(--color2);
    color: var(--color1);
    transform: scale(1.08);
}

.international-students-count:hover .students-count-icon {
    transform: rotate(-6deg) scale(1.08);
    background: var(--color2);
    color: var(--color1);
}

/* Responsive */
@media (max-width: 1399.98px) {
    .international-students-container {
        max-width: 1240px;
    }

    .international-student-card {
        flex-basis: calc((100% - 48px) / 4);
    }

    .student-photo {
        height: 170px;
    }
}

@media (max-width: 991.98px) {
    .international-student-card {
        flex-basis: calc((100% - 16px) / 2);
    }

    .student-photo {
        height: 210px;
    }
}

@media (max-width: 767.98px) {
    .international-students-section {
        padding: 54px 14px 58px;
    }

    .international-students-container {
        padding: 32px 16px 26px;
        border-radius: 18px;
    }

    .international-students-badge {
        min-height: 32px;
        padding: 0 14px;
        font-size: 10px;
    }

    .international-students-heading h2 {
        font-size: 30px;
    }

    .international-students-heading p {
        font-size: 13.5px;
    }

    .international-students-top {
        flex-direction: column;
        align-items: stretch;
    }

    .international-students-count {
        width: 100%;
        min-width: unset;
    }

    .international-students-arrows {
        justify-content: center;
    }

    .international-student-card {
        flex-basis: 82%;
    }

    .student-photo {
        height: 245px;
    }

    .student-info h3 {
        font-size: 17px;
    }

    .student-info p {
        font-size: 13px;
    }

    .international-students-footer {
        font-size: 11.5px;
        padding: 7px 14px;
    }
}

@media (max-width: 420px) {
    .international-student-card {
        flex-basis: 88%;
    }

    .student-photo {
        height: 220px;
    }
}

/* ==============================
   INTERNATIONAL STORY SECTION
================================= */

.international-story-section {
    position: relative;
    overflow: hidden;
    padding: 72px 20px 82px;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 52%, #eef6ff 100%);
}

.international-story-container {
    position: relative;
    max-width: 1560px;
    margin: 0 auto;
    padding: 42px 36px 34px;
    border-radius: 24px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(31,59,93,0.08);
    box-shadow: 0 18px 44px rgba(31,59,93,0.08);
}

.international-story-heading {
    max-width: 980px;
    margin: 0 auto 34px;
    text-align: center;
}

.international-story-badge {
    min-height: 38px;
    margin-bottom: 18px;
    padding: 0 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37,109,255,0.10);
    color: #256DFF;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.international-story-badge i {
    font-size: 17px;
}

.international-story-heading h2 {
    margin: 0;
    color: var(--color1);
    font-size: 46px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.2px;
}

.international-story-heading h2 span {
    color: #256DFF;
}

.international-story-line {
    width: 70px;
    height: 4px;
    margin: 20px auto 0;
    border-radius: 50px;
    background: #256DFF;
}

/* Cards */
.international-story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.international-story-card {
    position: relative;
    min-height: 375px;
    padding: 10px;
    border-radius: 22px;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 42px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(37,109,255,0.12);
    box-shadow: 0 18px 42px rgba(31,59,93,0.10);
    overflow: hidden;
}

.story-photo {
    height: 355px;
    border-radius: 16px;
    overflow: hidden;
    background: #eef4ff;
}

.story-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    position: relative;
    min-width: 0;
    padding: 38px 38px 28px 0;
}

.story-quote {
    margin-bottom: 18px;
    color: #256DFF;
    font-size: 82px;
    font-weight: 900;
    line-height: 0.6;
}

.story-flag {
    position: absolute;
    top: 28px;
    right: 38px;
    font-size: 50px;
    line-height: 1;
    filter: drop-shadow(0 8px 16px rgba(31,59,93,0.14));
}

.story-content > p {
    max-width: 520px;
    margin: 0;
    color: rgba(22,34,58,0.78);
    font-size: 15.5px;
    line-height: 1.62;
}

.story-divider {
    display: block;
    width: 280px;
    height: 2px;
    margin: 28px 0 20px;
    border-radius: 50px;
    background: rgba(31,59,93,0.10);
}

.story-content h3 {
    margin: 0 0 7px;
    color: #256DFF;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.15;
}

.story-content h4 {
    margin: 0 0 12px;
    color: var(--color1);
    font-size: 15px;
    font-weight: 800;
}

.story-program {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(22,34,58,0.80);
    font-size: 14px;
    font-weight: 800;
}

.story-program i {
    color: var(--color1);
    font-size: 18px;
}

/* Bottom CTA */
.international-story-cta {
    width: fit-content;
    max-width: 100%;
    min-height: 58px;
    margin: 30px auto 0;
    padding: 0 36px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(255,255,255,0.96);
    border: 1.5px solid rgba(37,109,255,0.15);
    color: #256DFF;
    font-size: 19px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(31,59,93,0.08);
    transition: 0.35s ease;
}

.international-story-cta i {
    font-size: 24px;
}

.international-story-cta:hover {
    background: #256DFF;
    color: var(--color4);
    text-decoration: none;
    transform: translateY(-5px);
}

/* ==============================
   STORY VIDEO BUTTON
================================= */

.international-story-video {
    margin-top: auto;
    padding-top: 18px;

    display: flex;
    justify-content: center;
}

.international-story-video-btn {
    position: relative;
    overflow: hidden;

    padding: 10px 20px;
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 13px;
    font-weight: 800;
    text-decoration: none;

    color: #ff3b3b;
    background: rgba(255,59,59,0.08);
    border: 1px solid rgba(255,59,59,0.2);

    transition: all 0.3s ease;
}

/* ICON MERAH */
.international-story-video-btn .video-icon {
    position: relative;

    width: 30px;
    height: 30px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    color: #fff;

    background: #ff3b3b;
    transition: all 0.3s ease;
}

/* PULSE EFFECT */
.international-story-video-btn .video-icon::after {
    content: "";
    position: absolute;
    z-index: -1;

    width: 30px;
    height: 30px;
    border-radius: 50%;

    background: rgba(255,59,59,0.25);
    animation: storyVideoPulse 2s infinite;
}

/* HOVER */
.international-story-video-btn:hover {
    transform: translateY(-3px);
    background: #ff3b3b;
    color: #fff;
    box-shadow: 0 12px 28px rgba(255,59,59,0.25);
}

.international-story-video-btn:hover .video-icon {
    background: #fff;
    color: #ff3b3b;
    transform: scale(1.1);
}

/* ANIMATION */
@keyframes storyVideoPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.8);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@media (max-width: 767.98px) {
    .international-story-video-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animation */
.international-story-heading,
.international-story-card,
.international-story-cta {
    animation: internationalStoryFadeUp 0.85s ease both;
}

.international-story-heading { animation-delay: 0.05s; }
.international-story-card:nth-child(1) { animation-delay: 0.18s; }
.international-story-card:nth-child(2) { animation-delay: 0.30s; }
.international-story-cta { animation-delay: 0.42s; }

@keyframes internationalStoryFadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.international-story-card,
.story-photo img {
    transition: 0.35s ease;
}

.international-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 58px rgba(31,59,93,0.14);
}

.international-story-card:hover .story-photo img {
    transform: scale(1.045);
    filter: brightness(1.04) saturate(1.08);
}

/* Responsive */
@media (max-width: 1399.98px) {
    .international-story-heading h2 {
        font-size: 40px;
    }

    .international-story-card {
        grid-template-columns: 270px minmax(0, 1fr);
        gap: 28px;
        min-height: 350px;
    }

    .story-photo {
        height: 330px;
    }

    .story-content {
        padding-right: 24px;
    }

    .story-content > p {
        font-size: 14px;
    }

    .story-flag {
        right: 24px;
        font-size: 42px;
    }
}

@media (max-width: 1199.98px) {
    .international-story-grid {
        grid-template-columns: 1fr;
    }

    .international-story-card {
        max-width: 980px;
        margin: 0 auto;
        grid-template-columns: 300px minmax(0, 1fr);
    }
}

@media (max-width: 767.98px) {
    .international-story-section {
        padding: 54px 14px 58px;
    }

    .international-story-container {
        padding: 32px 16px 26px;
        border-radius: 18px;
    }

    .international-story-badge {
        min-height: 34px;
        padding: 0 15px;
        font-size: 10.5px;
    }

    .international-story-heading {
        margin-bottom: 26px;
    }

    .international-story-heading h2 {
        font-size: 30px;
    }

    .international-story-grid {
        gap: 20px;
    }

    .international-story-card {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 10px;
    }

    .story-photo {
        height: 270px;
    }

    .story-content {
        padding: 28px 16px 22px;
    }

    .story-quote {
        font-size: 70px;
    }

    .story-flag {
        top: 24px;
        right: 16px;
        font-size: 36px;
    }

    .story-content > p {
        font-size: 13.5px;
    }

    .story-divider {
        width: 100%;
        margin: 24px 0 18px;
    }

    .story-content h3 {
        font-size: 22px;
    }

    .international-story-cta {
        width: 100%;
        min-height: 54px;
        padding: 14px 18px;
        border-radius: 14px;
        font-size: 14px;
        text-align: center;
    }
}

/* ==============================
   INTERNATIONAL CTA SECTION
================================= */

.international-cta-section {
    position: relative;
    overflow: hidden;
    padding: 76px 20px 88px;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 52%, #eef6ff 100%);
}

.international-cta-container {
    max-width: 1560px;
    margin: 0 auto;
}

.international-cta-card {
    position: relative;
    overflow: hidden;
    padding: 82px 86px 44px;
    border-radius: 28px;
    color: var(--color4);
    background: linear-gradient(115deg, #0731c9 0%, #1268ff 45%, #8bcaff 100%);
    box-shadow: 0 28px 60px rgba(31, 59, 93, 0.22);
}

.international-cta-main {
    position: relative;
    min-height: 500px;
}

.international-cta-content {
    position: relative;
    z-index: 6;
    max-width: 680px;
    padding-top: 8px;
}

.international-cta-head {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.international-cta-mini-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    margin-top: 8px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color4);
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.24);
    box-shadow: 0 16px 34px rgba(0,0,0,0.12);
    font-size: 28px;
}

.international-cta-text {
    min-width: 0;
}

.international-cta-text h2 {
    margin: 0;
    color: var(--color4);
    font-size: 74px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
}

.international-cta-text h2 span {
    color: #6ED6FF;
}

.international-cta-line {
    width: 84px;
    height: 5px;
    margin: 30px 0 28px;
    border-radius: 50px;
    background: rgba(255,255,255,0.88);
}

.international-cta-text p {
    max-width: 560px;
    margin: 0 0 40px;
    color: rgba(255,255,255,0.90);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
}

.international-cta-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
    margin-left: 88px;
}

.international-cta-btn {
    min-height: 72px;
    min-width: 300px;
    padding: 0 28px;
    flex: 0 0 auto;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.35s ease;
}

.international-cta-btn i:first-child {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.international-cta-btn i:last-child {
    margin-left: 6px;
    transition: transform 0.35s ease;
}

.international-cta-btn-primary {
    background: var(--color4);
    border: 2px solid var(--color4);
    color: #256DFF;
    box-shadow: 0 18px 34px rgba(0,0,0,0.14);
}

.international-cta-btn-primary i:first-child {
    background: #256DFF;
    color: var(--color4);
}

.international-cta-btn-outline {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.48);
    color: var(--color4);
}

.international-cta-btn-outline i:first-child {
    background: rgba(255,255,255,0.12);
    color: var(--color4);
}

.international-cta-btn:hover {
    background: var(--color2);
    border-color: var(--color2);
    color: var(--color1);
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 24px 44px rgba(0,0,0,0.20);
}

.international-cta-btn:hover i:first-child {
    background: var(--color1);
    color: var(--color4);
}

.international-cta-btn:hover i:last-child {
    transform: translateX(7px);
}

/* Visual */
.international-cta-visual {
    position: absolute;
    z-index: 3;
    right: -4px;
    top: 0;
    bottom: 0;
    width: 58%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
}

.international-cta-visual img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 545px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 28px 42px rgba(0,0,0,0.25));
}

/* Features */
.international-cta-features {
    position: relative;
    z-index: 7;
    margin-top: 20px;
    min-height: 88px;
    padding: 18px 34px;
    border-radius: 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(255,255,255,0.56);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.international-cta-feature {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 28px;
    border-right: 1px solid rgba(31,59,93,0.15);
}

.international-cta-feature:first-child {
    padding-left: 0;
}

.international-cta-feature:last-child {
    border-right: 0;
    padding-right: 0;
}

.international-cta-feature .feature-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color4);
    background: #256DFF;
    font-size: 24px;
    box-shadow: 0 12px 24px rgba(37,109,255,0.24);
}

.international-cta-feature span {
    color: #256DFF;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
}

/* Animation */
.international-cta-mini-icon,
.international-cta-text h2,
.international-cta-line,
.international-cta-text p,
.international-cta-buttons,
.international-cta-visual img,
.international-cta-feature {
    animation: internationalCtaFadeUp 0.85s ease both;
}

.international-cta-mini-icon { animation-delay: 0.06s; }
.international-cta-text h2 { animation-delay: 0.16s; }
.international-cta-line { animation-delay: 0.28s; }
.international-cta-text p { animation-delay: 0.38s; }
.international-cta-buttons { animation-delay: 0.50s; }
.international-cta-visual img { animation-delay: 0.26s; }
.international-cta-feature:nth-child(1) { animation-delay: 0.56s; }
.international-cta-feature:nth-child(2) { animation-delay: 0.64s; }
.international-cta-feature:nth-child(3) { animation-delay: 0.72s; }
.international-cta-feature:nth-child(4) { animation-delay: 0.80s; }

@keyframes internationalCtaFadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.international-cta-feature,
.international-cta-feature .feature-icon {
    transition: 0.35s ease;
}

.international-cta-feature:hover {
    transform: translateY(-6px);
}

.international-cta-feature:hover .feature-icon {
    background: var(--color2);
    color: var(--color1);
    transform: rotate(-5deg) scale(1.08);
}

/* Responsive */
@media (max-width: 1399.98px) {
    .international-cta-card {
        padding: 70px 60px 40px;
    }

    .international-cta-main {
        min-height: 460px;
    }

    .international-cta-text h2 {
        font-size: 58px;
    }

    .international-cta-text p {
        font-size: 18px;
    }

    .international-cta-buttons {
        margin-left: 86px;
    }

    .international-cta-btn {
        min-width: 245px;
        min-height: 64px;
        padding: 0 22px;
        font-size: 15px;
    }

    .international-cta-btn i:first-child {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 18px;
    }

    .international-cta-visual img {
        height: 485px;
    }

    .international-cta-features {
        padding: 16px 24px;
    }

    .international-cta-feature {
        padding: 0 18px;
    }

    .international-cta-feature span {
        font-size: 15px;
    }
}

@media (max-width: 1199.98px) {
    .international-cta-visual {
        width: 52%;
        opacity: 0.86;
    }

    .international-cta-visual img {
        height: 420px;
    }

    .international-cta-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 0;
    }

    .international-cta-feature:nth-child(2) {
        border-right: 0;
    }

    .international-cta-feature:nth-child(3) {
        padding-left: 0;
    }
}

@media (max-width: 991.98px) {
    .international-cta-card {
        padding: 48px 30px 30px;
    }

    .international-cta-main {
        min-height: auto;
    }

    .international-cta-content {
        max-width: 100%;
    }

    .international-cta-head {
        gap: 16px;
    }

    .international-cta-mini-icon {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
        font-size: 23px;
    }

    .international-cta-text h2 {
        font-size: 44px;
    }

    .international-cta-text p {
        max-width: 100%;
        font-size: 16px;
    }

    .international-cta-buttons {
        margin-left: 70px;
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
    }

    .international-cta-btn {
        width: 100%;
        min-width: unset;
    }

    .international-cta-visual {
        position: relative;
        width: 100%;
        height: 360px;
        bottom: auto;
        opacity: 1;
        margin-top: 28px;
    }

    .international-cta-visual img {
        height: 360px;
        right: -26px;
    }

    .international-cta-features {
        margin-top: 20px;
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .international-cta-feature,
    .international-cta-feature:first-child,
    .international-cta-feature:nth-child(3),
    .international-cta-feature:last-child {
        padding: 0;
        border-right: 0;
    }
}

@media (max-width: 767.98px) {
    .international-cta-section {
        padding: 54px 14px 58px;
    }

    .international-cta-card {
        border-radius: 20px;
        padding: 38px 18px 22px;
    }

    .international-cta-head {
        gap: 12px;
    }

    .international-cta-mini-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        margin-top: 2px;
        font-size: 20px;
    }

    .international-cta-text h2 {
        font-size: 32px;
        letter-spacing: -0.8px;
    }

    .international-cta-line {
        width: 64px;
        height: 4px;
        margin: 22px 0 20px;
    }

    .international-cta-text p {
        margin-bottom: 26px;
        font-size: 14px;
    }

    .international-cta-buttons {
        margin-left: 0;
    }

    .international-cta-btn {
        min-height: 56px;
        padding: 0 16px;
        font-size: 13px;
    }

    .international-cta-btn i:first-child {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 17px;
    }

    .international-cta-visual {
        height: 290px;
    }

    .international-cta-visual img {
        height: 290px;
        right: -18px;
    }

    .international-cta-features {
        border-radius: 14px;
        gap: 20px;
    }

    .international-cta-feature .feature-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 20px;
    }

    .international-cta-feature span {
        font-size: 13.5px;
    }
}

/* ==============================
   INTERNATIONAL PROGRAM SECTION
================================= */

.international-program-section {
    position: relative;
    overflow: hidden;
    padding: 74px 20px 86px;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 52%, #eef6ff 100%);
}

.international-program-container {
    max-width: 1560px;
    margin: 0 auto;
}

.international-program-heading {
    max-width: 1180px;
    margin: 0 auto 42px;
    text-align: center;
}

.international-program-badge {
    min-height: 40px;
    margin-bottom: 20px;
    padding: 0 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 109, 255, 0.10);
    color: #256DFF;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.international-program-heading h2 {
    margin: 0;
    color: var(--color1);
    font-size: 50px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.4px;
}

.international-program-heading h2 span {
    color: #256DFF;
}

.international-program-line {
    width: 74px;
    height: 4px;
    margin: 22px auto 20px;
    border-radius: 50px;
    background: #256DFF;
}

.international-program-heading p {
    max-width: 980px;
    margin: 0 auto;
    color: rgba(22, 34, 58, 0.68);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}

/* Cards */
.international-program-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.international-program-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 10px 10px 18px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(31,59,93,0.10);
    box-shadow: 0 18px 42px rgba(31,59,93,0.10);
    transition: 0.35s ease;
}

.program-image {
    position: relative;
    height: 235px;
    border-radius: 13px;
    overflow: hidden;
    background: #edf4ff;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.program-flag {
    position: absolute;
    z-index: 4;
    top: 14px;
    left: 14px;
    min-width: 66px;
    height: 48px;
    padding: 0 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.92);
    font-size: 34px;
    box-shadow: 0 12px 24px rgba(31,59,93,0.12);
}

.program-content {
    position: relative;
    padding: 0 20px;
}

.program-icon {
    width: 58px;
    height: 58px;
    margin-top: -31px;
    margin-bottom: 16px;
    position: relative;
    z-index: 5;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color4);
    background: #256DFF;
    border: 5px solid var(--color4);
    font-size: 24px;
    box-shadow: 0 12px 24px rgba(31,59,93,0.14);
}

.program-blue .program-icon { background: #256DFF; }
.program-yellow .program-icon { background: #FFB400; }
.program-green .program-icon { background: #30C978; }
.program-purple .program-icon { background: #714DFF; }

.program-content h3 {
    margin: 0 0 6px;
    color: #256DFF;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
}

.program-yellow .program-content h3 { color: #FFB400; }
.program-green .program-content h3 { color: #30C978; }
.program-purple .program-content h3 { color: #714DFF; }

.program-content h4 {
    margin: 0 0 18px;
    color: var(--color1);
    font-size: 15px;
    font-weight: 900;
}

.program-content p {
    min-height: 92px;
    margin: 0 0 18px;
    color: rgba(22,34,58,0.72);
    font-size: 14px;
    font-weight: 550;
    line-height: 1.65;
}

.program-tag {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #256DFF;
    background: rgba(37,109,255,0.10);
    font-size: 13.5px;
    font-weight: 900;
}

.program-yellow .program-tag {
    color: #C68500;
    background: rgba(255,180,0,0.12);
}

.program-green .program-tag {
    color: #16A36A;
    background: rgba(48,201,120,0.13);
}

.program-purple .program-tag {
    color: #714DFF;
    background: rgba(113,77,255,0.12);
}

/* Partner Box */
.international-partner-box {
    margin-top: 24px;
    padding: 24px 30px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 1.25fr 1.1fr 0.9fr 1.2fr;
    gap: 28px;
    background: rgba(255,255,255,0.92);
    border: 1.5px solid rgba(37,109,255,0.14);
    box-shadow: 0 18px 42px rgba(31,59,93,0.08);
}

.partner-intro,
.partner-item {
    min-width: 0;
}

.partner-intro {
    padding-right: 28px;
    border-right: 1px solid rgba(31,59,93,0.14);
}

.partner-intro h3 {
    margin: 0;
    color: var(--color1);
    font-size: 28px;
    font-weight: 900;
}

.partner-intro span {
    width: 46px;
    height: 4px;
    margin: 12px 0 18px;
    border-radius: 50px;
    display: block;
    background: #256DFF;
}

.partner-intro p {
    margin: 0;
    color: rgba(22,34,58,0.72);
    font-size: 14px;
    font-weight: 550;
    line-height: 1.55;
}

.partner-item {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 18px;
    align-items: center;
    padding-right: 28px;
    border-right: 1px solid rgba(31,59,93,0.14);
}

.partner-item:last-child {
    padding-right: 0;
    border-right: 0;
}

.partner-flag {
    width: 66px;
    height: 48px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37,109,255,0.06);
    font-size: 35px;
    box-shadow: 0 10px 22px rgba(31,59,93,0.08);
}

.partner-flag-double {
    width: 96px;
    gap: 6px;
}

.partner-item h4 {
    margin: 0 0 10px;
    color: #256DFF;
    font-size: 22px;
    font-weight: 900;
}

.partner-item:nth-child(3) h4 {
    color: #FFB400;
}

.partner-item p {
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(22,34,58,0.76);
    font-size: 13px;
    font-weight: 750;
}

.partner-item p i {
    color: #256DFF;
}

/* Animation */
.international-program-heading,
.international-program-card,
.international-partner-box {
    animation: internationalProgramFadeUp 0.85s ease both;
}

.international-program-heading { animation-delay: 0.05s; }
.international-program-card:nth-child(1) { animation-delay: 0.16s; }
.international-program-card:nth-child(2) { animation-delay: 0.26s; }
.international-program-card:nth-child(3) { animation-delay: 0.36s; }
.international-program-card:nth-child(4) { animation-delay: 0.46s; }
.international-partner-box { animation-delay: 0.56s; }

@keyframes internationalProgramFadeUp {
    from {
        opacity: 0;
        transform: translateY(34px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.international-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 58px rgba(31,59,93,0.15);
}

.international-program-card:hover .program-image img {
    transform: scale(1.06);
    filter: brightness(1.04) saturate(1.08);
}

.international-program-card:hover .program-icon {
    animation: programIconPop 0.5s ease both;
}

@keyframes programIconPop {
    0% { transform: scale(1) rotate(0); }
    50% { transform: scale(1.12) rotate(-6deg); }
    100% { transform: scale(1) rotate(0); }
}

/* Responsive */
@media (max-width: 1399.98px) {
    .international-program-heading h2 {
        font-size: 42px;
    }

    .program-image {
        height: 210px;
    }

    .program-content h3 {
        font-size: 19px;
    }

    .program-content p {
        font-size: 13px;
    }
}

@media (max-width: 1199.98px) {
    .international-program-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .international-partner-box {
        grid-template-columns: 1fr 1fr;
    }

    .partner-intro,
    .partner-item {
        border-right: 0;
        padding-right: 0;
    }
}

@media (max-width: 767.98px) {
    .international-program-section {
        padding: 54px 14px 58px;
    }

    .international-program-badge {
        min-height: 34px;
        padding: 0 16px;
        font-size: 10.5px;
    }

    .international-program-heading h2 {
        font-size: 30px;
    }

    .international-program-heading p {
        font-size: 13.5px;
    }

    .international-program-grid {
        grid-template-columns: 1fr;
    }

    .program-image {
        height: 220px;
    }

    .program-content {
        padding: 0 14px;
    }

    .program-content p {
        min-height: auto;
    }

    .international-partner-box {
        grid-template-columns: 1fr;
        padding: 22px 18px;
    }

    .partner-item {
        grid-template-columns: 62px 1fr;
        gap: 14px;
    }

    .partner-intro h3 {
        font-size: 24px;
    }

    .partner-flag {
        width: 56px;
        height: 42px;
        font-size: 28px;
    }

    .partner-flag-double {
        width: 76px;
    }

    .partner-item h4 {
        font-size: 19px;
    }
}