/* ============================================
   ZIEL - Home Page Page-Specific Styles
   ============================================ */

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #001A33;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded {
    transform: translateY(-100%);
}

.preloader-content {
    text-align: center;
    width: 200px;
}

.preloader-logo {
    width: 120px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.preloader-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: #EAB308;
    transition: width 0.5s ease;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

body.loading {
    overflow: hidden;
}

/* ---------- Hero Banner ---------- */
.hero-banner {

    padding: 160px 0 100px;
    background: radial-gradient(circle at 0% 0%, var(--theme-blue) 0%, #001A33 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    overflow: hidden;
}


.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(0, 45, 98, 0) 0%, rgba(0, 45, 98, 0.4) 100%);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 5;
}

.hero-title {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: #ffffff !important;
}

/* Removing gradient as per reference */
.text-gradient {
    color: var(--theme-yellow) !important;
}



.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 45px;
    max-width: 580px;
    line-height: 1.5;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
}

.btn-enroll {
    background: var(--theme-yellow);
    color: var(--theme-blue) !important;
    border-radius: 8px;
    padding: 18px 40px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.3);
    border: none;
    font-size: 18px;
}

.btn-enroll:hover {
    background: #fff;
    color: #002D62 !important;
    transform: translateY(-5px);
}

.btn-view-course {
    border: 1px solid rgba(255, 255, 255, 1);
    color: #ffffff !important;
    border-radius: 8px;
    padding: 18px 40px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: transparent;
    font-size: 18px;
}

.btn-view-course:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}


/* Stats Area */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-icon-box {
    display: none;
}

/* Stats Area - Restored to Original Design */
.hero-stats {
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.stat-item {
    padding-right: 50px;
    margin-right: 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    background: none;
    backdrop-filter: none;
    border-radius: 0;
    min-width: auto;
}

.stat-item:hover {
    background: none;
    transform: none;
    box-shadow: none;
}

.stat-item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
    font-family: var(--font-heading);
    color: var(--theme-yellow) !important;
    text-shadow: none;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6) !important;
    display: block;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: none;
    opacity: 1;
}




/* Hero Illustration */
.hero-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.student-img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    animation: floatVertical 6s ease-in-out infinite;
}

.circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(0, 71, 153, 0.2) 0%, rgba(0, 26, 51, 0) 70%);
    z-index: 1;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.fc-1 {
    bottom: 4%;
    left: -1%;
    width: 180px;
    animation: floatVertical 5s ease-in-out infinite;
}

.fc-2 {
    top: 25%;
    right: 5%;
    width: 60px;
    height: 60px;
    justify-content: center;
    animation: floatVertical 7s ease-in-out infinite reverse;
}

.fc-icon {
    width: 40px;
    height: 40px;
    background: var(--theme-yellow);
    color: var(--theme-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.fc-icon-alt {
    font-size: 24px;
    color: var(--theme-yellow);
}

.fc-info {
    display: flex;
    flex-direction: column;
}

.fc-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.fc-val {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

/* Floating Animations */
@keyframes floatVertical {

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

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

/* Responsive Adjustments */
@media (max-width: 1399px) {
    .hero-title {
        font-size: 70px;
    }

    .stat-number {
        font-size: 40px;
    }
}

@media (max-width: 1199px) {
    .hero-title {
        font-size: 60px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .stat-item {
        padding-right: 30px;
        margin-right: 30px;
    }
}

@media (max-width: 991px) {
    .hero-banner {
        padding: 120px 0 60px;
        text-align: center;
        background: radial-gradient(circle at 0% 0%, var(--theme-blue) 0%, #001A33 100%);
    }

    .hero-title {
        font-size: 52px;
        letter-spacing: -1.5px;
        margin-bottom: 25px;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .hero-title span {
        text-shadow: 0 0 20px rgba(227, 190, 26, 0.2);
    }

    .hero-subtitle {
        font-size: 17px;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .hero-actions {
        justify-content: center;
        gap: 12px;
        margin-bottom: 50px;
    }

    .hero-stats {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 8px;
        background: transparent;
        backdrop-filter: none;
        border: none;
        padding: 0 15px;
        margin-top: 30px;
    }

    .stat-item {
        flex: 1;
        min-width: 0;
        /* Allow shrinking */
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 15px 5px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .stat-icon-box {
        display: block;
        margin-bottom: 0;
    }

    .stat-icon-box img {
        height: 20px;
        width: auto;
        opacity: 0.9;
    }

    .stat-item:last-child {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-number {
        font-size: 18px;
        font-weight: 800;
        margin-bottom: 0;
        color: var(--theme-yellow) !important;
        line-height: 1;
    }

    .stat-label {
        font-size: 9px;
        opacity: 0.7;
        color: #ffffff;
        white-space: normal;
        text-transform: capitalize;
        line-height: 1.2;
    }

    .hero-illustration {
        margin: 30px auto;
        max-width: 360px;
        position: relative;
    }

    .circle-bg {
        width: 340px;
        height: 340px;
        opacity: 0.5;
    }

    .fc-1 {
        left: -18px;
        bottom: 8px;
        transform: scale(0.9);
    }

    .fc-2 {
        right: -10px;
        top: 10%;
        transform: scale(0.9);
    }
}

@media (max-width: 900px) {
    .section-description {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        padding-top: 110px;
        padding-bottom: 48px;
        text-align: left;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.18;
        letter-spacing: 0;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
        line-height: 1.5;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-actions {
        flex-direction: row;
        justify-content: flex-start;
        width: 100%;
        gap: 12px;
        margin-bottom: 36px;
    }

    .hero-actions a {
        flex: 1;
        padding: 14px 8px;
        font-size: 14px;
        border-radius: 10px;
        white-space: nowrap;
    }

    .hero-stats {
        padding: 0;
        border-radius: 0;
        margin-top: 28px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 10px;
    }

    .hero-illustration {
        max-width: 320px;
        margin: 30px auto;
    }

    .circle-bg {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 31px;
    }

    .hero-subtitle {
        font-size: 14.5px;
    }

    .hero-actions {
        gap: 8px;
    }

    .hero-actions a {
        padding: 12px 8px;
        font-size: 13px;
    }

    .hero-illustration {
        max-width: 280px;
        margin: 25px auto;
    }
}

/* ---------- Learning Journey & 4X Method Section ---------- */
.zlm-section {
    background: #f4faff;
    padding: 68px 0 58px;
    overflow: hidden;
}

.zlm-section .container {
    width: min(1520px, calc(100% - clamp(44px, 7vw, 160px)));
    max-width: none;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.zlm-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    gap: 42px;
    align-items: end;
    margin-bottom: 30px;
}

.zlm-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 20px;
    border-radius: 999px;
    background: #E0EFFF;
    color: #002D62;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.zlm-header h2 {
    margin: 18px 0 0;
    color: #242426;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
}

.zlm-header h2 span,
.zlm-method-content h3 span {
    display: block;
    color: #0d5797;
}

.zlm-header p {
    max-width: 620px;
    margin: 0;
    color: #64748B;
    font-size: 16px;
    line-height: 1.65;
}

.zlm-mobile-copy {
    display: none;
}

.zlm-journey-grid {
    display: grid;
    grid-template-columns: 1fr 54px 1fr 54px 1fr;
    gap: 22px;
    align-items: center;
    margin-bottom: 20px;
}

.zlm-level-card {
    min-height: 190px;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 20px;
    padding: 28px 26px;
    background: rgba(255, 255, 255, 0.78);
    border: 1.5px solid #cfe2f3;
    border-bottom: 5px solid #0c5a97;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(13, 79, 139, 0.06);
}

.zlm-level-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #f1f0ff;
}

.zlm-level-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.zlm-level-copy span {
    display: block;
    margin-bottom: 9px;
    color: #0b5798;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.zlm-level-copy h3 {
    margin: 0 0 12px;
    color: #242426;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.28;
}

.zlm-level-copy p {
    margin: 0;
    color: #64748B;
    font-size: 15px;
    line-height: 1.6;
}

.zlm-card-connector {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

.zlm-card-connector img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(90, 109, 190, 0.18));
}

.zlm-method-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1fr);
    gap: 30px;
    align-items: center;
    min-height: 470px;
    padding: 40px 38px;
    border: 1.5px solid #b9d3e8;
    border-radius: 18px;
    background: rgba(245, 251, 255, 0.75);
}

.zlm-method-panel:hover .zlm-method-art img {
    transform: scale(1.018);
    filter: drop-shadow(0 24px 36px rgba(13, 79, 139, 0.13));
}

.zlm-system-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    padding: 7px 16px;
    border: 1px solid #cad9ec;
    border-radius: 999px;
    background: #f4f8ff;
    color: #0D4F8B;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.zlm-system-badge img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.zlm-method-content h3 {
    margin: 22px 0 16px;
    color: #242426;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.15;
}

.zlm-method-content p {
    max-width: 560px;
    margin: 0 0 18px;
    color: #64748B;
    font-size: 16px;
    line-height: 1.65;
}

.zlm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.zlm-tags span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    padding: 6px 13px 6px 9px;
    border: 1px solid #cfdae8;
    border-radius: 999px;
    background: #fff;
    color: #333;
    font-size: 14px;
    line-height: 1;
}

.zlm-tags img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.zlm-actions {
    display: flex;
    align-items: center;
    gap: 34px;
}

.zlm-btn-primary,
.zlm-btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: all 0.25s ease;
}

.zlm-btn-primary {
    min-width: 180px;
    padding: 14px 26px;
    border-radius: 9px;
    background: #0e5b99;
    color: #fff;
    box-shadow: 0 12px 28px rgba(14, 91, 153, 0.15);
}

.zlm-btn-primary:hover {
    background: #084c84;
    color: #fff;
    transform: translateY(-2px);
}

.zlm-btn-link {
    gap: 15px;
    color: #272727;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.zlm-btn-link:hover {
    color: #0e5b99;
}

.zlm-method-art {
    display: flex;
    justify-content: center;
    align-items: center;
    isolation: isolate;
}

.zlm-method-visual {
    position: relative;
    width: 100%;
    max-width: 540px;
    animation: none;
}

.zlm-method-art picture,
.zlm-method-art img {
    display: block;
    width: 100%;
}

.zlm-method-art img {
    height: auto;
    object-fit: contain;
    transition: transform 0.55s ease, filter 0.55s ease, opacity 0.35s ease;
}

.zlm-center-aura,
.zlm-center-shimmer,
.zlm-method-focus {
    pointer-events: none;
}

.zlm-center-aura,
.zlm-center-shimmer,
.zlm-method-focus {
    position: absolute;
    z-index: 2;
}

.zlm-center-aura {
    top: 35.8%;
    left: 33.4%;
    width: 33.2%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, transparent 48%, rgba(151, 177, 255, 0.2) 58%, rgba(95, 143, 255, 0.18) 68%, transparent 78%);
    filter: blur(5px);
    mix-blend-mode: screen;
    opacity: 0.62;
    animation: zlmCenterBreath 3.8s ease-in-out infinite;
}

.zlm-center-shimmer {
    top: 36.8%;
    left: 34.3%;
    width: 31.3%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.13) 48%, transparent 62%);
    background-size: 230% 100%;
    mix-blend-mode: screen;
    opacity: 0.36;
    animation: zlmCenterSheen 5.8s ease-in-out infinite;
}

.zlm-method-panel:hover .zlm-center-aura {
    opacity: 1;
    filter: blur(6px);
}

.zlm-method-focus {
    box-sizing: border-box;
    border: 3px solid rgba(16, 104, 177, 0.86);
    border-radius: 14px;
    background:
        radial-gradient(circle at 50% 62%, rgba(60, 141, 226, 0.2), transparent 34%),
        rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 0 rgba(18, 100, 171, 0),
        0 16px 32px rgba(13, 79, 139, 0);
    opacity: 0;
    transform: none;
}

.zlm-method-focus > .zlm-method-wave {
    box-sizing: border-box;
}

.zlm-method-focus::before,
.zlm-method-focus::after {
    position: absolute;
    content: "";
    top: 58%;
    left: 50%;
    width: 30%;
    aspect-ratio: 1;
    border: 2px solid rgba(16, 104, 177, 0.62);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-45deg) scale(0.7);
}

.zlm-method-focus::after {
    animation-delay: 0.28s;
}

.zlm-method-wave {
    position: absolute;
    top: 58%;
    left: 50%;
    width: 42%;
    aspect-ratio: 1;
    border: 2px solid rgba(16, 104, 177, 0.38);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.65);
}

.zlm-method-visual.is-focus-ready .zlm-method-focus {
    animation-name: zlmMethodCardFocus;
    animation-duration: 7.8s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.zlm-method-visual.is-focus-ready .zlm-method-focus::before,
.zlm-method-visual.is-focus-ready .zlm-method-focus::after {
    animation-name: zlmMethodSignal;
    animation-duration: 7.8s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.zlm-method-visual.is-focus-ready .zlm-method-wave {
    animation-name: zlmMethodRipple;
    animation-duration: 7.8s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.zlm-method-wave-two {
    animation-delay: 0.5s;
}

.zlm-hear-focus {
    top: 6.6%;
    left: 68.5%;
    width: 23.8%;
    height: 22.8%;
    animation-delay: 0.45s;
}

.zlm-hear-focus::before,
.zlm-hear-focus .zlm-method-wave-one {
    animation-delay: 0.45s;
}

.zlm-hear-focus::after {
    animation-delay: 0.73s;
}

.zlm-hear-focus .zlm-method-wave-two {
    animation-delay: 0.95s;
}

.zlm-ask-focus {
    top: 64.6%;
    left: 71.6%;
    width: 23.8%;
    height: 22.8%;
    animation-delay: 2.25s;
}

.zlm-ask-focus::before,
.zlm-ask-focus .zlm-method-wave-one {
    animation-delay: 2.25s;
}

.zlm-ask-focus::after {
    animation-delay: 2.53s;
}

.zlm-ask-focus .zlm-method-wave-two {
    animation-delay: 2.75s;
}

.zlm-do-focus {
    top: 58.8%;
    left: 3.9%;
    width: 23.8%;
    height: 22.8%;
    animation-delay: 4.05s;
}

.zlm-do-focus::before,
.zlm-do-focus .zlm-method-wave-one {
    animation-delay: 4.05s;
}

.zlm-do-focus::after {
    animation-delay: 4.33s;
}

.zlm-do-focus .zlm-method-wave-two {
    animation-delay: 4.55s;
}

.zlm-see-focus {
    top: 8%;
    left: 7.4%;
    width: 23.8%;
    height: 22.8%;
    animation-delay: 5.85s;
}

.zlm-see-focus::before,
.zlm-see-focus .zlm-method-wave-one {
    animation-delay: 5.85s;
}

.zlm-see-focus::after {
    animation-delay: 6.13s;
}

.zlm-see-focus .zlm-method-wave-two {
    animation-delay: 6.35s;
}

@keyframes zlmDiagramFloat {
    0%,
    100% {
        transform: translateY(0);
    }

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

@keyframes zlmCenterBreath {
    0%,
    100% {
        transform: scale(0.98);
        opacity: 0.42;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.76;
    }
}

@keyframes zlmCenterSheen {
    0%,
    28% {
        background-position: 145% 50%;
        opacity: 0.18;
    }

    56% {
        background-position: -45% 50%;
        opacity: 0.42;
    }

    100% {
        background-position: -45% 50%;
        opacity: 0.18;
    }
}

@keyframes zlmMethodCardFocus {
    0%,
    5%,
    16% {
        opacity: 1;
        transform: none;
        box-shadow:
            0 0 0 9px rgba(18, 100, 171, 0.14),
            0 22px 42px rgba(13, 79, 139, 0.22);
    }

    24%,
    100% {
        opacity: 0;
        transform: none;
        box-shadow:
            0 0 0 0 rgba(18, 100, 171, 0),
            0 16px 32px rgba(13, 79, 139, 0);
    }
}

@keyframes zlmMethodSignal {
    0%,
    24%,
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(-45deg) scale(0.62);
    }

    7% {
        opacity: 0.84;
    }

    21% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(-45deg) scale(1.8);
    }
}

@keyframes zlmMethodRipple {
    0%,
    24%,
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.65);
    }

    8% {
        opacity: 0.62;
    }

    22% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.95);
    }
}

@media (prefers-reduced-motion: reduce) {
    .zlm-method-art img {
        transition: none;
    }

    .zlm-method-panel:hover .zlm-method-art img {
        transform: none;
    }
}

@media (max-width: 991px) {
    .zlm-section {
        padding: 64px 0;
    }

    .zlm-header,
    .zlm-method-panel {
        grid-template-columns: 1fr;
    }

    .zlm-header {
        gap: 22px;
        margin-bottom: 38px;
    }

    .zlm-journey-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .zlm-card-connector {
        display: none;
    }

    .zlm-method-panel {
        min-height: 0;
        gap: 34px;
    }
}

@media (max-width: 1410px) and (min-width: 1200px) {
    .zlm-section .container {
        width: calc(100% - 56px);
    }

    .zlm-journey-grid {
        grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr);
        gap: 18px;
    }

    .zlm-level-card {
        gap: 18px;
        padding: 26px 24px;
    }

    .zlm-card-connector,
    .zlm-card-connector img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .zlm-section {
        padding: 64px 0;
    }

    .zlm-section .container {
        width: calc(100% - 48px);
    }

    .zlm-header {
        grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
        gap: 36px;
        align-items: center;
        margin-bottom: 34px;
    }

    .zlm-header h2 {
        font-size: 34px;
        line-height: 1.16;
    }

    .zlm-header p {
        max-width: 620px;
        font-size: 15.5px;
    }

    .zlm-journey-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
        align-items: stretch;
    }

    .zlm-card-connector {
        display: none;
    }

    .zlm-level-card {
        min-height: 260px;
        grid-template-columns: 1fr;
        gap: 16px;
        align-content: start;
        padding: 24px 22px;
    }

    .zlm-level-copy h3 {
        font-size: 22px;
        line-height: 1.24;
    }

    .zlm-level-copy p {
        font-size: 14.5px;
    }

    .zlm-method-panel {
        grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1fr);
        min-height: 440px;
        gap: 28px;
        padding: 38px 34px;
    }

    .zlm-method-content h3 {
        font-size: 32px;
    }

    .zlm-method-content p {
        font-size: 15px;
    }

    .zlm-method-visual {
        max-width: 450px;
    }

    .zlm-actions {
        gap: 28px;
    }
}

@media (max-width: 767px) {
    .zlm-section {
        padding: 38px 0 42px;
    }

    .zlm-eyebrow {
        min-height: 34px;
        padding: 7px 16px;
        font-size: 13px;
    }

    .zlm-header h2 {
        margin-top: 12px;
        font-size: 28px;
        line-height: 1.22;
    }

    .zlm-header p {
        font-size: 15px;
        line-height: 1.55;
        max-width: 520px;
    }

    .zlm-desktop-copy {
        display: none;
    }

    .zlm-mobile-copy {
        display: inline;
    }

    .zlm-level-card {
        min-height: 0;
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;
        padding: 18px 18px;
        border: 1px solid #cfe2f3;
        border-bottom: 3px solid #0c5a97;
        border-radius: 14px;
        box-shadow: 0 10px 24px rgba(13, 79, 139, 0.05);
    }

    .zlm-level-icon {
        width: 46px;
        height: 46px;
        border-radius: 10px;
    }

    .zlm-level-icon img {
        width: 25px;
        height: 25px;
    }

    .zlm-level-copy span {
        margin-bottom: 5px;
        font-size: 10px;
        letter-spacing: 2.6px;
    }

    .zlm-level-copy h3 {
        margin-bottom: 6px;
        font-size: 17px;
        line-height: 1.25;
    }

    .zlm-level-copy p {
        font-size: 13.5px;
        line-height: 1.5;
    }

    .zlm-method-panel {
        margin-top: 22px;
        padding: 20px 18px 22px;
        gap: 12px;
        border: 1px solid #b6ddfb;
        border-radius: 18px;
        background:
            radial-gradient(circle at 50% 47%, rgba(117, 198, 255, 0.16) 0%, rgba(117, 198, 255, 0) 42%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(241, 249, 255, 0.92) 100%);
        box-shadow: 0 18px 46px rgba(13, 79, 139, 0.08);
        overflow: hidden;
    }

    .zlm-system-badge {
        width: fit-content;
        max-width: 100%;
        justify-content: center;
        min-height: 32px;
        padding: 7px 14px;
        font-size: 10px;
        letter-spacing: 2.8px;
        background: rgba(255, 255, 255, 0.64);
        box-shadow: inset 0 0 0 1px rgba(13, 79, 139, 0.04);
    }

    .zlm-method-content {
        display: contents;
    }

    .zlm-method-content h3 {
        margin: 0;
        font-size: 25px;
        line-height: 1.16;
        order: 1;
    }

    .zlm-method-content p {
        margin: 0;
        max-width: 330px;
        font-size: 14.5px;
        line-height: 1.5;
        order: 2;
    }

    .zlm-system-badge {
        order: 0;
    }

    .zlm-tags {
        display: none;
    }

    .zlm-method-art {
        order: 3;
        margin: -4px auto 0;
        width: min(100%, 360px);
    }

    .zlm-method-visual {
        max-width: 100%;
        animation-duration: 7s;
    }

    .zlm-actions {
        order: 4;
        width: 100%;
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
    }

    .zlm-btn-primary,
    .zlm-btn-link {
        min-height: 46px;
        font-size: 14px;
        white-space: nowrap;
    }

    .zlm-btn-primary {
        min-width: 150px;
        border-radius: 8px;
        box-shadow: 0 10px 22px rgba(14, 91, 153, 0.16);
    }

    .zlm-btn-link {
        gap: 10px;
        text-underline-offset: 4px;
    }
}

@media (max-width: 575px) {
    .zlm-section .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .zlm-header {
        margin-bottom: 22px;
    }

    .zlm-header h2 {
        font-size: 28px;
    }

    .zlm-header p {
        font-size: 14.5px;
    }

    .zlm-level-card {
        grid-template-columns: 46px 1fr;
        gap: 14px;
    }

    .zlm-method-panel {
        padding-right: 18px;
        padding-left: 18px;
    }

    .zlm-method-art {
        margin-right: auto;
        margin-left: auto;
    }

    .zlm-actions {
        gap: 10px;
    }

    .zlm-btn-primary {
        min-width: 0;
        flex: 0 0 auto;
        padding-right: 22px;
        padding-left: 22px;
    }

    .zlm-btn-link {
        flex: 0 1 auto;
        justify-content: flex-start;
    }
}

@media (max-width: 430px) {
    .zlm-eyebrow,
    .zlm-system-badge {
        max-width: 100%;
    }

    .zlm-actions {
        gap: 10px;
    }

    .zlm-btn-primary {
        flex: 0 0 auto;
        min-width: 0;
        padding-right: 20px;
        padding-left: 20px;
    }

    .zlm-btn-link {
        flex: 0 1 auto;
        justify-content: flex-start;
    }
}

@media (max-width: 390px) {
    .zlm-section .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .zlm-header h2 {
        font-size: 28px;
    }

    .zlm-header p,
    .zlm-level-copy p,
    .zlm-method-content p {
        font-size: 14.5px;
    }

    .zlm-level-card {
        grid-template-columns: 42px 1fr;
        gap: 12px;
        padding: 16px 15px;
    }

    .zlm-level-icon {
        width: 42px;
        height: 42px;
    }

    .zlm-level-copy h3 {
        font-size: 16px;
    }

    .zlm-btn-primary,
    .zlm-btn-link {
        font-size: 14px;
    }

    .zlm-method-content h3 {
        font-size: 25px;
    }
}

@media (max-width: 360px) {
    .zlm-actions {
        flex-wrap: wrap;
    }

    .zlm-btn-primary,
    .zlm-btn-link {
        flex: 1 1 100%;
    }

    .zlm-btn-link {
        justify-content: center;
    }
}

/* ---------- Our Courses Section ---------- */
.courses-section {
    background-color: #001A33;
    /* Darker navy for better contrast */
    padding: 60px 0;
    /* Reduced from section-padding */
    position: relative;
    overflow: hidden;
}

.courses-label {
    color: #EAB308;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.courses-title {
    font-size: 2.25rem;
    /* Reduced from 44px */
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 0;
}

.courses-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    /* Reduced from 17px */
    line-height: 1.5;
    margin: 0;
}

/* Course Card V2 */
.course-card-v2 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.course-card-v2:hover {
    transform: translateY(-10px);
    border-color: #EAB308;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(234, 179, 8, 0.1);
}

.course-image-v2 {
    position: relative;
    height: 180px;
    /* Reduced from 240px */
    overflow: hidden;
}

.course-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.course-card-v2:hover .course-image-v2 img {
    transform: scale(1.1);
}

.course-content-v2 {
    padding: 20px;
    /* Reduced from 30px */
}

.course-name-v2 {
    font-size: 20px;
    /* Reduced from 24px */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.course-desc-v2 {
    font-size: 14px;
    /* Reduced from 15px */
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 15px;
    /* Reduced from 25px */
    height: 63px;
    /* Reduced to fit 3 lines of smaller text */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-meta-v2 {
    display: flex;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.meta-item-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #EAB308;
    font-size: 14px;
    font-weight: 500;
}

.meta-item-v2 i {
    font-size: 16px;
}

.course-footer-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-course-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 12px 0;
}

.btn-course-v2 i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-course-v2:hover {
    color: #EAB308;
}

.btn-course-v2:hover i {
    transform: translateX(5px);
}

/* Swiper Customization */
.courses-swiper {
    padding: 10px 0 60px !important;
    /* Reduced padding */
}

.courses-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.courses-swiper .swiper-pagination-bullet-active {
    background: #EAB308;
    width: 30px;
    border-radius: 5px;
}

.courses-swiper .swiper-button-next,
.courses-swiper .swiper-button-prev {
    color: #ffffff;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.courses-swiper .swiper-button-next:after,
.courses-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 900;
}

.courses-swiper .swiper-button-next:hover,
.courses-swiper .swiper-button-prev:hover {
    background: #EAB308;
    border-color: #EAB308;
    color: #001A33;
}

.courses-swiper .swiper-button-next {
    right: -60px;
}

.courses-swiper .swiper-button-prev {
    left: -60px;
}

/* Responsive Adjustments */
@media (max-width: 1399px) {

    .courses-swiper .swiper-button-next,
    .courses-swiper .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 991px) {
    .courses-title {
        font-size: 28px;
    }

    .course-content-v2 {
        padding: 22px;
    }
}

@media (max-width: 767px) {
    .courses-section {
        padding-top: 42px;
        padding-bottom: 14px;
    }

    .courses-section .row.mb-4 {
        margin-bottom: 18px !important;
    }

    .courses-swiper {
        padding-bottom: 8px !important;
    }

    .courses-swiper .swiper-pagination {
        bottom: 0 !important;
    }

    .course-image-v2 {
        height: 150px;
    }

    .course-content-v2 {
        padding: 18px;
    }

    .courses-title {
        font-size: 26px;
        line-height: 1.25;
    }

    .courses-subtitle {
        font-size: 14px;
        margin-top: 12px;
    }

    .course-desc-v2 {
        height: auto;
        margin-bottom: 12px;
        -webkit-line-clamp: 2;
    }

    .course-meta-v2 {
        padding-top: 12px;
        margin-bottom: 12px;
    }

    .btn-course-v2 {
        padding: 8px 0;
    }
}

/* ---------- How It Works Section ---------- */
.how-it-works-section {
    background-color: #F0F7FF;
    padding: 35px 0;
}

.hiw-label {
    color: #D4A017;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.hiw-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1E293B;
}

.hiw-title .text-primary-blue {
    color: #0D4F8B !important;
}

.hiw-desc {
    display: none;
}

.hiw-list {
    margin-top: 30px;
}

.hiw-item {
    padding: 35px 0;
}

.hiw-border-top {
    border-top: 1px solid #0D4F8B !important;
}

.hiw-border-bottom {
    border-bottom: 1px solid #0D4F8B !important;
}

.hiw-number {
    font-size: 40px;
    font-weight: 600;
    color: #1E293B;
    line-height: 1;
}

.hiw-item-title {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
}

.hiw-item-desc {
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
}

/* Responsive HIW */
@media (max-width: 991px) {
    .hiw-title {
        font-size: 26px;
        margin-bottom: 0;
    }

    .hiw-item-title {
        font-size: 16px;
        margin: 0;
        color: #334155;
    }

    .hiw-number {
        font-size: 24px;
        color: #0D4F8B;
    }

    .hiw-item {
        padding: 18px 0;
    }

    .hiw-border-top,
    .hiw-border-bottom {
        border-color: rgba(13, 79, 139, 0.15) !important;
    }
}

@media (max-width: 767px) {
    .hiw-item-desc {
        margin-top: 10px;
    }
}

/* ---------- Register Now Section (Parallax) ---------- */
.register-now-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/img-register-now-bg.png') no-repeat center center fixed;
    background-size: cover;
    padding: 120px 0;
    text-align: center;
    color: #ffffff;
}

.rn-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
}

.rn-title .text-primary-blue {
    color: #0D4F8B !important;
}

.rn-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.btn-register-now {
    display: inline-block;
    padding: 14px 45px;
    border: 2px solid #ffffff;
    border-radius: 100px;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-register-now:hover {
    background: #ffffff;
    color: #000000 !important;
}

@media (max-width: 767px) {
    .rn-title {
        font-size: 26px;
    }

    .rn-subtitle {
        font-size: 14px;
    }
}

/* ---------- Registration Form Section ---------- */
.registration-section {
    background-color: #F8FAFC;
    padding: 100px 0;
}

.reg-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
}

.reg-title .text-primary-navy {
    color: #0D4F8B !important;
}

.reg-subtitle {
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
    max-width: 400px;
}

.registration-card {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 45, 98, 0.05);
    margin-top: 28px;
}

.reg-form-wrap {
    padding: 60px;
}

.form-title {
    font-size: 32px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 15px;
}

.form-desc {
    color: #64748B;
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.reg-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1E293B;
    margin-bottom: 10px;
}

/* ---------- Course Details Modal ---------- */
.course-modal-content {
    background: #F8FAFC;
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    color: #1E293B;
    box-shadow: 0 24px 70px rgba(0, 26, 51, 0.28);
    max-height: calc(100vh - 48px);
}

.course-modal-header {
    position: absolute;
    inset: 0 0 auto auto;
    z-index: 5;
    padding: 18px;
}

.course-detail-body {
    padding: 0;
    background: #F8FAFC;
}

.course-detail-hero {
    position: relative;
    height: 172px;
    min-height: 0;
    overflow: hidden;
    background: #001A33;
    flex: 0 0 auto;
}

.course-detail-hero img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center 52%;
    display: block;
}

.course-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 26, 51, 0.08) 0%, rgba(0, 26, 51, 0.86) 100%);
}

.course-detail-hero-copy {
    position: absolute;
    left: 26px;
    right: 58px;
    bottom: 20px;
    z-index: 2;
}

.modal-course-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 10px 0 6px;
    line-height: 1.15;
}

.course-detail-hero-meta {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.course-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    display: inline-block;
}

.course-detail-content {
    padding: 24px;
    overflow: visible;
}

.course-detail-section {
    margin-bottom: 24px;
}

.course-detail-section h3 {
    font-size: 19px;
    color: #111827;
    font-weight: 800;
    margin-bottom: 12px;
}

.modal-course-desc {
    color: #4B5563;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.course-stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #0D67AE;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(13, 103, 174, 0.18);
}

.course-stat-item {
    min-height: 74px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.course-stat-item i {
    color: #ffffff;
    font-size: 17px;
    margin-bottom: 5px;
}

.course-stat-item strong {
    font-size: 19px;
    line-height: 1;
}

.course-stat-item span {
    font-size: 12px;
    line-height: 1.15;
}

.course-resource-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.course-resource-chips span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #EAF4FF;
    border: 1px solid #CFE5FB;
    border-radius: 999px;
    color: #123B63;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 10px;
}

.course-resource-chips i {
    color: #0D67AE;
}

.course-structure-list {
    display: grid;
    gap: 0;
}

.course-structure-item {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    align-items: start;
    padding: 11px 0;
    border-bottom: 1px solid #D7DEE8;
}

.course-structure-item:first-child {
    padding-top: 0;
}

.course-structure-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #123B63;
    font-size: 20px;
}

.course-structure-title {
    color: #1F2937;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.course-structure-desc {
    color: #64748B;
    font-size: 13px;
    line-height: 1.5;
    margin: 4px 0 0;
}

.course-syllabus-line {
    font-size: 15px;
    line-height: 1.35;
    color: #1E293B;
    margin: 0;
}

.course-level-list {
    display: grid;
    gap: 16px;
}

.course-level-card {
    background: #ffffff;
    border: 1px solid #EDF2F7;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
    padding: 16px;
}

.course-level-card h4 {
    color: #333333;
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 6px;
}

.course-level-card p {
    color: #4B5563;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.level-card-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: start;
}

.level-meta {
    color: #4B5563;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.level-pill {
    border: 1px solid #0D67AE;
    color: #0D67AE;
    border-radius: 999px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.level-summary-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.level-summary-row span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #F1F5F9;
    color: #334155;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 700;
}

.course-empty-state {
    background: #F8FAFC;
    border: 1px dashed #CBD5E1;
    border-radius: 10px;
    color: #64748B;
    font-size: 13px;
    padding: 12px;
    margin-top: 12px;
}

.subjects-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.subjects-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subjects-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.subjects-list li i {
    color: #EAB308;
    font-size: 18px;
}

.btn-enroll-modal {
    background: #EAB308;
    color: #001A33 !important;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-enroll-modal:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
}

@media (max-width: 991px) {
    .course-detail-hero,
    .course-detail-hero img {
        height: 156px;
        min-height: 0;
    }

    .course-detail-content {
        padding: 20px 16px;
        max-height: none;
    }

    .modal-course-title {
        font-size: 24px;
    }

    .course-detail-hero-copy {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 575px) {
    .course-modal-content {
        border-radius: 14px;
        max-height: calc(100vh - 24px);
    }

    .course-modal-header {
        padding: 12px;
    }

    .course-detail-hero,
    .course-detail-hero img {
        height: 132px;
    }

    .course-detail-hero-copy {
        left: 14px;
        right: 42px;
        bottom: 12px;
    }

    .modal-course-title {
        font-size: 19px;
        margin: 7px 0 4px;
    }

    .course-detail-hero-meta {
        font-size: 12px;
        gap: 7px;
    }

    .course-stats-bar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .course-stat-item {
        min-height: 72px;
        padding: 10px 6px;
    }

    .course-stat-item strong {
        font-size: 18px;
    }

    .level-card-head {
        grid-template-columns: 1fr;
    }

    .level-pill {
        width: fit-content;
    }
}

.reg-form .form-control,
.reg-form .form-select {
    background: #ffffff !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 12px !important;
    padding: 15px 20px !important;
    font-size: 15px !important;
    color: #1E293B !important;
    transition: all 0.3s ease !important;
}

.reg-form .form-control:focus,
.reg-form .form-select:focus {
    border-color: #0D4F8B !important;
    box-shadow: 0 0 0 4px rgba(13, 79, 139, 0.05) !important;
    outline: none !important;
}

.btn-reg-submit {
    background: #0D4F8B;
    color: #ffffff;
    border: none;
    padding: 18px 0;
    width: 100%;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-reg-submit:hover {
    background: #002D62;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 79, 139, 0.2);
}

.reg-image-wrap {
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.reg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.reg-image-wrap:hover .reg-img {
    transform: scale(1.05);
}

/* ---------- Registration Highlights ---------- */
.reg-highlights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    padding: 40px;
}

.highlight-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-card:hover {
    transform: translateX(-10px);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(13, 79, 139, 0.2);
    border-color: #0D4F8B;
}

.h-icon {
    width: 40px;
    height: 40px;
    background: #0D4F8B;
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.h-info span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1E293B;
    line-height: 1.2;
}

.h-info p,
.h-link {
    font-size: 11px;
    color: #64748B;
    margin: 0;
    text-decoration: none;
}

.h-link {
    color: #0D4F8B;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.h-link:hover {
    color: #EAB308;
}

/* Positioning for desktop (Floating effect for 5 cards) */
.h-1 {
    top: 10%;
    right: 5%;
}

.h-2 {
    top: 30%;
    right: 25%;
}

.h-3 {
    top: 50%;
    right: 8%;
}

.h-4 {
    top: 70%;
    right: 22%;
}

.h-5 {
    top: 88%;
    right: 5%;
}

@media (max-width: 991px) {
    .reg-image-wrap {
        height: auto;
        padding: 30px 20px;
        background: #f8fafc;
        overflow: visible;
    }

    .reg-img {
        display: none;
    }

    .reg-highlights {
        position: relative;
        height: auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
        padding: 0;
    }

    .highlight-card {
        position: relative;
        top: 0 !important;
        right: 0 !important;
        width: 100%;
        transform: none !important;
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        padding: 10px 15px;
    }
}

@media (max-width: 991px) {
    .registration-section {
        padding: 48px 0;
    }

    .registration-header {
        text-align: left;
        margin-bottom: 16px;
    }

    .registration-title {
        font-size: 26px;
        line-height: 1.25;
        margin-bottom: 10px !important;
    }

    .registration-lede {
        font-size: 14px;
        line-height: 1.6;
        color: #64748B;
        max-width: 520px;
        margin: 0;
    }

    .reg-form-wrap {
        padding: 32px 22px;
    }

    .form-title {
        font-size: 22px;
        margin-bottom: 12px;
        text-align: left;
    }

    .form-desc {
        font-size: 14px;
        margin-bottom: 30px;
        text-align: left;
    }
}

@media (max-width: 575px) {
    .registration-section {
        padding: 40px 0;
    }

    .registration-header {
        margin-bottom: 14px;
    }

    .registration-title {
        font-size: 24px;
    }

    .registration-lede {
        font-size: 13.5px;
    }

    .reg-form-wrap {
        padding: 26px 18px;
    }
}



.why-section {
    background-color: #ffffff;

    padding: 100px 0;
    position: relative;
}

.pill-badge {
    display: inline-block;
    background: #E0EFFF;
    color: #002D62;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 36px;
    margin-bottom: 14px;
    padding: 7px 18px;
    border: 1px solid #cfe2f5;
    border-radius: 999px;
    background: #E0EFFF;
    color: #002D62;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.section-kicker img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.zlm-method-kicker {
    max-width: 100%;
    order: 0;
    width: fit-content;
}

/* Sticky Left Side */
.sticky-column {
    position: sticky;
    top: 120px;
    z-index: 10;
}

@media (max-width: 991px) {
    .why-section {
        padding: 48px 15px !important;
    }

    .why-section .row {
        --bs-gutter-y: 12px;
    }

    .sticky-column {
        position: static;
        margin-bottom: 0;
    }

    .section-display-title, .keep-learning-title {
        font-size: 26px;
        font-weight: 800;
        margin-bottom: 14px !important;
        line-height: 1.25;
        color: #1E293B;
    }

    .keep-learning-desc {
        margin-top: 0 !important;
        margin-bottom: 1rem !important;
    }

    .section-display-title .text-primary-navy {
        color: #0D4F8B !important;
    }

    .pill-badge {
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 0.5px;
        padding: 5px 12px;
        background: #F0F7FF !important;
        color: #0D4F8B !important;
        margin-bottom: 12px !important;
    }

    .section-kicker {
        min-height: 32px;
        padding: 6px 14px;
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 12px !important;
    }
}

/* Vertical Stacked Cards */
.feature-card-stack {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.feature-item-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.feature-item-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.05) 0%, rgba(0, 45, 98, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}



.feature-icon-box {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: #002D62;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 16px;
    color: #64748B;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .why-section {
        padding: 50px 15px !important;
        background-color: #ffffff;
    }

    .feature-card-stack {
        gap: 12px;
    }

    .feature-item-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 12px 15px;
        gap: 15px;
        background: #F0F7FF;
        border: 1px solid #D1E8FF;
        border-radius: 10px;
        margin-bottom: 0;
        box-shadow: none;
        transition: none;
    }

    .feature-item-card::after {
        display: none;
    }

    .feature-icon-box {
        width: 50px;
        height: 50px;
        background: #0D4F8B;
        border-radius: 6px;
        padding: 8px;
        flex-shrink: 0;
    }

    .feature-icon-box img {
        /* Filter removed to allow original icons to show */
    }

    .feature-text h4 {
        display: none;
    }

    .feature-text p {
        font-size: 13px;
        line-height: 1.4;
        color: #1E293B;
        margin: 0;
    }
}

/* ---------- 4X Methodology Section ---------- */
.method-section {
    background-color: #F8FAFC;
    padding: 100px 0;
}

.method-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.method-card:hover {
    border-color: #EAB308;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 45, 98, 0.08);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 0;
    transition: all 0.4s ease;
}

.method-card:hover .method-icon {
    transform: rotate(10deg);
}

.method-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(13%) sepia(50%) saturate(3685%) hue-rotate(195deg) brightness(96%) contrast(106%);
}

.method-step {
    font-size: 20px;
    font-weight: 800;
    color: #002D62;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.method-desc {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .method-section {
        padding: 80px 0;
    }

    .method-card {
        padding: 30px 20px;
    }
}

/* ---------- Learning Levels Section ---------- */
.levels-section {
    background-color: #ffffff;
    padding: 120px 0;
}

.level-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 30px;
    padding: 50px 40px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.level-card.active {
    background: #002D62;
    border-color: #002D62;
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 45, 98, 0.2);
    z-index: 2;
}

.level-badge {
    display: inline-block;
    color: #EAB308;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.level-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: #002D62;
    margin-bottom: 35px;
    line-height: 1.2;
}

.level-card.active h3 {
    color: #ffffff;
}

.level-card h3 span {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.7;
}

.level-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.level-list li {
    font-size: 16px;
    color: #64748B;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

.level-card.active .level-list li {
    color: rgba(255, 255, 255, 0.8);
}

.level-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #EAB308;
    font-weight: 800;
}

.level-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.level-card.active:hover {
    transform: scale(1.06) translateY(-5px);
}

@media (max-width: 991px) {
    .level-card.active {
        transform: scale(1);
        margin: 30px 0;
    }

    .level-card {
        padding: 40px 30px;
    }
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer-main {
    background: #001A33;
    /* Dark Navy from design */
    padding: 0px 0 40px;
    color: #ffffff;
}

.footer-logo {
    height: 38px;
    display: block;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 260px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: #EAB308;
    /* Brand Yellow hover */
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 20px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info {
    margin-bottom: 25px;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
}

.footer-contact-item i {
    font-size: 18px;
    color: #ffffff;
    margin-top: 3px;
    line-height: 1;
    text-align: center;
    width: 22px;
}

.footer-contact-item p {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.app-buttons img {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.app-buttons img:hover {
    transform: scale(1.05);
}

.footer-hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 30px;
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a {
    color: inherit;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

@media (max-width: 767px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .why-section,
    .courses-section,
    .how-it-works-section,
    .registration-section {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .why-section .container,
    .courses-section .container,
    .how-it-works-section .container,
    .registration-section .container {
        padding-right: 12px !important;
        padding-left: 12px !important;
    }

    .hiw-title {
        max-width: 100%;
        font-size: 24px;
        line-height: 1.22;
        letter-spacing: 0;
    }

    .hiw-title .text-primary-blue {
        display: inline;
    }
}

/* Premium enrollment form polish */
.registration-section {
    background:
        radial-gradient(circle at 12% 12%, rgba(13, 103, 174, 0.09), transparent 34%),
        linear-gradient(180deg, #F8FAFC 0%, #EEF7FF 100%);
}

.registration-card {
    position: relative;
    border: 1px solid rgba(180, 210, 235, 0.72);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.92));
    box-shadow: 0 28px 80px rgba(0, 45, 98, 0.11);
}

.registration-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, #0D4F8B, #2F95D8, #EAB308);
}

.reg-form-wrap {
    position: relative;
    z-index: 1;
}

.registration-section .form-title {
    margin-bottom: 10px;
    color: #172033;
    font-weight: 800;
    letter-spacing: 0;
}

.registration-section .form-desc {
    max-width: 560px;
    margin-bottom: 18px;
    color: #66758A;
}

.reg-assurance-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.reg-assurance-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 7px 11px;
    border: 1px solid #D8E9F8;
    border-radius: 999px;
    background: #F3F9FF;
    color: #24425F;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.reg-assurance-row i {
    color: #0D67AE;
    font-size: 14px;
}

.registration-section .reg-form label {
    margin-bottom: 8px;
    color: #223047;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
}

.registration-section .reg-form .form-control,
.registration-section .reg-form .form-select {
    min-height: 54px;
    padding: 14px 17px !important;
    border: 1px solid #D8E3EE !important;
    border-radius: 14px !important;
    background-color: rgba(255, 255, 255, 0.92) !important;
    color: #172033 !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.registration-section .reg-form .form-control::placeholder {
    color: #7B8796;
}

.registration-section .reg-form .form-control:focus,
.registration-section .reg-form .form-select:focus {
    border-color: #0D67AE !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(13, 103, 174, 0.11), 0 12px 28px rgba(13, 79, 139, 0.08) !important;
}

.registration-section .btn-reg-submit {
    min-height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0D4F8B 0%, #0F6CAF 100%);
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 18px 34px rgba(13, 79, 139, 0.22);
}

.registration-section .btn-reg-submit i {
    transition: transform 0.25s ease;
}

.registration-section .btn-reg-submit:hover {
    background: linear-gradient(135deg, #083E72 0%, #0D67AE 100%);
    box-shadow: 0 22px 38px rgba(13, 79, 139, 0.28);
}

.registration-section .btn-reg-submit:hover i {
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .registration-card {
        border-radius: 22px;
        box-shadow: 0 20px 52px rgba(0, 45, 98, 0.1);
    }

    .registration-section .form-desc {
        margin-bottom: 16px;
    }
}

@media (max-width: 575px) {
    .registration-card {
        border-radius: 20px;
        margin-top: 20px;
    }

    .reg-form-wrap {
        padding: 28px 18px;
    }

    .reg-assurance-row {
        gap: 8px;
        margin-bottom: 24px;
    }

    .reg-assurance-row span {
        min-height: 30px;
        padding: 7px 10px;
        font-size: 11.5px;
    }

    .registration-section .reg-form .form-control,
    .registration-section .reg-form .form-select {
        min-height: 52px;
        font-size: 14px !important;
    }

    .registration-section .btn-reg-submit {
        min-height: 56px;
    }
}

/* ---------- Senior UI Polish Pass ---------- */
:root {
    --zt-navy-950: #001a33;
    --zt-navy-900: #06213d;
    --zt-navy-800: #0b345f;
    --zt-blue-700: #0d4f8b;
    --zt-blue-600: #0d67ae;
    --zt-blue-50: #f2f8fe;
    --zt-yellow: #eab308;
    --zt-ink: #172033;
    --zt-muted: #66758a;
    --zt-line: #dbe7f2;
    --zt-shadow: 0 18px 44px rgba(5, 31, 58, 0.1);
}

body {
    background: #ffffff;
    color: var(--zt-ink);
}

.section-padding,
.why-section,
.registration-section {
    padding-top: 88px;
    padding-bottom: 88px;
}

.section-display-title,
.courses-title,
.hiw-title,
.zlm-header h2,
.zlm-method-content h3,
.registration-title,
.rn-title {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0;
}

.section-description,
.courses-subtitle,
.hiw-desc,
.zlm-header p,
.zlm-method-content p,
.registration-lede,
.form-desc {
    color: var(--zt-muted);
    line-height: 1.65;
}

.section-kicker {
    min-height: 32px;
    padding: 6px 13px;
    border-color: rgba(13, 103, 174, 0.18);
    background: #eef7ff;
    color: var(--zt-blue-700);
    font-size: 12px;
    letter-spacing: 0.9px;
}

.hero-banner {
    min-height: 92vh;
    padding: 148px 0 84px;
    background:
        radial-gradient(circle at 78% 30%, rgba(47, 149, 216, 0.22), transparent 34%),
        linear-gradient(135deg, #001a33 0%, #08223f 54%, #0d4f8b 100%);
}

.hero-banner::before {
    background:
        linear-gradient(90deg, rgba(0, 26, 51, 0.26), transparent 58%),
        radial-gradient(circle at 14% 14%, rgba(234, 179, 8, 0.12), transparent 24%);
}

.hero-title {
    max-width: 740px;
    font-size: 72px;
    line-height: 1.04;
    letter-spacing: 0;
    margin-bottom: 24px;
}

.hero-subtitle {
    max-width: 540px;
    font-size: 20px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.78) !important;
}

.hero-actions {
    gap: 14px;
    margin-bottom: 46px;
}

.btn-enroll,
.btn-view-course,
.btn-register-now,
.zlm-btn-primary,
.zlm-btn-link,
.btn-course-v2,
.registration-section .btn-reg-submit,
.btn-enroll-modal {
    border-radius: 8px;
}

.btn-enroll,
.btn-register-now {
    min-height: 54px;
    padding: 15px 28px;
    background: var(--zt-yellow);
    color: var(--zt-navy-950) !important;
    border: 1px solid var(--zt-yellow);
    box-shadow: 0 16px 32px rgba(234, 179, 8, 0.24);
}

.btn-enroll:hover,
.btn-register-now:hover {
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 18, 35, 0.24);
}

.btn-view-course {
    min-height: 54px;
    padding: 15px 28px;
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.06);
}

.btn-view-course:hover {
    border-color: rgba(255, 255, 255, 0.64);
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-2px);
}

.hero-stats {
    gap: 0;
    margin-top: 0;
    padding: 18px 0;
}

.stat-item {
    padding-right: 34px;
    margin-right: 34px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.68) !important;
}

.circle-bg {
    opacity: 0.72;
}

.floating-card {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 18px 38px rgba(0, 18, 35, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.floating-card .fc-label {
    color: rgba(255, 255, 255, 0.78);
}

.floating-card .fc-val {
    color: #ffffff;
}

.floating-card.fc-2 {
    background: rgba(255, 255, 255, 0.14);
}

.why-section {
    background: #ffffff;
}

.feature-card-stack {
    gap: 14px;
}

.feature-item-card {
    margin-bottom: 0;
    border-radius: 8px;
    border-color: #e4edf6;
    box-shadow: 0 12px 28px rgba(5, 31, 58, 0.05);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-item-card:hover {
    transform: translateY(-3px);
    border-color: rgba(13, 103, 174, 0.32);
    box-shadow: var(--zt-shadow);
}

.feature-icon-box {
    width: 58px;
    height: 58px;
}

.feature-text h4 {
    color: var(--zt-navy-900);
    font-size: 18px;
}

.feature-text p {
    color: var(--zt-muted);
    font-size: 15px;
}

.zlm-section {
    background:
        linear-gradient(180deg, #f6fbff 0%, #edf6ff 100%);
}

.zlm-header h2,
.zlm-method-content h3,
.hiw-title,
.registration-title {
    color: var(--zt-ink);
}

.zlm-level-card,
.zlm-method-panel,
.course-card-v2,
.registration-card,
.course-level-card,
.highlight-card {
    border-radius: 8px;
}

.zlm-level-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(13, 103, 174, 0.14);
    box-shadow: 0 12px 30px rgba(5, 31, 58, 0.06);
}

.zlm-method-panel {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(13, 103, 174, 0.12);
    box-shadow: var(--zt-shadow);
}

.zlm-tags span {
    border: 1px solid #e3edf6;
    box-shadow: none;
}

.zlm-btn-primary {
    background: var(--zt-blue-700);
}

.zlm-btn-primary:hover {
    background: var(--zt-blue-600);
}

.courses-section {
    padding: 82px 0;
    background:
        radial-gradient(circle at 88% 0%, rgba(13, 103, 174, 0.26), transparent 30%),
        linear-gradient(180deg, var(--zt-navy-950) 0%, #08223f 100%);
}

.courses-title {
    font-size: 40px;
    line-height: 1.14;
}

.courses-subtitle {
    color: rgba(255, 255, 255, 0.72);
}

.course-card-v2 {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 40px rgba(0, 10, 20, 0.18);
    backdrop-filter: blur(12px);
}

.course-card-v2:hover {
    transform: translateY(-4px);
    border-color: rgba(234, 179, 8, 0.55);
    box-shadow: 0 22px 50px rgba(0, 10, 20, 0.28);
}

.course-image-v2 {
    height: 190px;
}

.course-name-v2 {
    font-size: 19px;
    line-height: 1.25;
}

.course-meta-v2 {
    justify-content: space-between;
    gap: 12px;
}

.meta-item-v2 {
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
}

.meta-item-v2 i {
    color: var(--zt-yellow);
}

.btn-course-v2 {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
}

.btn-course-v2:hover {
    background: var(--zt-yellow);
    color: var(--zt-navy-950) !important;
}

.how-it-works-section {
    padding: 78px 0;
    background: var(--zt-blue-50);
}

.hiw-desc {
    display: block;
}

.hiw-list {
    overflow: hidden;
    border: 1px solid var(--zt-line);
    border-radius: 8px;
    background: #ffffff;
}

.hiw-item {
    padding: 26px 24px;
}

.hiw-border-top {
    border-top: 0 !important;
}

.hiw-border-bottom {
    border-bottom: 1px solid var(--zt-line) !important;
}

.hiw-item:last-child {
    border-bottom: 0 !important;
}

.hiw-number {
    color: var(--zt-blue-700);
    font-size: 30px;
}

.hiw-item-title {
    color: var(--zt-ink);
    font-size: 20px;
}

.register-now-section {
    padding: 94px 0;
    background:
        linear-gradient(rgba(0, 26, 51, 0.72), rgba(0, 26, 51, 0.78)),
        url('../images/img-register-now-bg.png') no-repeat center center fixed;
    background-size: cover;
}

.rn-title {
    font-size: 40px;
}

.registration-section {
    background:
        radial-gradient(circle at 10% 8%, rgba(13, 103, 174, 0.08), transparent 30%),
        linear-gradient(180deg, #f8fbfe 0%, #eef7ff 100%);
}

.registration-card {
    border-color: rgba(13, 103, 174, 0.16);
    box-shadow: 0 24px 64px rgba(5, 31, 58, 0.12);
}

.registration-card::before {
    height: 4px;
    background: linear-gradient(90deg, var(--zt-blue-700), var(--zt-blue-600), var(--zt-yellow));
}

.reg-form-wrap {
    padding: 52px;
}

.registration-section .form-title {
    font-size: 30px;
}

.registration-section .btn-reg-submit {
    background: var(--zt-blue-700);
    box-shadow: 0 16px 30px rgba(13, 79, 139, 0.22);
}

.registration-section .btn-reg-submit:hover {
    background: var(--zt-blue-600);
}

.reg-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 26, 51, 0.28), rgba(0, 26, 51, 0.04));
    pointer-events: none;
}

.highlight-card {
    width: 210px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 30px rgba(5, 31, 58, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(5, 31, 58, 0.18);
}

.h-icon {
    border-radius: 8px;
    background: var(--zt-blue-700);
}

.course-modal-content {
    border-radius: 8px;
}

@media (max-width: 1199px) {
    .hero-title {
        font-size: 58px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .section-padding,
    .why-section,
    .courses-section,
    .how-it-works-section,
    .registration-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .hero-banner {
        min-height: auto;
        padding: 112px 0 54px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 26px;
    }

    .hero-actions {
        margin-bottom: 28px;
    }

    .stat-item {
        padding-right: 18px;
        margin-right: 18px;
    }

    .stat-number {
        font-size: 28px;
    }

    .courses-title,
    .zlm-header h2,
    .zlm-method-content h3,
    .hiw-title,
    .registration-title {
        font-size: 28px;
    }

    .reg-form-wrap {
        padding: 34px 24px;
    }
}

@media (max-width: 767px) {
    .section-padding,
    .why-section,
    .courses-section,
    .how-it-works-section,
    .registration-section {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        gap: 8px;
        padding: 0;
    }

    .stat-item {
        padding: 12px 8px;
        margin: 0;
        border-right: 0;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.06);
        text-align: center;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 10px;
    }

    .btn-enroll,
    .btn-view-course {
        width: 100%;
    }

    .course-image-v2 {
        height: 158px;
    }

    .course-meta-v2 {
        flex-direction: column;
    }

    .hiw-item {
        padding: 18px 14px;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        padding-bottom: 40px;
    }

    .hero-actions {
        margin-bottom: 0;
    }

    .hero-stats {
        margin-top: 14px;
        gap: 8px;
    }

    .stat-item {
        min-height: 74px;
        padding: 10px 6px 9px;
        gap: 4px;
        justify-content: center;
    }

    .stat-icon-box img {
        height: 18px;
    }

    .stat-number {
        font-size: 20px;
        line-height: 1;
    }

    .stat-label {
        font-size: 9px;
        line-height: 1.15;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        margin-top: 12px;
    }

    .stat-item {
        min-height: 68px;
        padding: 8px 5px 7px;
    }

    .stat-icon-box img {
        height: 17px;
    }

    .stat-number {
        font-size: 19px;
    }

    .stat-label {
        font-size: 8.5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .student-img,
    .circle-bg,
    .floating-card,
    .course-card-v2,
    .feature-item-card,
    .highlight-card,
    .reg-img {
        animation: none !important;
        transition: none !important;
    }
}

/* ---------- Mobile Screenshot Fixes ---------- */
@media (max-width: 991px) {
    .navbar-main {
        padding: 12px 0;
        background: transparent !important;
        border-bottom: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .navbar-main.scrolled {
        padding: 8px 0;
        background: rgba(0, 26, 51, 0.9) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 12px 30px rgba(0, 18, 35, 0.18);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .navbar-main:has(.navbar-collapse.show) {
        background: rgba(0, 26, 51, 0.96) !important;
    }

    .navbar-main .container {
        min-height: 48px;
    }

    .navbar-brand img {
        height: 34px;
    }

    .navbar-main.scrolled .navbar-brand img {
        height: 31px;
    }

    .navbar-toggler {
        width: 46px;
        height: 46px;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 8px;
        background: rgba(0, 26, 51, 0.18);
        box-shadow: none;
    }

    .navbar-main.scrolled .navbar-toggler {
        width: 42px;
        height: 42px;
        background: rgba(255, 255, 255, 0.06);
    }

    .navbar-toggler-icon {
        width: 1.45em;
        height: 1.45em;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.22);
    }

    .hero-banner {
        padding-top: 104px;
        background:
            radial-gradient(circle at 76% 26%, rgba(47, 149, 216, 0.24), transparent 34%),
            linear-gradient(135deg, #001a33 0%, #08223f 56%, #0d4f8b 100%);
    }
}

@media (max-width: 767px) {
    .zlm-section {
        background: #f2f8fe;
    }

    .zlm-method-panel {
        width: calc(100% + 24px);
        margin-right: -12px;
        margin-left: -12px;
        padding: 28px 12px;
        border: 1px solid rgba(13, 103, 174, 0.12);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.82);
        box-shadow: none;
        overflow: visible;
    }

    .zlm-method-content {
        padding: 0 18px;
    }

    .zlm-method-content h3 {
        margin-bottom: 14px;
    }

    .zlm-method-content p {
        margin-bottom: 20px;
    }

    .zlm-method-art {
        margin: 8px 0 0;
        min-height: auto;
    }

    .zlm-method-art picture,
    .zlm-method-art img {
        width: 100%;
        max-width: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }

    .zlm-actions {
        margin-top: 22px;
        gap: 12px;
        align-items: center;
    }

    .zlm-btn-primary,
    .zlm-btn-link {
        min-height: 52px;
    }

    .zlm-btn-primary {
        flex: 1 1 auto;
        justify-content: center;
    }

    .zlm-btn-link {
        flex: 0 0 auto;
        padding-right: 0;
        padding-left: 0;
        background: transparent;
    }

    .how-it-works-section {
        padding-top: 40px;
    }

    .how-it-works-section .row.mb-5 {
        margin-bottom: 12px !important;
    }

    .how-it-works-section .section-kicker {
        margin-bottom: 14px !important;
    }

    .hiw-title {
        margin-bottom: 10px;
    }

    .hiw-desc {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 0;
    }

    .hiw-list {
        margin-top: 18px;
    }

    .how-it-works-section .col-lg-6[data-aos="fade-left"] {
        margin-top: 0;
    }

    .hiw-list {
        border-color: rgba(13, 103, 174, 0.16);
        box-shadow: 0 14px 34px rgba(5, 31, 58, 0.06);
    }

    .hiw-item {
        padding: 0;
    }

    .hiw-item .row {
        display: grid !important;
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 12px;
        align-items: center !important;
        min-height: 72px;
        padding: 14px 16px;
    }

    .hiw-number,
    .hiw-item-title {
        width: auto;
        max-width: none;
        padding: 0;
    }

    .hiw-number {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #eef7ff;
        color: var(--zt-blue-700);
        font-size: 20px;
        font-weight: 800;
        line-height: 1;
    }

    .hiw-item-title {
        color: var(--zt-ink);
        font-size: 17px;
        font-weight: 800;
        line-height: 1.25;
        letter-spacing: 0;
    }
}

@media (max-width: 390px) {
    .hiw-item .row {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 10px;
        padding: 13px 14px;
    }

    .hiw-number {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .hiw-item-title {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        padding-bottom: 22px;
    }

    .hero-actions {
        margin-bottom: 0;
    }

    .hero-actions a {
        width: auto;
    }

    .hero-stats {
        margin-top: 14px;
        gap: 8px;
    }

    .stat-item {
        min-height: 72px;
        padding: 9px 6px 8px;
        gap: 4px;
    }

    .stat-icon-box img {
        height: 18px;
    }

    .stat-number {
        font-size: 20px;
        line-height: 1;
    }

    .stat-label {
        font-size: 9px;
        line-height: 1.15;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding-bottom: 18px;
    }

    .hero-stats {
        margin-top: 12px;
    }

    .stat-item {
        min-height: 66px;
        padding: 8px 5px 7px;
    }

    .stat-icon-box img {
        height: 17px;
    }

    .stat-number {
        font-size: 19px;
    }

    .stat-label {
        font-size: 8.5px;
    }
}

/* ---------- Stable Mobile Hero Layout ---------- */
@media (max-width: 767px) {
    .hero-banner {
        padding-bottom: 34px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-bottom: 28px;
        position: relative;
        z-index: 2;
    }

    .hero-actions a {
        width: 100%;
        min-height: 52px;
        padding: 12px 8px;
    }

    .hero-stats {
        position: relative;
        z-index: 1;
        clear: both;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        margin-bottom: 26px;
    }
}

@media (max-width: 360px) {
    .hero-actions {
        grid-template-columns: 1fr;
    }
}

/* ---------- Homepage Typography + Color Sync ---------- */
:root {
    --zt-title-color: #111827;
    --zt-text-color: #374151;
    --zt-text-muted: #475569;
    --zt-soft-blue: #0b5798;
}

.why-section,
.zlm-section,
.how-it-works-section,
.registration-section {
    color: var(--zt-text-color);
}

.section-display-title,
.courses-title,
.hiw-title,
.zlm-header h2,
.zlm-method-content h3,
.registration-title {
    font-family: var(--font-heading);
    font-size: 40px !important;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0;
    color: var(--zt-title-color) !important;
}

.section-display-title span,
.courses-title span,
.hiw-title span,
.zlm-header h2 span,
.zlm-method-content h3 span,
.registration-title span {
    color: var(--zt-soft-blue) !important;
}

.section-description,
.courses-subtitle,
.zlm-header p,
.zlm-method-content p,
.hiw-desc,
.registration-lede,
.form-desc,
.feature-text p,
.zlm-level-copy p,
.hiw-item-desc {
    font-family: var(--font-body);
    font-size: 16px !important;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0;
    color: var(--zt-text-color) !important;
}

.section-kicker {
    font-family: var(--font-body);
    font-size: 12px !important;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--zt-soft-blue) !important;
}

.feature-text h4,
.zlm-level-copy h3,
.hiw-item-title,
.course-name-v2,
.form-title {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0;
    color: var(--zt-title-color);
}

.feature-text h4,
.zlm-level-copy h3 {
    font-size: 19px !important;
    line-height: 1.25;
}

.hiw-item-title {
    font-size: 20px !important;
    line-height: 1.25;
}

.courses-section .courses-title,
.register-now-section .rn-title,
.hero-title {
    color: #ffffff !important;
}

.courses-section .courses-subtitle,
.register-now-section .rn-subtitle,
.hero-subtitle {
    color: rgba(255, 255, 255, 0.82) !important;
}

.course-name-v2 {
    color: #ffffff !important;
}

.course-desc-v2 {
    font-size: 15px !important;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.74) !important;
}

.meta-item-v2 {
    font-size: 13px !important;
}

.rn-title {
    font-family: var(--font-heading);
    font-size: 40px !important;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0;
}

@media (max-width: 991px) {
    .section-display-title,
    .courses-title,
    .hiw-title,
    .zlm-header h2,
    .zlm-method-content h3,
    .registration-title,
    .rn-title {
        font-size: 30px !important;
        line-height: 1.18;
    }

    .section-description,
    .courses-subtitle,
    .zlm-header p,
    .zlm-method-content p,
    .hiw-desc,
    .registration-lede,
    .form-desc,
    .feature-text p,
    .zlm-level-copy p,
    .hiw-item-desc {
        font-size: 15px !important;
        line-height: 1.62;
    }
}

@media (max-width: 767px) {
    .section-display-title,
    .courses-title,
    .hiw-title,
    .zlm-header h2,
    .zlm-method-content h3,
    .registration-title,
    .rn-title {
        font-size: 28px !important;
        line-height: 1.18;
    }

    .feature-text h4,
    .zlm-level-copy h3,
    .hiw-item-title {
        font-size: 17px !important;
    }

    .section-description,
    .courses-subtitle,
    .zlm-header p,
    .zlm-method-content p,
    .hiw-desc,
    .registration-lede,
    .form-desc,
    .feature-text p,
    .zlm-level-copy p,
    .hiw-item-desc {
        font-size: 15px !important;
        color: var(--zt-text-color) !important;
    }

    .courses-section .courses-subtitle,
    .hero-subtitle {
        color: rgba(255, 255, 255, 0.82) !important;
    }

    .zlm-method-panel {
        width: calc(100vw - 32px);
        margin-top: 12px;
        margin-right: calc(50% - 50vw + 16px);
        margin-left: calc(50% - 50vw + 16px);
        padding: 16px 14px 18px;
        border: 1px solid rgba(13, 103, 174, 0.16);
        border-radius: 8px;
        background:
            radial-gradient(circle at 50% 45%, rgba(117, 198, 255, 0.1), transparent 42%),
            rgba(255, 255, 255, 0.88);
        box-shadow: none;
        overflow: hidden;
    }

    .zlm-method-content {
        padding-right: 0;
        padding-left: 0;
    }

    .zlm-method-kicker {
        min-height: 30px;
        margin-bottom: 8px;
        padding: 6px 12px;
        gap: 7px;
        font-size: 10.5px !important;
        letter-spacing: 1.8px;
    }

    .zlm-method-kicker img {
        width: 14px;
        height: 14px;
    }

    .zlm-method-content h3 {
        font-size: 25px !important;
        line-height: 1.14;
        margin-bottom: 10px;
        word-break: normal;
    }

    .zlm-method-content p {
        max-width: 100%;
        margin-bottom: 8px;
        font-size: 14px !important;
        line-height: 1.5;
    }

    .zlm-method-art {
        width: min(100%, 326px);
        margin: -6px auto 0;
        overflow: visible;
    }

    .zlm-method-visual,
    .zlm-method-art img {
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    .zlm-actions {
        margin-top: 6px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .zlm-btn-primary {
        flex: 0 1 52%;
    }

    .zlm-btn-link {
        flex: 0 1 auto;
        justify-content: center;
    }
}
