/* ============================================
   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;
    text-transform: lowercase;
    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;
}

/* 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.15) 0%, rgba(0, 26, 51, 0.4) 100%);
    z-index: 1;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* 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: 140px 0 60px;
        text-align: center;
    }
    .hero-title { font-size: 50px; letter-spacing: -1px; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; flex-wrap: wrap; }
    .stat-item { 
        margin-bottom: 20px; 
        border-right: none; 
        width: 33.33%; 
        padding: 0; 
        margin-right: 0;
    }
    .hero-illustration { margin-top: 60px; }
    .circle-bg { width: 400px; height: 400px; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 38px; }
    .hero-subtitle { font-size: 16px; }
    .stat-item { width: 100%; text-align: center; }
    .hero-actions .btn-enroll, .hero-actions .btn-view-course { width: 100%; }
    .circle-bg { width: 300px; height: 300px; }
}

/* ---------- Keep Learning Section ---------- */
.keep-learning-section {
    background-color: #EEF5FB;
    padding: 100px 0;
}

.keep-learning-label {
    color: #EAB308;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.keep-learning-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #1E293B;
}

.keep-learning-desc {
    color: #64748B;
    font-size: 16px;
    line-height: 1.7;
    max-width: 480px;
}

/* Accordion */
.learning-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-card {
    background: #ffffff;
    border: 1.5px solid #D8E8F4;
    border-radius: 16px;
    padding: 22px 28px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 45, 98, 0.04);
}

.accordion-card.active {
    background: #ffffff;
    border-color: #002D62;
    box-shadow: 0 4px 20px rgba(0, 45, 98, 0.10);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    margin: 0;
}

.arrow-wrapper {
    width: 38px;
    height: 38px;
    border: 1px solid #CBD5E1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accordion-card.active .arrow-wrapper {
    background: #002D62;
    border-color: #002D62;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.accordion-card.active .arrow-icon {
    filter: brightness(0) invert(1);
    transform: rotate(0deg); /* If already pointed up in asset */
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-card.active .accordion-body {
    max-height: 500px;
}

.accordion-body p {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
    margin: 8px 0 0 0;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: #F1F5F9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}


.feature-icon-box img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: all 0.4s ease;
}


.feature-text {
    position: relative;
    z-index: 2;
}

.feature-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 10px;
}

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

/* ═══════════════════════════════════════════════
   CIRCLE METHOD DIAGRAM — Keep Learning Section
   Ring image: circle-illustrations.png (1024×1024)
   Displayed at 340px → scale = 0.332
   Dot centres in 340px image:
     TL (See it)  → left: 64px,  top: 43px
     TR (Hear it) → left: 274px, top: 41px
     BL (Do it)   → left: 57px,  top: 254px
     BR (Ask it)  → left: 316px, top: 223px
═══════════════════════════════════════════════ */

.kl-diagram-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 135px 0 0 0; /* Align with description text and stay fixed */
}

/* Fixed-size container — responsive with aspect ratio */
.kl-ring-container {
    position: relative;
    width: 68%; /* Reduced to create a 42px visual gap between sections */
    max-width: 500px; /* Upper limit */
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto; /* Ensure it's centered */
}

.kl-ring-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    z-index: 1;
}

/* ── Label base ── */
.kl-label {
    position: absolute;
    width: 160px;
    pointer-events: none;
    z-index: 3;
}

.kl-lbl-title {
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    line-height: 1.2;
}

.kl-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    object-fit: contain;
    opacity: 0.75;
    filter: brightness(0) saturate(100%) invert(25%) sepia(60%) saturate(600%) hue-rotate(190deg);
}

.kl-icon-lg {
    width: 28px;
    height: 28px;
    display: block;
    margin-top: 7px;
    object-fit: contain;
    opacity: 0.65;
    filter: brightness(0) saturate(100%) invert(25%) sepia(60%) saturate(600%) hue-rotate(190deg);
}

.kl-lbl-desc {
    font-size: 12.5px;
    color: #64748B;
    line-height: 1.55;
    margin: 0;
}

.kl-lbl-see { left: 18.8%; top: 12.7%; transform: translate(-140%, -50%); text-align: left; }
.kl-lbl-hear { left: 80.6%; top: 12.1%; transform: translate(40%, -50%); text-align: left; }
.kl-lbl-do { left: 16.8%; top: 74.7%; transform: translate(-140%, -50%); text-align: left; }
.kl-lbl-ask { left: 92.9%; top: 65.6%; transform: translate(40%, -50%); text-align: left; }



/* ── Animations ── */
@keyframes circleFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}

/* ── 1199px: shrink to 380px ── */
@media (max-width: 1199px) {
    .kl-ring-container { max-width: 380px; }
    .kl-lbl-title { font-size: 14px; }
    .kl-lbl-desc  { font-size: 12px; }
    .kl-label { max-width: 130px; }
}

/* ── 991px: shrink to 300px, hide labels (stacked layout) ── */
@media (max-width: 991px) {
    .kl-ring-container { max-width: 300px; margin: 30px auto 0; }
    .kl-center-text { font-size: 14px; }
}

/* ---------- 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: 34px; /* Reduced from 44px */
    font-weight: 800;
    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-badge-v2 {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #EAB308;
    color: #001A33;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

.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: 36px;
    }
    .course-content-v2 {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .courses-title {
        font-size: 30px;
    }
    .course-desc-v2 {
        height: auto;
        -webkit-line-clamp: unset;
    }
}
/* ---------- How It Works Section ---------- */
.how-it-works-section {
    background-color: #F0F7FF;
    padding: 100px 0;
}

.hiw-label {
    color: #0D4F8B;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 15px;
}

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

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

.hiw-desc {
    color: #64748B;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 500px;
}

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

.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: 42px;
        margin-bottom: 30px;
    }
    .hiw-item-title {
        font-size: 22px;
        margin: 10px 0;
    }
    .hiw-number {
        font-size: 32px;
    }
}

@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: 32px;
    }
    .rn-subtitle {
        font-size: 16px;
    }
}

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

.reg-title {
    font-size: 48px;
    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: 50px;
}

.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: #001A33;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    color: #ffffff;
}

.modal-course-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.modal-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 26, 51, 0.8), transparent);
}

.modal-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #EAB308;
    color: #001A33;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
}

.modal-course-title {
    font-size: 32px;
    font-weight: 800;
    color: #EAB308;
}

.modal-course-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.modal-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 5px;
}

.spec-value {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.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: 16px;
    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) {
    .modal-course-image {
        min-height: 250px;
    }
    .modal-overlay {
        background: linear-gradient(to top, rgba(0, 26, 51, 0.9), transparent);
    }
}

.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) {
    .reg-form-wrap {
        padding: 30px 20px;
    }
    .reg-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .form-title {
        font-size: 26px;
    }
}



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

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

@media (max-width: 991px) {
    .sticky-column {
        position: static;
        margin-bottom: 40px;
    }
    .section-display-title {
        font-size: 36px;
    }
}

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

.feature-item-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 30px;
    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) {
    .feature-item-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

/* ---------- 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: 80px 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: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-contact-item i {
    font-size: 18px;
    color: #ffffff;
    margin-top: 4px;
}

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

/* Mobile Responsive Fix for Learning Diagram */
@media (max-width: 768px) {
    .kl-lbl-desc {
        display: none;
    }
    .kl-label {
        width: 140px;
        pointer-events: auto;
    }
    .kl-lbl-title {
        font-size: 13px;
        justify-content: flex-start;
        gap: 5px;
    }
    .kl-ring-container {
        width: 100%;
        max-width: 320px;
        margin-top: 50px;
    }
    /* Adjust positions for small screens so they don't overlap or go off-screen */
    .kl-lbl-see { left: 50%; top: 0%; transform: translate(-50%, -120%); text-align: center; justify-content: center; width: 100%; }
    .kl-lbl-hear { left: 50%; top: 100%; transform: translate(-50%, 20%); text-align: center; justify-content: center; width: 100%; }
    .kl-lbl-do { left: 0%; top: 50%; transform: translate(-100%, -50%); text-align: right; width: 100px; }
    .kl-lbl-ask { left: 100%; top: 50%; transform: translate(0%, -50%); text-align: left; width: 100px; }

    .kl-lbl-see .kl-lbl-title, .kl-lbl-hear .kl-lbl-title { justify-content: center; }
    .kl-lbl-do .kl-lbl-title { justify-content: flex-end; }
}

@media (max-width: 480px) {
    .kl-ring-container {
        max-width: 240px;
    }
    .kl-label {
        width: 90px;
    }
    .kl-lbl-title {
        font-size: 11px;
    }
    .kl-icon, .kl-icon-lg {
        width: 18px;
        height: 18px;
    }
}
