:root {
    --ink: #12162B;
    --ink-soft: #666E85;
    --indigo: #4F46E5;
    --indigo-dark: #3730A3;
    --indigo-soft: #EEF2FF;
    --amber: #F59E0B;
    --amber-dark: #D97F06;
    --lavender: #F4F1FF;
    --border: #E7E9F2;
    --chip-bg: #12162B;
    --chip-text: #34D399;
    --footer-bg: #232b38;
    --footer-border: #3a4353;
    --footer-text: #c9d0da;
    --footer-heading: #ffffff;
    --accent-orange: #f7941d;
    --icon-bg: #3a4353;
    --ink: #1c2333;
    --muted: #5b6478;
    --accent: #7c3aed;
    --accent-soft: #f3edff;
    --chip-border: #e4e1ee;
    --wrap-bg: #eef1f8;
    --phone-text: #2a4b8d;
    --callback-bg: #2a4b8d;
    --callback-hover: #1d3866;
    --blue-start: #1a2fce;
    --blue-end: #050b2e;
    --date-bg: #fde3c0;
    --seats-red: #e0483f;
    --filling-orange: #f0930a;
    --apply-blue: #2e4bf2;
    --border: #e9ecef;
    --ink: #1c2333;
    --muted: #6b7280;
    --hejex-primary: #03157B;
    --hejex-primary-deep: #020F5C;
    --hejex-navy: #0B1F3F;
    --hejex-muted: #6B7280;
    --hejex-card-bg: #F4F6FC;
    --hejex-line: #DDE2F2;
    --orange-light: #fff4ee;
    --orange: #e85d04;
    --orange-dark: #c44d00;
    --orange-light: #fff4ee;
    --orange-glow: rgba(232, 93, 4, 0.18);
    --ink: #0f172a;
    --ink-soft: #334155;
    --ink-muted: #64748b;
    --paper: #fafaf9;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .10), 0 2px 6px rgba(0, 0, 0, .07);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .14), 0 4px 12px rgba(0, 0, 0, .08);
    --radius: 10px;
    --radius-sm: 6px;
    --radius-pill: 999px;
    --radius-lg: 16px;
    --green-light: #dcfce7;
    --hjx-ink: #12162B;
    --hjx-ink-soft: #666E85;
    --hjx-indigo: #4F46E5;
    --hjx-indigo-dark: #3730A3;
    --hjx-indigo-soft: #EEF2FF;
    --hjx-amber: #F59E0B;
    --hjx-amber-dark: #D97F06;
    --hjx-lavender: #F4F1FF;
    --hjx-border: #E7E9F2;
    --white: #ffffff;
    --green: #16a34a;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #fff;
    color: var(--ink);
}

h2 {
    font-family: Arial, sans-serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

.display {
    font-family: 'Sora', sans-serif;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

/* ===== Announcement bar ===== */
.hjx-announce {
    background: var(--hjx-lavender);
    border-bottom: 1px solid var(--hjx-border);
    padding: .55rem 0;
}

.hjx-announce-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .9rem;
    flex-wrap: wrap;
    font-size: .86rem;
    color: var(--hjx-ink);
    padding: 0 1rem;
}

.hjx-announce-wrap b {
    color: var(--hjx-indigo-dark);
}

.hjx-pill {
    background: var(--hjx-amber);
    color: #fff;
    font-weight: 700;
    font-size: .8rem;
    padding: .35rem .9rem;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: .2s;
    border-style: none;
}

.hjx-pill:hover {
    background: var(--hjx-amber-dark);
    color: #fff;
}

/* ===== Bar ===== */
.hjx-bar {
    background: #fff;
    padding: .7rem 0;
    border-bottom: 1px solid var(--hjx-border);
    position: relative;
    z-index: 1000;
}

.hjx-container {
    width: 100%;
    padding: 0 0.75rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hjx-brand {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.hjx-brand img {
    height: 46px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

/* ===== Burger (our own, not navbar-toggler) ===== */
.hjx-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 38px;
    padding: 8px 9px;
    background: none;
    border: 1px solid var(--hjx-border);
    border-radius: 8px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.hjx-burger-bar {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    background: var(--hjx-ink);
    transition: transform .2s, opacity .2s;
}

.hjx-burger[aria-expanded="true"] .hjx-burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hjx-burger[aria-expanded="true"] .hjx-burger-bar:nth-child(2) {
    opacity: 0;
}

.hjx-burger[aria-expanded="true"] .hjx-burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== Collapse (our own, not .collapse/.navbar-collapse) ===== */
.hjx-collapse {
    width: 100%;
}

.hjx-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.hjx-item {
    position: relative;
}

.hjx-link {
    color: var(--hjx-ink);
    font-weight: 600;
    font-size: .94rem;
    padding: .6rem .9rem;
    display: flex;
    align-items: center;
    gap: .3rem;
    text-decoration: none;
    background: none;
    border: 0;
    font-family: inherit;
    cursor: pointer;
    width: 100%;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
}

.hjx-link:hover {
    color: var(--hjx-indigo);
}

.hjx-caret {
    font-size: 1.05rem;
    line-height: 1;
    color: var(--hjx-ink-soft);
    transition: transform .2s;
    margin-left: auto;
}

.hjx-item.is-open>.hjx-link .hjx-caret {
    transform: rotate(180deg);
    color: var(--hjx-indigo);
}

/* ===== Dropdown shells ===== */
.hjx-mega,
.hjx-simple {
    display: none;
}

.hjx-item.is-open>.hjx-mega,
.hjx-item.is-open>.hjx-simple {
    display: block;
}

.hjx-mega {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: 590px;
    max-width: min(590px, 92vw);
    background: #fff;
    border: 1px solid var(--hjx-border);
    border-radius: 14px;
    box-shadow: 0 30px 60px -20px rgba(18, 22, 43, .22);
    overflow: hidden;
    z-index: 1050;
}

.hjx-simple {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 230px;
    list-style: none;
    margin: 0;
    background: #fff;
    border: 1px solid var(--hjx-border);
    border-radius: 10px;
    padding: .4rem;
    box-shadow: 0 18px 40px -18px rgba(18, 22, 43, .2);
    z-index: 1050;
}

.hjx-simple-item {
    display: block;
    border-radius: 7px;
    padding: .5rem .7rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--hjx-ink);
    text-decoration: none;
}

.hjx-simple-item:hover {
    background: var(--hjx-indigo-soft);
    color: var(--hjx-indigo-dark);
}

.hjx-mega-inner {
    display: flex;
    min-height: 0;
}

.hjx-mega-side {
    width: 270px;
    flex: 0 0 270px;
    background: #FAFAFD;
    border-right: 1px solid var(--hjx-border);
    padding: .5rem;
    align-self: stretch;
}

.hjx-cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem .8rem;
    border-radius: 8px;
    cursor: pointer;
    color: var(--hjx-ink);
    font-weight: 600;
    font-size: .9rem;
    border-left: 3px solid transparent;
    transition: .15s;
    width: 100%;
    background: none;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    font-family: inherit;
    text-align: left;
}

.hjx-cat-label {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.hjx-cat:hover {
    background: #F1F1F8;
}

.hjx-cat.is-active {
    background: var(--hjx-indigo-soft);
    border-left-color: var(--hjx-indigo);
    color: var(--hjx-indigo-dark);
}

.hjx-chev {
    font-size: .7rem;
    color: #B7BBCB;
}

.hjx-badge {
    background: #FEE2E2;
    color: #DC2626;
    font-size: .6rem;
    letter-spacing: .4px;
    padding: .12rem .4rem;
    border-radius: 5px;
    margin-left: .4rem;
}

.hjx-mega-content {
    flex: 1;
    padding: .5rem 1.35rem;
}

.hjx-panel {
    display: none;
}

.hjx-panel.is-active {
    display: block;
}

.hjx-list {
    display: flex;
    flex-direction: column;
}

.hjx-course {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .6rem .6rem;
    border-bottom: 1px solid #F2F2F7;
    text-decoration: none;
    color: var(--hjx-ink);
    font-weight: 600;
    font-size: .92rem;
    transition: .15s;
}

.hjx-course:last-child {
    border-bottom: none;
}

.hjx-course:hover {
    color: var(--hjx-indigo);
    padding-left: 1rem;
}

.hjx-course-t {
    display: flex;
    align-items: center;
}

/* ===== Mobile accordion ===== */
.hjx-acc {
    display: none;
}

.hjx-acc-item {
    border-bottom: 1px solid var(--hjx-border);
}

.hjx-acc-item:last-child {
    border-bottom: none;
}

.hjx-acc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .75rem .5rem;
    font-weight: 600;
    font-size: .92rem;
    color: var(--hjx-ink);
    cursor: pointer;
    background: none;
    border: 0;
    text-align: left;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

.hjx-acc-head .hjx-mono {
    color: var(--hjx-ink-soft);
    font-size: .7rem;
    margin-right: .45rem;
}

.hjx-acc-head .hjx-chev {
    font-size: .75rem;
    color: var(--hjx-ink-soft);
    transition: transform .2s;
}

.hjx-acc-item.is-open .hjx-acc-head {
    color: var(--hjx-indigo-dark);
}

.hjx-acc-item.is-open .hjx-acc-head .hjx-chev {
    transform: rotate(90deg);
    color: var(--hjx-indigo);
}

.hjx-acc-body {
    display: none;
    padding: 0 .5rem .5rem 1.1rem;
}

.hjx-acc-item.is-open .hjx-acc-body {
    display: block;
}

.hjx-acc-body a {
    display: block;
    padding: .55rem 0;
    color: var(--hjx-ink);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    border-bottom: 1px solid #F2F2F7;
}

.hjx-acc-body a:last-child {
    border-bottom: none;
}

/* ===== Breakpoint: below 992px ===== */
@media (max-width:991.98px) {
    .hjx-brand img {
        height: 36px;
    }

    .hjx-collapse {
        display: none;
    }

    .hjx-collapse.is-open {
        display: block;
    }

    .hjx-menu {
        flex-direction: column;
        margin: 1rem 0;
    }

    .hjx-mega,
    .hjx-simple {
        position: static;
        width: 100%;
        max-width: 100%;
        margin-top: .4rem;
        border-radius: 10px;
        box-shadow: none;
    }

    .hjx-mega-inner {
        display: none;
    }

    .hjx-acc {
        display: block;
        padding: .4rem;
    }
}

/* ===== Breakpoint: 992px and up ===== */
@media (min-width:992px) {
    .hjx-container {
        padding: 0 1.5rem;
        flex-wrap: nowrap;
    }

    .hjx-burger {
        display: none;
    }

    .hjx-collapse {
        display: flex;
        flex: 1 1 auto;
        align-items: center;
        justify-content: center;
        width: auto;
    }

    .hjx-caret {
        margin-left: 0;
    }

    .hjx-link {
        width: auto;
    }

    .hjx-acc {
        display: none;
    }
}

.yt-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.yt-modal.open {
    display: block;
}

.yt-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .85);
}

.yt-modal-content {
    position: relative;
    max-width: 900px;
    width: 90%;
    margin: 5vh auto;
    aspect-ratio: 16/9;
}

.yt-modal-iframe-wrap {
    width: 100%;
    height: 100%;
}

.yt-modal-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.yt-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

.section-block+.section-block {
    margin-top: 44px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--ink);
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.section-title i {
    color: var(--accent);
    font-size: 1.1rem;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--chip-border);
    border-radius: 8px;
    background: #fff;
    color: var(--muted);
    text-decoration: none;
    font-size: .92rem;
    transition: all .18s ease;
}

.chip::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: .5;
    flex-shrink: 0;
    transition: opacity .18s ease;
}

.chip:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--ink);
    transform: translateY(-2px);
}

.chip:hover::before {
    opacity: 1;
}

.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 48px 0 24px;
    position: relative;
}

.footer-heading {
    color: var(--footer-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.footer-heading-rule {
    border-top: 1px solid var(--footer-border);
    margin-bottom: 18px;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
}

.footer-anc {
    font-size: 0.75rem !important;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links .divider {
    color: var(--footer-border);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--icon-bg);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: background .2s ease;
}

.social-icon:hover {
    background: var(--accent-orange);
    color: #fff;
}

.map-frame {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 4px;
}

.banner-bg {
    background-color: #0d6efd;
    padding: 60px 20px;
}

.google-badge {
    display: inline-block;
    position: relative;
    font-family: Arial, sans-serif;
}

.rating-box {
    background: #ffffff;
    border: 2px solid #000000;
    padding: 25px 50px 45px 50px;
    font-size: 22px;
    font-weight: 500;
    color: #000;
}

.google-logo {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 70px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    letter-spacing: -2px;
    line-height: 1;
    white-space: nowrap;
}

.google-logo .b {
    color: #4285F4;
}

.google-logo .r {
    color: #EA4335;
}

.google-logo .y {
    color: #FBBC05;
}

.google-logo .g {
    color: #34A853;
}

a {
    text-decoration: none !important;
}

.sub-hd {
    color: #03157b;
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;

    background:
        radial-gradient(circle at 72% 45%,
            rgba(39, 93, 255, 0.30),
            transparent 28%),
        radial-gradient(circle at 20% 100%,
            rgba(24, 66, 180, 0.25),
            transparent 35%),
        linear-gradient(135deg,
            #020936 0%,
            #07155f 48%,
            #03145c 100%);
}

/* Subtle premium glow */

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(24, 92, 255, 0.12);
    filter: blur(100px);
    right: 15%;
    top: 15%;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 45px 0 30px;
}

/* Location */

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 17px;

    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50px;

    background: rgba(255, 255, 255, .03);

    font-size: 15px;
    margin-bottom: 28px;
}

.location-badge i {
    color: #ffc107;
}

/* Small heading */

.hero-tagline {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
}

.hero-tagline span {
    color: #ffc107;
}

.hero h1 {
    font-size: clamp(1.5rem, 5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #ffc107;
}

.hero-description {
    max-width: 650px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .86);
}

.hero-description strong {
    color: #fff;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 25px 0 28px;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 13px;
}

.hero-benefits i {
    color: #ffc107;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-demo {
    background: #ffc107 !important;
    color: #111;
    border: 1px solid #ffc107;
    padding: 14px 25px;
    font-weight: 600;
    border-radius: 8px;
}

.btn-demo:hover {
    background: #ffca2c;
    color: #111;
}

.btn-expert {
    border: 1px solid rgba(255, 255, 255, .55);
    padding: 14px 25px;
    font-weight: 600;
    border-radius: 8px;
    color:#fff;
}

.btn-expert:hover {
    background: #07155f;
    color: #fff;
}

/* =========================
           RIGHT IMAGE
        ========================= */

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual img {
    width: 100%;
    max-width: 650px;
    height: auto;

    display: block;

    filter:
        drop-shadow(0 20px 45px rgba(0, 0, 0, .35));
}

/* =========================
           TRUST BAR
        ========================= */

.trust-bar {
    position: relative;
    z-index: 5;

    margin-top: 30px;

    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;

    background: rgba(2, 10, 55, .55);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    padding: 18px 12px;
}

.trust-item {
    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    border-right: 1px solid rgba(255, 255, 255, .15);
}

.trust-bar .row > div:last-child .trust-item {
    border-right: 0;
}

.trust-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);

    font-size: 21px;
    color: #ffc107;
}

.trust-number {
    color: #ffc107;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.trust-label {
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
    margin-top: 4px;
}

/* =========================
           MOBILE
        ========================= */

@media (max-width: 991px) {

    .hero-inner {
        padding-top: 35px;
    }

    .hero-visual {
        margin-top: 35px;
    }

    .hero-visual img {
        max-width: 580px;
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        padding: 15px 5px;
    }

    .trust-bar .row > div:nth-last-child(-n+2) .trust-item {
        border-bottom: 0;
    }
}

@media (max-width: 575px) {

    .hero-inner {
        padding: 30px 0 25px;
    }

    .location-badge {
        font-size: 13px;
    }

    .hero-tagline {
        font-size: 16px;
    }
    .hero h1 {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-benefits li {
        font-size: 14px;
        align-items: flex-start;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-visual {
        margin-top: 20px;
    }

    .trust-bar {
        padding: 8px;
    }

    .trust-number {
        font-size: 20px;
    }

    .trust-label {
        font-size: 12px;
    }

    .trust-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }
}

/** Course **/
.courses-section {
    background: #fff;
}

.course-label {
    color: #2454d6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.course-title {
    /* color: #101936; */
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    margin: 10px 0;
}

.course-title span {
    color: #2454d6;
}

.course-intro {
    max-width: 700px;
    margin: auto;
    color: #667085;
    font-size: 17px;
}

.course-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 18px;
    transition: .25s ease;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(16, 25, 54, .12);
}

.course-image {
    height: 205px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.04);
}

.course-body {
    padding: 22px;
}

.course-type {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    background: #eaf0ff;
    color: #2454d6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .7px;
}

.course-body h3 {
    color: #101936;
    font-size: 21px;
    line-height: 1.25;
    margin: 12px 0 8px;
}

.course-body p {
    color: #667085;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.course-body a,
.all-courses {
    color: #2454d6;
    font-weight: 600;
    text-decoration: none;
}

.course-body a:hover,
.all-courses:hover {
    text-decoration: underline;
}

.course-card h3 a { color: inherit; text-decoration: none; cursor: text; }

@media (max-width: 575px) {
    .course-image {
        height: 220px;
    }

    .course-title {
        font-size: 2rem;
    }

    .course-intro {
        font-size: 15px;
    }
}

/* ===== Why Hejex - HP ===== */
.section-label {
    color: #2454d6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.benefit {
    height: 100%;
    display: flex;
    gap: 14px;
    padding: 18px;
    background: #fff;
    border: 1px solid #e7eaf0;
    border-radius: 12px;
}

.benefit>i {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #edf2ff;
    color: #2454d6;
    font-size: 19px;
}

.benefit h3 {
    font-size: 16px;
    margin: 0 0 5px;
}

.benefit p {
    margin: 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.55;
}

.training-image {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    padding: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.training-image img {
    width: 100%;
    border-radius: 12px;
}

.location-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    background: #fff;
    border-radius: 10px;
    color: #475467;
    font-size: 14px;
}

.location-note i {
    color: #2454d6;
}

/* ===== Why Hejex Technology ===== */
.training-journey {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.training-step {
    flex: 1;
    text-align: center;
    max-width: 190px;
}

.step-number {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid var(--bs-primary);
    font-size: 22px;
    color: var(--bs-primary);
}

.training-step h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}

.training-step p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.journey-line {
    flex: 0 0 45px;
    height: 2px;
    margin-top: 87px;
    background: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .next-step-image {
        min-height: 0;
        height: auto;
    }
    .training-journey {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 25px;
    }

    .training-step {
        max-width: none;
        margin: auto;
    }

    .journey-line {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .training-journey {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .training-step {
        max-width: 340px;
    }
}

.btn-phone {
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    border-style:none;
}

/* ===== Training Options ===== */
.mode h3 {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.mode-training {
    margin: 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.55;
}

/* ===== Testimonials ===== */
.testimonials-section {
    background: var(--white);
    padding: 25px 0 50px;
    border-bottom: 1px solid var(--border);
}

.testimonial-card {
    background: var(--paper);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 22px 20px;
    height: 100%;
    transition: box-shadow .22s, transform .22s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.testi-video-thumb {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 18px;
    background: var(--hero-bg);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-video-thumb .play-btn {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, .92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--orange);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
    transition: transform .2s, box-shadow .2s;
    cursor: pointer;
    z-index: 1;
}

.testi-video-thumb:hover .play-btn {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(0, 0, 0, .3);
}

.testi-video-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0c1520, #1e3a5f);
    opacity: .85;
}

.testi-avatar-label {
    position: absolute;
    bottom: 10px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .4);
}

.testi-name-tag {
    line-height: 1.2;
}

.testi-name-tag strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    font-family: 'Sora', sans-serif;
}

.testi-name-tag span {
    font-size: 10.5px;
    color: rgba(255, 255, 255, .65);
}

.testi-stars {
    color: #fbbf24;
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.testi-quote {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 14px;
    font-style: italic;
}

.testi-placed {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-light);
    color: #166534;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-family: 'Sora', sans-serif;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
    margin: 0;
}

@media (max-width: 767.98px) {
    .testimonial-carousel {
        padding: 0 40px;
    }
}
@media (max-width: 767.98px) {
    .hjx-announce {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .testimonial-carousel {
        padding: 0 10px;
    }
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 24px;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
}

@media (max-width: 991.98px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 767.98px) {
    .carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

/* Carousel Testimonial Card Styling */
.testimonial-carousel .testimonial-card {
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.testi-name {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}

.testi-role {
    font-size: 12px;
    color: var(--ink-muted);
    margin-bottom: 8px;
}

.testi-salary {
    color: var(--green);
}

.testimonial-carousel .testi-quote {
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yt-thumb-wrap {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    background: #000;
    margin-bottom: 18px;
}

.yt-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s, opacity .3s;
}

.yt-thumb-wrap:hover img {
    transform: scale(1.04);
    opacity: .85;
}

.yt-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.yt-play-btn span {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, .93);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ff0000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .30);
    transition: transform .2s, box-shadow .2s;
}

.yt-thumb-wrap:hover .yt-play-btn span {
    transform: scale(1.14);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
}

/* Google Rating Card in Carousel */
.google-rating-card {
    background: var(--orange-light) !important;
    border-color: #fbd0b3 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.google-rating-card .rating-number {
    font-size: 52px;
    color: var(--orange);
    font-family: 'Sora', sans-serif;
    font-weight: 900;
    line-height: 1;
}

.google-rating-card .rating-stars {
    color: #fbbf24;
    font-size: 24px;
    margin: 8px 0 5px;
}

.google-rating-card .rating-title {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.google-rating-card .rating-subtitle {
    font-size: 13px;
    color: var(--ink-muted);
    margin-bottom: 20px;
}

.google-rating-card .btn-batch-cta {
    max-width: 220px;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--ink-soft);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--paper);
}

.carousel-btn:disabled:hover {
    background: var(--paper);
    border-color: var(--border);
    color: var(--ink-soft);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

@media (max-width: 575.98px) {
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .carousel-btn-prev {
        left: -5px;
    }

    .carousel-btn-next {
        right: -5px;
    }
}

/* Dots Navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: #cbd5e1;
}

.carousel-dot.active {
    background: var(--orange);
    transform: scale(1.2);
}

/* Touch/Swipe Support Visual Feedback */
.carousel-track.dragging {
    transition: none;
    cursor: grabbing;
}

.testimonial-carousel:hover .carousel-track:not(.dragging) {
    cursor: grab;
}

.btn-batch-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--orange);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background .2s, transform .15s;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-batch-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    color: #fff;
}

.btn-batch-outline {
    background: transparent;
    color: var(--orange);
    border: 1.5px solid var(--orange);
}

.btn-batch-outline:hover {
    background: var(--orange);
    color: #fff;
}

/* ===== GBP Link ===== */
.google-reviews-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: transform 0.2s ease;
}

.google-reviews-link:hover {
    transform: translateY(-2px);
}

.company-marquee {
    width: 100%;
    overflow: hidden;
}

.company-track {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: companyScroll 35s linear infinite;
}

.company-logo {
    width: 220px;
    height: 110px;
    padding: 15px 20px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-logo img {
    width: 100%;
    height: 80px;
    object-fit: contain;
}

@keyframes companyScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

@media (max-width: 767.98px) {

    .company-track {
        gap: 16px;
        animation-duration: 28s;
    }

    .company-logo {
        width: 190px;
        height: 105px;
        padding: 12px 15px;
    }

    .company-logo img {
        height: 78px;
    }
}
/******CTA - HP *******/

.next-step-banner {
    background: #08185c;
    border-radius: 16px;
    overflow: hidden;
}

.next-step-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}

.next-step-content {
    padding: 38px;
    color: #fff;
}

.next-step-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.next-step-content h2 {
    margin: 10px 0 15px;
    font-size: 2.2rem;
    line-height: 1.2;
}

.next-step-content h2 span {
    color: #ffc107;
}

.next-step-content p {
    line-height: 1.6;
    margin-bottom: 22px;
}

.next-step-points {
    display: grid;
    gap: 12px;
    margin-bottom: 25px;
}

.next-step-points div {
    display: flex;
    flex-direction: column;
}

.next-step-points strong {
    font-size: .95rem;
}

.next-step-points span {
    opacity: .85;
}

.next-step-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.next-step-primary,
.next-step-secondary {
    padding: 11px 18px;
    border-radius: 6px;
    text-decoration: none;
    border-style:none;
}

.next-step-primary {
    background: #ffc107;
    color: #111;
}

.next-step-secondary {
    color: #fff;
    border: 1px solid #fff;
}

@media (max-width: 575.98px) {
    .next-step-content {
        padding: 28px 22px;
    }

    .next-step-content h2 {
        font-size: 1.8rem;
    }
    .next-step-primary{
        width:100%;
        text-align:center;
    }
    .next-step-actions a {
        width: 100%;
        text-align: center;
    }
}