:root {
    --navy: #00304B;
    --navy-light: #133460;
    --gold: #f5a623;
    --gold-hover: #e09415;
    --white: #ffffff;
    --muted: rgba(255, 255, 255, 0.65);
    --divider: rgba(255, 255, 255, 0.12);

    --bg: #f0f6ff;
    --card-bg: #ffffff;
    --accent: #f5a623;
    --text-dark: #0d1f3c;
    --text-muted: #6b7a99;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    --card-radius: 4px;
    --card-h: 90px;
    --card-w: 160px;
    --gap: 16px;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Banner */
.banner-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.banner-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8, 25, 60, 0.92) 0%, rgba(8, 25, 60, 0.72) 55%, rgba(8, 25, 60, 0.30) 100%),
        url('../images/banner/banner-img.webp') center/cover no-repeat;
    z-index: 0;
}

.banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 4rem;
}

.left-section {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.call-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 22px;
}

.headline .highlight {
    color: var(--gold);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    margin-bottom: 26px;
}

.stat-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: start;
    gap: 20px;
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    white-space: nowrap;
}

.stat-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.3;
    padding-top: 3px;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    gap: 8px;
    background: var(--gold);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    width: fit-content;
    letter-spacing: 0.03em;
}

.cta-btn:hover {
    background: var(--gold);
    transform: translateY(-1px);
}

.cta-btn svg {
    flex-shrink: 0;
}

.right-section {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 40px;
}

.form-placeholder {
    width: 100%;
    max-width: 460px;
    background: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-placeholder span {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: unset !important;
    color: #000 !important;
}

@media (max-width: 900px) {
    .banner-inner {
        flex-direction: column;
    }

    .left-section {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-right: 0;
        padding-bottom: 24px;
    }

    .right-section {
        padding-left: 0;
        padding-top: 24px;
    }

}


@media (max-width: 768px) {
    .banner-inner {
        margin-top: 0rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        grid-template-columns: 90px 1fr;
        gap: 15px;
    }

    .stat-num {
        font-size: 36px;
    }

    .stat-desc {
        font-size: 16px;
        margin-left: 20px;
    }
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .headline {
        font-size: 30px;
    }

    .banner-inner {
        margin-top: 0rem;
    }
}

@media (min-width: 992px) and (max-width: 1400px) {
    .headline {
        font-size: 30px;
    }

    .banner-inner {
        margin-top: 0rem;
    }
}

/* End Banner */


.star_icon {
    margin: 0 10px;
    font-size: 20px;
    color: #000;
}

.bg_color {
    background: #FFA201
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: marquee 20s linear infinite;
    width: max-content;
    font-weight: 500;
}

.star_icon {
    font-size: 18px;
    font-weight: bold;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: 18px;
    height: 100%;
}

.blue-card {
    background: #E6F4FD;
}

.cream-card {
    background: #FFF6E6;
}

.green-card {
    background: #E6F6F7;
}

.icon-box {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 14px;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-shrink: 0;
}

.icon-box img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.orange {
    color: #e98b00;
}

.green {
    color: #00a9a5;
}

.feature-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #55656f;
}

.feature-card strong {
    color: #003d4a;
    font-weight: 700;
}


.section-wrapper {
    background-color: #0B1F3A;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 60%),
        linear-gradient(to bottom right, rgba(255, 255, 255, 0.02) 0%, transparent 80%);
    padding: 60px 20px;
}

.section-heading {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
}

.section-heading span {
    color: #F7A11A;
}

.section-subtext {
    color: #A8BDD0;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.content-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
}

.content-text {
    padding: 36px 36px 36px 36px;
}

.content-text p {
    color: #374151;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #1F2937;
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.feature-list li i {
    color: #1291D4;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.image-side {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 0 16px 16px 0;
}

.why-card {
    background: #0478b7;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 400;
}

.why-icon-box {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.why-icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.why-content {
    flex: 1;
}

.why-content h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
}

.why-content p {
    color: #d9edf7;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.section-gallery {
    margin: 3rem 0rem;
}

.section-gallery .section-heading {
    color: black;
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.02);
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
}

.step-card {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    padding: 0px 20px 20px;
    height: 100%;
    border: 1px solid #F0EAD9;
}

.shield-wrap {
    width: 72px;
    height: 80px;
    position: relative;
    margin-bottom: 1.25rem;
}

.shield-wrap img.shield-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.shield-bg {
    margin-bottom: 20px;
}

.shield-bg img {
    position: relative;
    width: 90px;
    height: 100px;
}

.section-steps {
    background: #FFA2011A;
}

.steps_block .section-heading,
.steps_block .section-sub,
.section-faq .section-heading,
.section-faq .section-sub {
    color: black;
}

.section-faq .section-heading,
.section-faq .section-sub {
    text-align: center;
}


.steps_block {
    padding: 3rem 1rem;
}

.step-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.step-1 .step-badge {
    background-color: #FCE4F3;
    color: #E91E8C;
}

.step-2 .step-badge {
    background-color: #E0E7F5;
    color: #1B3A6B;
}

.step-3 .step-badge {
    background-color: #FEE9D6;
    color: #F97316;
}


.step-4 .step-badge {
    background-color: #E0F2FE;
    color: #2196F3;
}

.step-5 .step-badge {
    background-color: #D9F6F3;
    color: #0D9488;
}


.faq-item {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}

.faq-number {
    font-size: 20px;
    font-weight: 600;
    color: #9CA3AF;
    min-width: 28px;
    text-align: start;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    flex: 1;
    margin: 0;
}

.faq-toggle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #1291D4;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 300;
    flex-shrink: 0;
    line-height: 1;
    transition: background-color 0.2s ease;
}

.faq-toggle.collapsed {
    background-color: transparent;
    color: #6B7280;
    border: 1px solid #D1D5DB;
}

.faq-body {
    padding: 0 24px 20px 68px;
}

.faq-answer {
    font-size: 16px;

    color: #3D677E;
    line-height: 1.7;
    margin: 0;
}

/* Footer */

.cta-section {
    background: var(--navy);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .section-heading {
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.cta-section .section-sub {
    color: var(--muted);
    margin-bottom: 36px;
    font-weight: 400;
}

/* â”€â”€ APPLY BUTTON â”€â”€ */
.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: #1a1a1a;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(245, 166, 35, 0.35);
}

.btn-apply:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(245, 166, 35, 0.45);
    color: #1a1a1a;
    text-decoration: none !important;
}

.btn-apply .arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    font-size: 0.85rem;
    transition: transform 0.2s;
}

.btn-apply:hover .arrow-icon {
    transform: translate(2px, -2px);
}

/* â”€â”€ CONTACT ROW â”€â”€ */
.contact-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 0;
    margin-top: 52px;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 22px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none !important;
    transition: background 0.2s, border-color 0.2s;
}

.contact-pill:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.contact-pill .icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.divider-pill {
    width: 1px;
    height: 38px;
    background: var(--divider);
    margin: 0 6px;
    align-self: center;
}

.phone-icons {
    display: inline-flex;
    gap: 6px;
}


.cta-hr {
    border: none;
    border-top: 1px solid var(--divider);
    margin: 48px auto 0;
    max-width: 1100px;
}

/* Partner */
.section-partner {
    text-align: center;
    margin-bottom: 44px;
    padding: 0 20px;
    text-align: center;
    background: #96DAFF1A;
    padding: 50px 0px;

}

.section-partner .section-heading {
    color: var(--text-dark);
    font-weight: 700;
}

.section-partner .section-heading span {
    color: var(--accent);
}

.section-partner .section-heading .section-sub {
    color: var(--text-muted);
    font-size: 18px;
    margin-top: 8px;
}

.marquee-section {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    overflow: hidden;
}

.marquee-row {
    display: flex;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: var(--gap);
    flex-shrink: 0;
    will-change: transform;
}

.marquee-row.rtl .marquee-track {
    animation: scroll-left var(--speed, 35s) linear infinite;
}

.marquee-row.ltr .marquee-track {
    animation: scroll-right var(--speed, 40s) linear infinite;
}

.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.logo-card {
    flex-shrink: 0;
    width: var(--card-w);
    height: var(--card-h);
    background: var(--card-bg);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: default;
}

.logo-card:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.25s;
}

.logo-card:hover img {
    filter: grayscale(0%);
}

.logo-card .logo-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.3;
}

@media (max-width: 640px) {
    :root {
        --card-w: 130px;
        --card-h: 72px;
        --gap: 12px;
    }
}

/* End Partner */

/* Start Course */
.course-wrapper {
    padding: 48px 0px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #B45309;
    background: #FEF3C7;
    padding: 5px 12px;
    border-radius: 0px;
    margin-bottom: 0.75rem;
}

.course-wrapper .section-heading {
    /* font-size: 1.75rem; */
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.3rem;
}

.course-wrapper .section-sub {
    font-size: 0.92rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
}

/* Partner filter buttons */
.course-wrapper .partner-btn {
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 4px;
    border: 1.5px solid #D1D5DB;
    background: #fff;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.course-wrapper .partner-btn:hover {
    border-color: #1291D4;
    color: #1291D4;
}

.course-wrapper .partner-btn.active {
    background: #1291D4;
    border-color: #1291D4;
    color: #fff;
}

/* Level tabs */
.level-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #E5E7EB;
    margin-bottom: 1.75rem;
}

.level-tab {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6B7280;
    padding: 8px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    transition: all 0.2s;
}

.level-tab:hover {
    color: #1291D4;
}

.level-tab.active {
    color: #1291D4;
    border-bottom: 2px solid #1291D4;
    font-weight: 600;
}

.card-list .card-item {
    padding: 0 10px;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: inherit !important;
}

.slick-slide>div {
    height: 100%;
}

.prog-card {
    display: block;
}

.slick-dots li button:before {
    color: #1383B2 !important;
    opacity: 0.3;
    font-size: 19px !important;
}

.slick-dots li.slick-active button:before {
    color: #1383B2 !important;
    opacity: 1;
}

.slick-dots {
    bottom: -40px !important;
    color: #1383B2 !important;
}

/* Cards */
.prog-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.prog-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
    transform: translateY(-3px);
    color: inherit;
}

.prog-card img {
    max-width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.prog-card_img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.prog-card-body {
    padding: 14px 16px 16px;
}

.prog-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.45;
    min-height: 42px;
}

.powered-label {
    font-size: 0.72rem;
    color: #9CA3AF;
    margin-bottom: 4px;
}

.powered-logo {
    height: 20px !important;
    object-fit: contain !important;
}

.no-results {
    text-align: center;
    color: #9CA3AF;
    padding: 48px 0;
    font-size: 0.95rem;
}

.partner-scroll {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

@media (max-width: 576px) {
    .course-wrapper {
        padding: 0px 0px 48px 0px;
    }

    .section-heading {
        font-size: 1.35rem;
    }

    .level-tab {
        padding: 8px 12px;
        font-size: 0.82rem;
    }

    .slick-dots {
        bottom: -60px !important;
        line-height: 4px !important;
    }
}

/* End Course */
.footer-bar {
    background: var(--navy);
    padding: 22px 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-bar .copyright {
    font-size: 14px;
    color: var(--muted);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links a {
    color: var(--muted);
    font-size: 1.05rem;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
    display: inline-flex;
}

.social-links i {
    font-size: 25px;
}

.social-links a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .gallery-img {
        height: 200px;
    }

    .step-card {
        padding: 0px 20px 20px;
    }

    .faq-header {
        padding: 16px 16px;
        gap: 12px;
    }

    .faq-body {
        padding: 0 16px 16px 56px;
    }

    .faq-question {
        font-size: 18px;
    }

    .cta-section {
        padding: 60px 16px 50px;
    }

    .contact-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .divider-pill {
        display: none;
    }

    .footer-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 16px;
    }
}


@media (max-width: 768px) {

    .section-partner {
        padding: 30px 0px;
    }

    .section-title,
    .section-heading {
        font-size: 28px;
    }

    .section-title {
        margin-top: 4rem;
    }

    .content h4 {
        font-size: 20px;
    }

    .content p {
        font-size: 15px;
    }

    .feature-card {
        padding: 20px;
    }

    .icon-box {
        width: 60px;
        height: 60px;
    }

    .icon-box img {
        width: 50px;
        height: 50px;
    }

    .image-side {
        display: none !important;
    }

    .content-text {
        padding: 24px 20px;
    }

    .section-heading {
        font-size: 1.5rem;
    }

}

.social-icons {
    width: 50px;
    height: 50px;
}