@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
/* ALL CLASSES PREFIXED jku-adm- - NO CONFLICT WITH ANY OTHER CSS */

/* ==================== VARIABLES ==================== */
/* ── Body / wrapper background override ── */
body,
.jku-adm-page,
.jku-adm-page .bg-light,
.jku-adm-page .jku-adm-wrapper,
.jku-adm-page .breadcrumb {
    background-color: #FFF4EA !important;
}


.jku-adm-page {
    --jku-blue: #034B9F;
    --jku-orange: #B84110;
    --jku-gold: #EDB600;
    --jku-cream: #FFF4EA;
    --jku-white: #FFFFFF;
    --jku-dark: #262626;
    --jku-muted: #555;
    --jku-border: #e8e8e8;
    font-family: "Source Sans 3", sans-serif;
}

/* ==================== JOURNEY ANIMATION ==================== */
.jku-adm-journey {
    background: linear-gradient(135deg, #034B9F 0%, #023a7d 100%);
    padding: 50px 0 40px;
    overflow: hidden;
}

.jku-adm-journey-title {
    font-family: "Source Sans 3", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 36px;
}

.jku-adm-journey-track {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 20px;
}

.jku-adm-journey-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.jku-adm-journey-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 3px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 26px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.jku-adm-journey-step.jku-adm-step-active .jku-adm-journey-icon {
    background: #EDB600;
    border-color: #EDB600;
    color: #FFFFFF;
    box-shadow: 0 0 28px rgba(237, 182, 0, 0.5);
    transform: scale(1.1);
}

.jku-adm-journey-step.jku-adm-step-done .jku-adm-journey-icon {
    background: rgba(255, 255, 255, 0.95);
    border-color: #EDB600;
    color: #034B9F;
}

.jku-adm-journey-label {
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.4s ease;
}

.jku-adm-journey-step.jku-adm-step-active .jku-adm-journey-label,
.jku-adm-journey-step.jku-adm-step-done .jku-adm-journey-label {
    color: #FFFFFF;
}

.jku-adm-journey-sub {
    font-family: "Source Sans 3", sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 3px;
}

.jku-adm-journey-step.jku-adm-step-active .jku-adm-journey-sub,
.jku-adm-journey-step.jku-adm-step-done .jku-adm-journey-sub {
    color: rgba(255, 255, 255, 0.65);
}

.jku-adm-journey-line {
    flex: 0 0 70px;
    height: 3px;
    background: rgba(255, 255, 255, 0.13);
    margin-top: 34px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.jku-adm-journey-line .jku-adm-jl-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #EDB600;
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.jku-adm-journey-line.jku-adm-jl-filled .jku-adm-jl-fill {
    width: 100%;
}

.jku-adm-journey-line.jku-adm-jl-anim {
    overflow: visible;
}

.jku-adm-jl-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #EDB600;
    border-radius: 50%;
    top: -5px;
    box-shadow: 0 0 10px rgba(237, 182, 0, 0.6);
    animation: jkuAdmWalk 3.5s ease-in-out infinite;
}

@keyframes jkuAdmWalk {
    0% {
        left: 0;
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    92% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* ==================== LAYOUT ==================== */
.jku-adm-wrapper {
    position: relative;
}

.jku-adm-mobile-btn {
    display: none;
    width: 100%;
    padding: 13px 18px;
    background: #034B9F;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    text-align: left;
}

.jku-adm-mobile-btn i {
    margin-right: 10px;
}

.jku-adm-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1055;
}

.jku-adm-overlay.jku-adm-show {
    display: block;
}

/* ==================== SIDEBAR ==================== */
.jku-adm-sidebar-col {
    position: relative;
}

.jku-adm-sidebar {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(3, 75, 159, 0.13);
    padding: 0;
    max-height: calc(100vh - 116px);
    overflow: hidden;
    border: none;
}

.jku-adm-nav-links-wrap {
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px 0 12px;
    max-height: calc(100vh - 170px);
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

.jku-adm-nav-links-wrap::-webkit-scrollbar {
    width: 3px;
}

.jku-adm-nav-links-wrap::-webkit-scrollbar-track {
    background: transparent;
}

.jku-adm-nav-links-wrap::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 10px;
    transition: background 0.35s ease;
}

.jku-adm-nav-links-wrap:hover {
    scrollbar-color: rgba(3, 75, 159, 0.28) transparent;
}

.jku-adm-nav-links-wrap:hover::-webkit-scrollbar-thumb {
    background: rgba(3, 75, 159, 0.28);
    box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.5);
}

.jku-adm-nav-head {
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #FFFFFF;
    padding: 18px 20px;
    background: linear-gradient(135deg, #034B9F 0%, #0660c7 100%);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 2;
    border-bottom: none;
}

.jku-adm-nav-head-label { display: flex; align-items: center; gap: 10px; }

.jku-adm-sidebar-close {
    display: none;
    background: rgba(255,255,255,.18);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}
.jku-adm-sidebar-close:hover { background: rgba(255,255,255,.32); }

.jku-adm-nav-head i {
    font-size: 16px;
}

.jku-adm-nav-link {
    display: flex;
    align-items: center;
    padding: 13px 18px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    color: #3a4a6a;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.22s ease;
    line-height: 1.4;
    margin: 0;
    border-bottom: 1px solid #f0f4ff;
    position: relative;
}

.jku-adm-nav-link:last-child {
    border-bottom: none;
}

.jku-adm-nav-link:hover {
    color: #034B9F;
    background: linear-gradient(90deg, rgba(3, 75, 159, 0.07) 0%, transparent 100%);
    border-left-color: #034B9F;
    text-decoration: none;
}

.jku-adm-nav-link.jku-adm-nav-active {
    color: #B84110;
    background: linear-gradient(90deg, rgba(184, 65, 16, 0.08) 0%, rgba(184, 65, 16, 0.02) 100%);
    border-left-color: #B84110;
    font-weight: 700;
    box-shadow: none;
    transform: none;
}

.jku-adm-nav-link.jku-adm-nav-active:hover {
    color: #B84110;
    background: linear-gradient(90deg, rgba(184, 65, 16, 0.08) 0%, rgba(184, 65, 16, 0.02) 100%);
}

.jku-adm-nav-link i {
    display: none;
}

/* ==================== CONTENT AREA ==================== */
.jku-adm-content {
    padding-left: 28px;
}

.jku-adm-sec {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 34px 30px;
    margin-bottom: 26px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #e8e8e8;
    scroll-margin-top: 108px;
}

.jku-adm-sec-title {
    font-family: "Source Sans 3", sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #B84110;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 2px solid #FFF4EA;
}

.jku-adm-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #B84110;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
}

.jku-adm-h3 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a3a6e;
    margin: 32px 0 16px;
    padding: 0 0 12px 0;
    background: none;
    border-left: none;
    border-radius: 0;
    border-bottom: 1.5px solid #e0e9f8;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.jku-adm-h4 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #262626;
    margin: 16px 0 6px;
    padding: 4px 0 4px 10px;
    border-left: 3px solid #e0e0e0;
}

/* ─── Application Procedure – card grid with arrows ─── */
.jku-adm-app-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.jku-adm-app-card {
    padding: 12px 18px;
    border: 1px solid #dde6f5;
    background: #fff;
    border-radius: 8px;
    transition: background .2s;
}

.jku-adm-app-card:hover {
    background: #f5f8ff;
}

.jku-adm-app-card__title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.jku-adm-app-card--blue .jku-adm-app-card__title {
    color: #034B9F;
}

.jku-adm-app-card--orange .jku-adm-app-card__title {
    color: #034B9F;
}

.jku-adm-app-card__text {
    font-size: 16px;
    color: #262626;
    line-height: 1.65;
    margin: 0;
}

.jku-adm-app-card__list {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
}

.jku-adm-app-card__list li {
    font-size: 16px;
    color: #262626;
    padding: 5px 0 5px 20px;
    text-indent: -20px;
    line-height: 1.6;
    border-bottom: 1px dashed #dde6f5;
}

.jku-adm-app-card__list li:last-child {
    border-bottom: none;
}

.jku-adm-app-card__list li::before {
    content: '▸';
    color: #B84110;
    font-size: 15px;
    margin-right: 7px;
    vertical-align: middle;
}

.jku-adm-app-card__list--no-icon li::before,
.jku-adm-app-card__list li.no-icon::before { content: none; }
.jku-adm-app-card__list--no-icon li,
.jku-adm-app-card__list li.no-icon { padding-left: 0; text-indent: 0; }

.jku-adm-app-card__list li ul li { padding-left: 0; text-indent: 0; border-bottom: none; }
.jku-adm-app-card__list li ul li::before { content: none; }

.jku-adm-app-card__title i {
    margin-right: 7px;
    font-size: 11px;
    vertical-align: middle;
    opacity: 0.85;
}

/* ─── Admission Procedure – flowchart tiles (demo2 style) ─── */
@keyframes jkuFtIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jku-adm-ft {
    margin-bottom: 8px;
}

.jku-adm-ft-row {
    display: grid;
    grid-template-columns: 1fr 36px 1fr 36px 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 2px;
}

.jku-adm-ft-row--4 {
    grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr;
}

.jku-adm-ft-row--2 {
    grid-template-columns: 1fr 36px 1fr;
    max-width: 60%;
    margin-left: auto;
    margin-right: 0;
}

.jku-adm-ft-tile {
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
    border: 1.5px solid #dde6f5;
    border-radius: 12px;
    padding: 16px 14px;
    text-align: center;
    position: relative;
    transition: transform .25s ease, box-shadow .25s, border-color .25s;
    opacity: 0;
    transform: translateY(16px);
}

.jku-adm-ft-tile.jku-vis {
    animation: jkuFtIn .55s ease forwards;
}

.jku-adm-ft-tile.jku-ft-active {
    border-color: #034B9F;
    background: linear-gradient(180deg, #e8f0fe 0%, #d4e4fc 100%);
    box-shadow: 0 4px 18px rgba(3, 75, 159, .2);
    transform: scale(1.04);
    z-index: 1;
}

.jku-adm-ft-tile.jku-ft-active-last {
    border-color: #1a7f45;
    background: linear-gradient(180deg, #e6f5ec 0%, #c8ecd7 100%);
    box-shadow: 0 4px 18px rgba(26, 127, 69, .25);
    transform: scale(1.04);
    z-index: 1;
}

.jku-adm-ft-tile::after {
    content: attr(data-n);
    position: absolute;
    right: 6px;
    bottom: 4px;
    font-size: 26px;
    font-weight: 800;
    color: rgba(3, 75, 159, .07);
    line-height: 1;
    pointer-events: none;
}

.jku-adm-ft-title {
    position: relative;
    z-index: 1;
}

.jku-adm-ft-sub {
    position: relative;
    z-index: 1;
}

.jku-adm-ft-tile:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(3, 75, 159, .13);
    border-color: #034B9F;
}

.jku-adm-ft-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #1a2a4a;
    line-height: 1.4;
    margin-bottom: 4px;
}

.jku-adm-ft-sub {
    font-size: 11.5px;
    color: #6a7a9a;
    line-height: 1.45;
    margin-top: 4px;
}

.jku-adm-ft-arr {
    text-align: center;
    color: #b0c4e8;
    font-size: 16px;
}

.jku-adm-ft-down {
    text-align: right;
    color: #b0c4e8;
    font-size: 16px;
    padding: 4px 42px 4px 0;
}

.jku-adm-ft-down--left {
    text-align: left;
    padding: 4px 0 4px 42px;
}

/* ─── Alert boxes (anti-ragging) ─── */
.jku-adm-alert {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border-radius: 10px;
    padding: 16px 18px;
    border-left: 4px solid;
    margin-bottom: 12px;
}

.jku-adm-alert:last-child {
    margin-bottom: 0;
}

.jku-adm-alert--warn {
    background: #fff9f0;
    border-color: #B84110;
}

.jku-adm-alert--info {
    background: #f0f5ff;
    border-color: #034B9F;
}

.jku-adm-alert--success {
    background: #f0fff8;
    border-color: #1a7f45;
}

.jku-adm-alert__ico {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.jku-adm-alert--warn .jku-adm-alert__ico {
    color: #B84110;
}

.jku-adm-alert--info .jku-adm-alert__ico {
    color: #034B9F;
}

.jku-adm-alert--success .jku-adm-alert__ico {
    color: #1a7f45;
}

.jku-adm-alert__text {
    font-size: 16px;
    color: #262626;
    line-height: 1.65;
    flex: 1;
}

/* ─── Download Documents – 4 box grid (demo2 style) ─── */
.jku-adm-dl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}

.jku-adm-dl-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    border: 1.5px solid #dde6f5;
    border-radius: 10px;
    cursor: pointer;
    transition: background .22s, border-color .22s, transform .22s;
    background: #fff;
}

.jku-adm-dl-card:hover {
    background: #f8f9fc;
    border-color: #034B9F;
    transform: translateX(5px);
}

.jku-adm-dl-card__icon {
    font-size: 22px;
    color: #034B9F;
    flex-shrink: 0;
}

.jku-adm-dl-card__name {
    font-size: 14px;
    font-weight: 600;
    color: #262626;
    flex: 1;
}

.jku-adm-dl-card__arr {
    font-size: 12px;
    color: #999;
}

@media (max-width: 576px) {
    .jku-adm-dl-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Scholarships – responsive image layout ─── */
.jku-adm-scholar-mobile-img { display: none !important; }
.jku-adm-scholar-mid-img { display: none !important; margin: 12px 0; }
.jku-adm-scholar-desktop-pair { display: grid; }

/* ─── Fee instalment list ─── */
.jku-adm-fee-instalment-list {
    text-align: left;
    font-size: 14.5px;
    color: #555;
    line-height: 1.7;
    margin: 6px 0 0;
    padding-left: 18px;
}

/* ─── App procedure grid (section 4 detail cards) ─── */
#jku-adm-procedure .jku-adm-app-grid { margin-top: 16px; }

/* ─── Lateral entry nested sublist ─── */
.jku-adm-lateral-sublist { margin-top: 6px; padding-left: 16px; }

/* ─── App procedure image carousel (3 cols on desktop) ─── */
.jku-adm-img-pair.jku-adm-img-carousel { grid-template-columns: repeat(3, 1fr); }

/* ─── Scholarships – 3 card grid (demo2 style) ─── */
.jku-adm-scholar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 8px;
}

.jku-adm-scholar-card {
    background: #f8f9fc;
    border: 1.5px solid #dde6f5;
    border-radius: 12px;
    padding: 22px 16px;
    text-align: center;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}

.jku-adm-scholar-card:hover {
    transform: translateY(-4px);
    border-color: #034B9F;
    box-shadow: 0 6px 20px rgba(3, 75, 159, .1);
}

.jku-adm-scholar-card__icon {
    font-size: 34px;
    color: #034B9F;
    margin-bottom: 10px;
}

.jku-adm-scholar-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 7px;
}

.jku-adm-scholar-card__text {
    font-size: 16px;
    color: #000;
    line-height: 1.55;
}

/* ─── Fee Structure – 3 card grid (demo2 style) ─── */
.jku-adm-fee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px;
}

.jku-adm-fee-card {
    border-radius: 12px;
    padding: 24px 18px;
    text-align: center;
    border: 1.5px solid #dde6f5;
    transition: transform .25s, box-shadow .25s;
}

.jku-adm-fee-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(3, 75, 159, .1);
}

.jku-adm-fee-card--blue {
    background: linear-gradient(180deg, #f0f5ff, #fff);
    border-top: 3px solid #034B9F;
}

.jku-adm-fee-card--orange {
    background: linear-gradient(180deg, #fff5f0, #fff);
    border-top: 3px solid #B84110;
}

.jku-adm-fee-card--green {
    background: linear-gradient(180deg, #f0fff8, #fff);
    border-top: 3px solid #1a7f45;
}

.jku-adm-fee-card__icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.jku-adm-fee-card--blue .jku-adm-fee-card__icon {
    color: #034B9F;
}

.jku-adm-fee-card--orange .jku-adm-fee-card__icon {
    color: #B84110;
}

.jku-adm-fee-card--green .jku-adm-fee-card__icon {
    color: #1a7f45;
}

.jku-adm-fee-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 8px;
}

.jku-adm-fee-card__text {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}

/* Numbered i, ii, iii list */
.jku-adm-num-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 18px;
    counter-reset: jku-roman;
}

.jku-adm-num-list li {
    position: relative;
    padding: 13px 14px 13px 52px;
    margin-bottom: 8px;
    background: #f8faff;
    border: 1px solid rgba(3, 75, 159, 0.1);
    border-radius: 8px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.65;
    counter-increment: jku-roman;
}

.jku-adm-num-list li::before {
    content: counter(jku-roman, lower-roman) ".";
    position: absolute;
    left: 14px;
    top: 13px;
    font-weight: 800;
    color: #034B9F;
    font-size: 13px;
    width: 30px;
    font-family: "Source Sans 3", sans-serif;
    text-transform: lowercase;
}

.jku-adm-num-list li strong {
    display: block;
    font-size: 15.5px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 4px;
}

/* ==================== STEP CARDS (Admission Procedure) ==================== */
.jku-adm-steps {
    margin: 28px 0 0;
}

.jku-adm-step {
    display: flex;
    gap: 18px;
    margin-bottom: 14px;
    padding: 20px 22px;
    background: #ffffff;
    border: 1px solid rgba(3, 75, 159, 0.1);
    border-radius: 14px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.jku-adm-step:hover {
    border-color: rgba(3, 75, 159, 0.22);
    box-shadow: 0 6px 22px rgba(3, 75, 159, 0.1);
    transform: translateY(-2px);
}

.jku-adm-step-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    margin-top: 3px;
}

.jku-adm-step-body {
    flex: 1;
}

.jku-adm-step-title {
    font-family: "Source Sans 3", sans-serif;
    font-size: 16.5px;
    font-weight: 700;
    color: #1a3a6e;
    margin: 0 0 12px;
}

.jku-adm-p {
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.8;
    margin-bottom: 12px;
}

.jku-adm-ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.jku-adm-ul li {
    padding: 6px 0 6px 22px;
    position: relative;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    color: #262626;
    line-height: 1.6;
}

.jku-adm-ul li::before {
    content: "\f0da";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 13px;
    color: #034B9F;
    position: absolute;
    left: 0;
    top: 11px;
}

/* Plain variant: no bullets (used in Admission Calendar) */
.jku-adm-ul--plain li { padding-left: 0; }
.jku-adm-ul--plain li::before { display: none; }

/* ==================== HERO BANNER ==================== */
.jku-adm-hero {
    position: relative;
    background: #034B9F;
    padding: 80px 0;
    overflow: hidden;
}

.jku-adm-hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.jku-adm-hero-h2 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
}

.jku-adm-hero-p {
    font-family: "Source Sans 3", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    margin: 0;
}

/* ==================== SECTION IMAGES ==================== */
.jku-adm-sec-banner {
    width: 100%;
    height: auto;
    max-height: 413px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    margin: 4px 0 24px;
    display: block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .jku-adm-hero {
        padding: 70px 0;
    }

    .jku-adm-hero-h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .jku-adm-sec-banner {
        max-height: 200px;
    }

    .jku-adm-hero {
        padding: 60px 0;
    }

    .jku-adm-hero-h2 {
        font-size: 32px;
    }

    .jku-adm-hero-text {
        padding: 0 16px;
    }

    .jku-adm-sec-title {
        font-size: 24px;
    }
}

@media (max-width: 575.98px) {
    .jku-adm-hero {
        padding: 40px 0;
    }

    .jku-adm-hero-h2 {
        font-size: 28px;
    }
}

.jku-adm-callout {
    background: #FFF4EA;
    border-left: 4px solid #B84110;
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    margin: 14px 0;
}

.jku-adm-callout.jku-adm-callout-blue {
    background: rgba(3, 75, 159, 0.06);
    border-left-color: #034B9F;
}

.jku-adm-callout.jku-adm-callout-gold {
    background: rgba(237, 182, 0, 0.08);
    border-left-color: #EDB600;
}

.jku-adm-callout.jku-adm-callout-red {
    background: rgba(220, 53, 69, 0.05);
    border-left-color: #dc3545;
}

.jku-adm-callout p {
    margin: 0;
    font-family: "Source Sans 3", sans-serif;
    font-size: 15px;
    color: #262626;
    line-height: 1.6;
}

/* ==================== DATE CARDS ==================== */
.jku-adm-date-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin: 16px 0;
}

.jku-adm-date-card {
    background: #FFF4EA;
    border-radius: 10px;
    padding: 16px 18px;
    text-align: center;
    border: 1px solid rgba(184, 65, 16, 0.1);
}

.jku-adm-date-lbl {
    font-family: "Source Sans 3", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #B84110;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.jku-adm-date-val {
    font-family: "Source Sans 3", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #034B9F;
}

/* ==================== ADMISSION FLOWCHART ==================== */
.jku-adm-flow-wrap {
    overflow: clip;
    margin: 24px 0 8px;
    background: linear-gradient(135deg, #f8fbff 0%, #f0f5ff 50%, #f8f5ff 100%);
    border-radius: 14px;
    padding: 28px 20px;
    border: 1px solid rgba(3, 75, 159, 0.08);
    position: relative;
}

.jku-adm-flow-wrap::before {
    content: "\f554";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    color: rgba(3, 75, 159, 0.08);
    animation: jkuAdmWalkStudent 4s ease-in-out infinite;
}

@keyframes jkuAdmWalkStudent {

    0%,
    100% {
        transform: translateX(0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateX(-12px) scale(1.05);
        opacity: 1;
    }
}

@keyframes jkuAdmPulse {
    0% {
        transform: scale(0.7);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.jku-adm-flow {
    min-width: 320px;
    position: relative;
}

/* Horizontal row (3 steps in a row) */
.jku-adm-flow-hrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 0;
}

.jku-adm-flow-box {
    background: #FFFFFF;
    border: 2px solid #034B9F;
    border-radius: 10px;
    padding: 14px 16px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
    flex: 1;
    min-width: 120px;
    max-width: 220px;
}

.jku-adm-flow-box.jku-adm-flow-wide {
    max-width: 100%;
    flex: unset;
    width: 100%;
    background: rgba(3, 75, 159, 0.04);
}

.jku-adm-flow-box.jku-adm-flow-pi {
    background: rgba(184, 65, 16, 0.04);
    border-color: #B84110;
    max-width: 280px;
    text-align: left;
}

.jku-adm-flow-box.jku-adm-flow-qualified {
    background: rgba(3, 75, 159, 0.06);
    border-color: #034B9F;
    max-width: 130px;
    font-weight: 700;
    color: #034B9F;
    font-size: 16px;
}

.jku-adm-flow-box.jku-adm-flow-done {
    background: rgba(40, 167, 69, 0.06);
    border-color: #28a745;
}

.jku-adm-flow-box.jku-adm-fv {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 3px 12px rgba(3, 75, 159, 0.1);
}

.jku-adm-flow-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(3, 75, 159, 0.18);
    border-color: #B84110;
}

.jku-adm-flow-icon {
    width: 38px;
    height: 38px;
    background: #034B9F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: #FFFFFF;
    font-size: 16px;
}

.jku-adm-flow-box.jku-adm-flow-pi .jku-adm-flow-icon {
    background: #B84110;
}

.jku-adm-flow-box.jku-adm-flow-done .jku-adm-flow-icon {
    background: #28a745;
}

.jku-adm-flow-lbl {
    font-family: "Source Sans 3", sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #262626;
    line-height: 1.4;
}

.jku-adm-flow-sub {
    font-family: "Source Sans 3", sans-serif;
    font-size: 12px;
    color: #555;
    margin-top: 5px;
    line-height: 1.5;
}

/* Horizontal arrow between boxes */
.jku-adm-flow-harrow {
    flex-shrink: 0;
    width: 36px;
    text-align: center;
    color: #034B9F;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 0 2px;
    margin-bottom: 10px;
}

.jku-adm-flow-harrow.jku-adm-fv {
    opacity: 1;
}

/* Vertical down arrow */
.jku-adm-flow-varrow {
    text-align: center;
    color: #034B9F;
    font-size: 22px;
    padding: 4px 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    line-height: 1;
    position: relative;
}

.jku-adm-flow-varrow.jku-adm-fv {
    opacity: 1;
}

.jku-adm-flow-varrow.jku-adm-fv::after {
    content: "\f554";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: calc(50% + 18px);
    top: 0;
    font-size: 12px;
    color: #034B9F;
    animation: jkuAdmStepDown 2s ease-in-out infinite;
}

@keyframes jkuAdmStepDown {
    0% {
        transform: translateY(-4px);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: translateY(8px);
        opacity: 0;
    }
}

/* Phase label */
.jku-adm-flow-phase {
    font-family: "Source Sans 3", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFFFFF;
    background: #034B9F;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.jku-adm-flow-phase.jku-adm-fp-orange {
    background: #B84110;
}

.jku-adm-flow-phase.jku-adm-fp-green {
    background: #28a745;
}

/* Bottom snake rows */
.jku-adm-flow-snake {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

/* ==================== SNAKE FLOWCHART ==================== */
@keyframes jkuSfBoxIn {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.92);
    }

    60% {
        opacity: 1;
        transform: translateY(-4px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes jkuSfArrIn {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }

    60% {
        opacity: 1;
        transform: scaleX(1.2);
    }

    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes jkuSfConnIn {
    0% {
        opacity: 0;
        transform: scaleY(0);
    }

    60% {
        opacity: 1;
        transform: scaleY(1.15);
    }

    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.jku-adm-snake-flow {
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, #edf4ff 0%, #e5efff 100%);
    border-radius: 12px;
    padding: 32px 22px;
    border: 1px solid #cddcf7;
    margin: 20px 0 28px;
    gap: 0;
}

.jku-adm-sf-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 2px;
}

.jku-adm-sf-box {
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    border: 1.5px solid #c6d8f7;
    border-top: 3px solid #034B9F;
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
    flex: 1;
    min-width: 0;
    font-family: "Source Sans 3", sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #1a2a4a;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(18px) scale(0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(3, 75, 159, 0.08);
    transition: box-shadow 0.3s ease, border-top-color 0.3s ease, transform 0.25s ease;
}

.jku-adm-sf-box.jku-adm-fv {
    animation: jkuSfBoxIn 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.jku-adm-sf-box:hover {
    box-shadow: 0 8px 24px rgba(3, 75, 159, 0.16);
    border-top-color: #B84110;
    transform: translateY(-3px) !important;
    background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
}

.jku-adm-sf-box-pi {
    flex: 1.8;
    border-top-color: #B84110;
    background: linear-gradient(180deg, #fff 0%, #fff7f4 100%);
}

.jku-adm-sf-box-wide {
    flex: 1.8;
}

.jku-adm-sf-box-done {
    border-top-color: #1a7f45;
    background: linear-gradient(180deg, #fff 0%, #f3faf6 100%);
}

.jku-adm-sf-box small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #556;
    margin-top: 6px;
    line-height: 1.5;
}

.jku-adm-sf-arr {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    color: #034B9F;
    font-size: 20px;
    opacity: 0;
    transform: scaleX(0);
    align-self: center;
}

.jku-adm-sf-arr.jku-adm-fv {
    animation: jkuSfArrIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.jku-adm-sf-connect {
    display: flex;
    align-items: center;
    height: 36px;
    color: #034B9F;
    font-size: 24px;
    opacity: 0;
    transform: scaleY(0);
}

.jku-adm-sf-connect.jku-adm-fv {
    animation: jkuSfConnIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.jku-adm-sf-cr {
    justify-content: flex-end;
    padding-right: 8px;
}

.jku-adm-sf-cl {
    justify-content: flex-start;
    padding-left: 8px;
}

.jku-adm-sf-lbl {
    font-family: "Source Sans 3", sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
}

.jku-adm-sf-sub {
    font-family: "Source Sans 3", sans-serif;
    font-size: 12px;
    color: #555;
    margin-top: 5px;
    line-height: 1.45;
}

/* ==================== MILESTONE TIMELINE ==================== */
.jku-adm-milestones {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 20px 0 28px;
}

/* Milestone card colour variants */
.jku-adm-ms-card--orange { --ms-color: #B84110; }
.jku-adm-ms-card--orange .jku-adm-ms-icon { background: linear-gradient(135deg, #B84110, #d4591c); }
.jku-adm-ms-card--navy   { --ms-color: #034B9F; }
.jku-adm-ms-card--navy   .jku-adm-ms-icon { background: linear-gradient(135deg, #034B9F, #1a6dd8); }
.jku-adm-ms-card--green  { --ms-color: #1a7f45; }
.jku-adm-ms-card--green  .jku-adm-ms-icon { background: linear-gradient(135deg, #1a7f45, #28a660); }

.jku-adm-ms-card {
    flex: 1;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    border: 1.5px solid #c6d8f7;
    border-top: 3px solid var(--ms-color, #034B9F);
    border-radius: 12px;
    padding: 22px 14px 18px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(3, 75, 159, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    cursor: default;
}

.jku-adm-ms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(3, 75, 159, 0.14);
}

.jku-adm-ms-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.jku-adm-ms-date {
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ms-color, #034B9F);
    margin-bottom: 5px;
}

.jku-adm-ms-label {
    font-family: "Source Sans 3", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #3a4a6a;
    line-height: 1.45;
}

.jku-adm-ms-sep {
    color: #b0c4e8;
    font-size: 22px;
    padding: 0 10px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .jku-adm-milestones {
        flex-direction: column;
        gap: 8px;
    }

    .jku-adm-ms-sep {
        transform: rotate(90deg);
    }

    .jku-adm-ms-card {
        width: 100%;
    }
}

.jku-adm-img-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0;
}

.jku-adm-img-pair img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
}

.jku-adm-img-float-r {
    float: right;
    width: 240px;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 0 14px 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
}

@media(max-width:767px) {
    .jku-adm-sf-row {
        flex-wrap: wrap;
        gap: 6px;
    }

    .jku-adm-sf-box {
        flex: 1 1 120px;
    }

    .jku-adm-sf-arr,
    .jku-adm-sf-connect {
        display: none;
    }

    .jku-adm-img-float-r {
        float: none;
        width: 100%;
        margin: 0 0 12px;
    }

    .jku-adm-img-pair {
        grid-template-columns: 1fr;
    }
}

/* Banner top-position variant */
.jku-adm-sec-banner--top { object-position: top center; margin-top: 12px; }

/* Reservation table */
.jku-adm-table { width: 100%; border-collapse: collapse; margin: 10px 0; }
.jku-adm-table thead tr { background: #034B9F; color: #fff; }
.jku-adm-table th { padding: 10px; text-align: left; border: 1px solid #034B9F; }
.jku-adm-table tbody tr:nth-child(odd) { background: #f9f9f9; }
.jku-adm-table td { padding: 10px; border: 1px solid #dde6f5; }

/* Document upload sub-list */
.jku-adm-doc-sublist { list-style: circle; padding-left: 18px; margin-top: 4px; }
.jku-adm-doc-sublist li { display: list-item; border: none; padding: 2px 0; font-size: 16px; }

/* Important italic note */
.jku-adm-note-important {
    font-style: italic;
    margin-top: 16px;
    color: #B84110;
    font-weight: bold;
    font-size: 14px;
}

/* tbl-wrap margin inside card */
.jku-adm-app-card .jku-adm-tbl-wrap { margin-top: 10px; margin-bottom: 0; }
/* App card list top margin */
.jku-adm-app-card .jku-adm-app-card__list { margin-top: 10px; }
/* Nav links inside content */
.jku-adm-ul a, .jku-adm-app-card__list a { color: #034B9F; }

/* ==================== TABLES ==================== */
.jku-adm-tbl-wrap {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    /* prevent table horizontal scroll from blocking page vertical scroll */
    margin: 16px 0;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
}

.jku-adm-tbl {
    width: 100%;
    border-collapse: collapse;
    font-family: "Source Sans 3", sans-serif;
    font-size: 14.5px;
}

.jku-adm-tbl thead th {
    background: #B84110;
    color: #FFFFFF;
    padding: 12px 16px;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.jku-adm-tbl tbody td {
    padding: 11px 16px;
    border: 1px solid #e8e8e8;
    color: #262626;
    text-align: center;
}

.jku-adm-tbl tbody td:first-child {
    text-align: left;
    font-weight: 600;
}

.jku-adm-tbl tbody tr:hover {
    background: #FFF4EA;
}

/* ==================== DOWNLOADS ==================== */
.jku-adm-dl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 8px;
}

.jku-adm-dl-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid rgba(3,75,159,.08);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(3,75,159,.06);
    cursor: pointer;
    transition: box-shadow .2s, transform .2s;
    text-decoration: none;
}

.jku-adm-dl-card:hover {
    box-shadow: 0 6px 24px rgba(3,75,159,.1);
    transform: translateY(-2px);
    text-decoration: none;
}

.jku-adm-dl-card__icon {
    font-size: 22px;
    color: #034B9F;
    flex-shrink: 0;
}

.jku-adm-dl-card__name {
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a2a4a;
    flex: 1;
    text-align: left;
}

.jku-adm-dl-card__arr {
    font-size: 12px;
    color: #6b7ea8;
    transition: transform .2s;
}

.jku-adm-dl-card:hover .jku-adm-dl-card__arr {
    transform: translateX(4px);
    color: #034B9F;
}

/* ── Download Documents – row list layout ── */
.jku-adm-dl-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.jku-adm-dl-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #fff;
    border: 1.5px solid #dde6f5;
    border-radius: 12px;
    text-decoration: none !important;
    transition: background .2s, transform .2s, border-color .2s;
}
.jku-adm-dl-row:hover {
    background: #f0f6ff;
    border-color: #034B9F;
    transform: translateX(5px);
}
.jku-adm-dl-row__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8f0fe 0%, #d4e4fc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #034B9F;
    flex-shrink: 0;
}
.jku-adm-dl-row__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.jku-adm-dl-row__name {
    font-size: 15px;
    font-weight: 700;
    color: #1a2a4a;
    font-family: "Source Sans 3", sans-serif;
    line-height: 1.3;
}
.jku-adm-dl-row__desc {
    font-size: 13px;
    color: #6a7a9a;
    margin-top: 3px;
    font-family: "Source Sans 3", sans-serif;
}
.jku-adm-dl-row__btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #034B9F;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 20px;
    flex-shrink: 0;
    font-family: "Source Sans 3", sans-serif;
    transition: background .2s;
}
.jku-adm-dl-row:hover .jku-adm-dl-row__btn { background: #0558b8; }

/* ── Downloads OR divider ── */
.jku-adm-dl-or {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0 14px;
    color: #aab4cc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.jku-adm-dl-or::before,
.jku-adm-dl-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #dde6f5;
}
.jku-adm-dl-apply-wrap {
    display: flex;
    justify-content: center;
    padding: 4px 0 2px;
}

/* ── Apply Now Button (inline in list) ── */
@keyframes jkuApplyPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(184,65,16,.5); }
    50%       { opacity: .82; box-shadow: 0 0 0 6px rgba(184,65,16,0); }
}
.jku-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #B84110 0%, #d4591c 100%);
    color: #fff !important;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none !important;
    padding: 4px 12px;
    border-radius: 20px;
    vertical-align: middle;
    animation: jkuApplyPulse 1.8s ease-in-out infinite;
    transition: background .2s, transform .15s;
}
.jku-apply-btn:hover {
    background: linear-gradient(135deg, #9a350d 0%, #b84110 100%);
    transform: scale(1.05);
    animation: none;
}
.jku-apply-btn i { font-size: 11px; }

/* ── Apply Now CTA button (Download Documents section) ── */
@keyframes jkuDlApplyPulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(184,65,16,.25), 0 0 0 0 rgba(184,65,16,.45); }
    50%       { box-shadow: 0 4px 24px rgba(184,65,16,.35), 0 0 0 10px rgba(184,65,16,0); }
}
.jku-adm-apply-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, #B84110 0%, #d4591c 100%);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    padding: 10px 24px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    animation: jkuDlApplyPulse 1.8s ease-in-out infinite;
    transition: background .2s, transform .15s;
}
.jku-adm-apply-cta:hover {
    background: linear-gradient(135deg, #9a350d 0%, #b84110 100%);
    transform: scale(1.04);
    animation: none;
    color: #fff !important;
}
.jku-adm-apply-cta__arr {
    font-size: 13px;
    transition: transform .2s;
}
.jku-adm-apply-cta:hover .jku-adm-apply-cta__arr { transform: translateX(4px); }

@media (max-width: 1199px) {
    .jku-adm-dl-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .jku-adm-dl-grid { grid-template-columns: 1fr; }
}

/* ==================== HELPDESK ==================== */
@keyframes jkuHdIconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(184, 65, 16, 0.4);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 4px 22px rgba(184, 65, 16, 0.65);
    }
}

@keyframes jkuHdCardIn {
    0% {
        opacity: 0;
        transform: translateY(14px) scale(0.97);
    }

    70% {
        opacity: 1;
        transform: translateY(-2px) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.jku-adm-helpdesk {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e0e8f4;
    box-shadow: 0 6px 28px rgba(3, 75, 159, 0.08);
}

.jku-adm-hd-header {
    background: linear-gradient(135deg, #034B9F 0%, #0a5cc8 100%);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.jku-adm-hd-header::before {
    content: '';
    position: absolute;
    right: -10px;
    top: -30px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 28px solid rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.jku-adm-hd-header::after {
    content: '';
    position: absolute;
    right: 60px;
    bottom: -40px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 20px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.jku-adm-hd-head-icon {
    width: 54px;
    height: 54px;
    background: #B84110;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
    animation: jkuHdIconPulse 3s ease-in-out infinite;
    box-shadow: 0 4px 16px rgba(184, 65, 16, 0.4);
}

.jku-adm-helpdesk-title {
    font-family: "Source Sans 3", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 3px;
}

.jku-adm-helpdesk-sub {
    font-family: "Source Sans 3", sans-serif;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.jku-adm-hd-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 22px 24px 24px;
    background: #f5f8fe;
    border-top: 1px solid #e8eef8;
}

.jku-adm-hd-card {
    background: #FFFFFF;
    border: 1px solid #e4ecf8;
    border-top: 3px solid #034B9F;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.34, 1.3, 0.64, 1);
    animation: jkuHdCardIn 0.55s cubic-bezier(0.34, 1.3, 0.64, 1) both;
    box-shadow: 0 2px 8px rgba(3, 75, 159, 0.05);
}

.jku-adm-hd-card:nth-child(1) {
    animation-delay: 0.08s;
}

.jku-adm-hd-card:nth-child(2) {
    animation-delay: 0.18s;
}

.jku-adm-hd-card:nth-child(3) {
    animation-delay: 0.28s;
}

.jku-adm-hd-card:nth-child(4) {
    animation-delay: 0.38s;
}

.jku-adm-hd-card:nth-child(5) {
    animation-delay: 0.48s;
}

.jku-adm-hd-card:hover {
    box-shadow: 0 8px 24px rgba(3, 75, 159, 0.13);
    transform: translateY(-3px);
    border-color: #034B9F;
    border-top-color: #B84110;
    text-decoration: none;
}

.jku-adm-hd-card-email {
    border-top-color: #B84110;
}

.jku-adm-hd-card-email:hover {
    border-color: #B84110;
}

.jku-adm-hd-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(3, 75, 159, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #034B9F;
    flex-shrink: 0;
    transition: all 0.28s ease;
}

.jku-adm-hd-card:hover .jku-adm-hd-card-icon {
    background: #034B9F;
    color: #FFFFFF;
    transform: scale(1.08);
}

.jku-adm-hd-card-email .jku-adm-hd-card-icon {
    background: rgba(184, 65, 16, 0.08);
    color: #B84110;
}

.jku-adm-hd-card-email:hover .jku-adm-hd-card-icon {
    background: #B84110;
    color: #FFFFFF;
}

.jku-adm-hd-card-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.jku-adm-hd-card-lbl {
    font-size: 10.5px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    font-weight: 700;
    font-family: "Source Sans 3", sans-serif;
    margin-bottom: 2px;
}

.jku-adm-hd-card-val {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 700;
    font-family: "Source Sans 3", sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media(max-width:767px) {
    .jku-adm-hd-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:480px) {
    .jku-adm-hd-cards {
        grid-template-columns: 1fr;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .jku-adm-content {
        padding-left: 0;
    }

    .jku-adm-sidebar-col {
        position: fixed;
        top: 0;
        left: 0;
        width: 290px;
        height: auto;
        z-index: 1060;
        background: #FFFFFF;
        overflow: visible;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    box-shadow 0.3s ease;
    }

    .jku-adm-sidebar-col.jku-adm-show {
        transform: translateX(0);
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.18);
    }

    .jku-adm-sidebar-close { display: inline-flex; }

    .jku-adm-sidebar {
        position: static;
        border-radius: 0;
        box-shadow: none;
        border: none;
        max-height: none;
        overflow: visible;
    }

    .jku-adm-nav-head {
        position: sticky;
        top: 0;
        z-index: 3;
    }

    .jku-adm-nav-links-wrap {
        max-height: 65vh;
        max-height: 65dvh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding-bottom: 16px;
    }

    .jku-adm-mobile-btn {
        display: block;
        position: sticky;
        top: 66px;
        z-index: 100;
        width: 100%;
        border-radius: 8px;
        padding: 13px 18px;
        margin-bottom: 16px;
        box-shadow: 0 3px 14px rgba(3, 75, 159, 0.28);
        text-align: left;
    }

    .jku-adm-journey-line {
        flex: 0 0 40px;
    }

    .jku-adm-journey-icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .jku-adm-journey-label {
        font-size: 12px;
    }

    .jku-adm-sf-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .jku-adm-sf-box {
        min-width: 120px;
        flex: 0 1 auto;
    }

    .jku-adm-sf-arr {
        width: 24px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .jku-adm-sf-row {
        flex-direction: column;
        align-items: center;
    }

    .jku-adm-sf-arr {
        transform: rotate(90deg);
        width: auto;
        height: 28px;
    }

    .jku-adm-sf-box {
        width: 100%;
        max-width: 320px;
    }

    .jku-adm-sf-connect {
        height: 28px;
        justify-content: center !important;
        padding: 0 !important;
    }

    .jku-adm-sec {
        padding: 22px 16px;
    }

    .jku-adm-sec-title {
        font-size: 21px;
    }

    .jku-adm-date-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .jku-adm-journey {
        padding: 28px 0 22px;
    }

    .jku-adm-journey-title {
        font-size: 20px;
        margin-bottom: 22px;
    }

    .jku-adm-journey-icon {
        width: 46px;
        height: 46px;
        font-size: 17px;
    }

    .jku-adm-journey-line {
        flex: 0 0 18px;
        margin-top: 23px;
    }

    .jku-adm-journey-label {
        font-size: 11px;
    }

    .jku-adm-journey-sub {
        display: none;
    }

    .jku-adm-date-grid {
        grid-template-columns: 1fr;
    }

    .jku-adm-dl-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile procedure steps – hidden on desktop, shown in mobile query */
.jku-adm-proc-steps { display: none; }

/* ==================== MOBILE RESPONSIVE FIXES ==================== */
@media (max-width: 991px) {
    .jku-adm-wrapper.py-5 { padding-top: 20px !important; padding-bottom: 20px !important; }
}

@media (max-width: 767px) {
    /* Fee grid → single column */
    .jku-adm-fee-grid { grid-template-columns: 1fr !important; }

    /* Scholarship images: hide desktop pair, show mobile singles */
    .jku-adm-scholar-desktop-pair { display: none !important; }
    .jku-adm-scholar-mobile-img { display: block !important; }
    .jku-adm-scholar-mid-img { display: block !important; }
    /* Switch grid to flex-column so mid-img appears between card 2 and 3 */
    .jku-adm-scholar-grid { display: flex !important; flex-direction: column; }

    /* Flowchart → hide on mobile, replaced by step cards */
    .jku-adm-ft { display: none !important; }

    /* ── Mobile Admission Procedure Step Cards – simple bottom-border list ── */
    .jku-adm-proc-steps { display: block; margin: 12px 0 20px; }

    .jku-adm-proc-step {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 13px 4px;
        background: none;
        border: none;
        border-bottom: 1px solid #dde8f5;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
        opacity: 1;
        transform: none;
        transition: none;
        position: relative;
    }
    .jku-adm-proc-step:first-child { border-top: 1px solid #dde8f5; }
    .jku-adm-proc-step:nth-child(odd),
    .jku-adm-proc-step:nth-child(even) { background: none; border-left: none; border-right: none; border-top: none; }
    .jku-adm-proc-step:first-child { border-top: 1px solid #dde8f5; }

    .jku-adm-proc-num {
        min-width: 36px;
        text-align: center;
        font-size: 20px;
        font-weight: 700;
        font-style: normal;
        color: #B84110;
        background: none;
        padding: 0;
        line-height: 1;
        flex-shrink: 0;
        font-family: "Source Sans 3", sans-serif;
    }
    .jku-adm-proc-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .jku-adm-proc-title {
        font-size: 14px;
        font-weight: 600;
        color: #1a2a4a;
        text-transform: none;
        letter-spacing: 0;
        line-height: 1.5;
        font-family: "Source Sans 3", sans-serif;
    }
    .jku-adm-proc-sub {
        font-size: 12.5px;
        color: #6a7a9a;
        margin-top: 2px;
        line-height: 1.4;
        font-family: "Source Sans 3", sans-serif;
    }

    /* 3-image carousel for Application Procedure */
    .jku-adm-img-carousel {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 8px;
    }
    .jku-adm-img-carousel img {
        flex: 0 0 85%;
        scroll-snap-align: start;
        height: 180px !important;
        border-radius: 8px;
        object-fit: cover;
    }

    /* Remove excess space below last section */
    .jku-adm-sec:last-child { padding-bottom: 8px; }

    /* Image carousel (auto-play) */
    .jku-adm-img-carousel.jku-adm-car-active {
        position: relative;
        height: 200px;
        overflow: hidden;
        display: block !important;
        border-radius: 10px;
        margin: 12px 0;
    }
    .jku-adm-img-carousel.jku-adm-car-active img {
        position: absolute;
        top: 0; left: 0;
        width: 100% !important;
        height: 200px !important;
        object-fit: cover;
        border-radius: 10px;
        flex: none !important;
        opacity: 0;
        transition: opacity 0.7s ease;
    }
    .jku-adm-img-carousel.jku-adm-car-active img.jku-adm-car-on {
        opacity: 1;
    }
    .jku-adm-car-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 8px;
    }
    .jku-adm-car-dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        background: #c5d4ee;
        transition: background .3s;
        cursor: pointer;
    }
    .jku-adm-car-dot.active { background: #034B9F; }
}