/* ============================================================
   EASYTOPASS — GLOBAL CSS
   Common styles shared across ALL pages
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

/* ── CSS VARIABLES ── */
:root {
    --brand: #1A3C8F;
    --brand-dark: #0F2660;
    --brand-light: #EEF4FF;
    --accent: #F97316;
    --accent-dark: #EA6C0A;
    --accent-light: #FFF4EC;
    --green: #16A34A;
    --red: #DC2626;
    --text: #1E293B;
    --text-mid: #475569;
    --muted: #94A3B8;
    --border: #E2E8F0;
    --bg-soft: #F8FAFF;
    --white: #ffffff;
    --shadow-sm: 0 2px 12px rgba(26, 60, 143, .08);
    --shadow: 0 4px 24px rgba(26, 60, 143, .12);
    --shadow-lg: 0 8px 40px rgba(26, 60, 143, .18);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-head: 'Sora', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --topbar-h: 40px;
    --navbar-h: 72px;
    --bottombar-h: 56px;
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--topbar-h) + var(--navbar-h) + 8px);
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: #fff;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    padding-bottom: var(--bottombar-h);
    /* space for sticky bottombar */
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .2s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    cursor: pointer;
}

/* ── TYPOGRAPHY SCALE ── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    color: var(--text);
    line-height: 1.18;
    font-weight: 800;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
    font-size: 1.15rem;
}

h5 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.text-muted {
    color: var(--muted) !important;
}

.text-brand {
    color: var(--brand) !important;
}

.text-accent {
    color: var(--accent) !important;
}

/* ── SECTION COMMONS ── */
section {
    padding: 80px 0;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2.5px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-title .highlight {
    color: var(--brand);
}

.section-sub {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.7;
}

/* ── TOPBAR ── */
.topbar {
    background: var(--brand-dark);
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    font-size: 12.5px;
    color: #CBD5E1;
    position: relative;
    z-index: 1001;
}

.topbar a {
    color: #94A3B8;
}

.topbar a:hover {
    color: #fff;
}

.topbar .tb-divider {
    color: #334155;
    margin: 0 10px;
}

.topbar .tb-icon {
    font-size: 13px;
    margin-right: 4px;
    color: var(--accent);
}

/* ── NAVBAR ── */
.navbar {
    background: #fff;
    height: var(--navbar-h);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 !important;
}

.navbar-brand img {
    height: 50px;
    max-width: 185px;
    object-fit: contain;
}

.nav-link {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: var(--text) !important;
    padding: 6px 13px !important;
    border-radius: 8px;
    transition: all .2s;
    letter-spacing: .01em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand) !important;
    background: var(--brand-light);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 10px;
    min-width: 230px;
    border-top: 3px solid var(--brand);
    margin-top: 6px !important;
}

.dropdown-item {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: 8px;
    color: var(--text);
    transition: all .2s;
}

.dropdown-item:hover {
    background: var(--brand-light);
    color: var(--brand);
}

.dropdown-item i {
    font-size: 15px;
    width: 20px;
}

/* Navbar Buttons */
.btn-login {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13.5px;
    color: var(--brand) !important;
    border: 1.5px solid var(--brand);
    border-radius: 9px;
    padding: 8px 20px !important;
    transition: all .25s;
    line-height: 1;
}

.btn-login:hover {
    background: var(--brand);
    color: #fff !important;
}

.btn-enroll-nav {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13.5px;
    color: #fff !important;
    background: var(--accent);
    border-radius: 9px;
    padding: 8px 20px !important;
    border: none;
    transition: all .25s;
    line-height: 1;
}

.btn-enroll-nav:hover {
    background: var(--accent-dark);
    color: #fff !important;
    transform: translateY(-1px);
}

/* ── STICKY BOTTOMBAR ── */
.bottombar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--bottombar-h);
    background: var(--brand-dark);
    z-index: 999;
    display: flex;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .2);
}

.bottombar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
    flex-wrap: nowrap;
}

.bottombar-left {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.bottombar-offer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: .02em;
}

.bottombar-offer-badge .bb-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    animation: bbpulse 1.6s infinite;
    flex-shrink: 0;
}

@keyframes bbpulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.bottombar-text {
    color: #CBD5E1;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bottombar-text strong {
    color: #fff;
}

.bottombar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.bb-btn-call {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 600;
    white-space: nowrap;
    transition: all .2s;
}

.bb-btn-call:hover {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.bb-btn-call i {
    font-size: 14px;
    color: var(--accent);
}

.bb-btn-enroll {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: all .2s;
}

.bb-btn-enroll:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-1px);
}

.bb-close {
    background: none;
    border: none;
    color: #64748B;
    font-size: 18px;
    padding: 4px;
    line-height: 1;
    transition: color .2s;
    flex-shrink: 0;
}

.bb-close:hover {
    color: #fff;
}

/* ── FOOTER ── */
footer {
    background: #08111F;
    color: #94A3B8;
    padding: 64px 0 0;
    font-family: var(--font-body);
}

.footer-logo img {
    height: 46px;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 13.5px;
    color: #64748B;
    line-height: 1.75;
    max-width: 270px;
    margin-top: 14px;
}

.footer-heading {
    color: #fff;
    font-family: var(--font-head);
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2.5px;
    background: var(--accent);
    border-radius: 2px;
}

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

.footer-links a {
    font-size: 13.5px;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all .2s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-links a i {
    font-size: 12px;
    color: var(--accent);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: 13.5px;
    color: #64748B;
    transition: color .2s;
}

.footer-contact-item a:hover {
    color: #fff;
}

.social-row {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    font-size: 16px;
    transition: all .25s;
}

.social-btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.footer-cert-badge {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-cert-badge span {
    font-size: 12.5px;
    color: #64748B;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 18px 0;
    margin-top: 52px;
}

.footer-bottom p {
    font-size: 12.5px;
    color: #334155;
    margin: 0;
}

.footer-bottom a {
    color: #475569;
}

.footer-bottom a:hover {
    color: #94A3B8;
}

.footer-dev-promo {
    text-align: right;
}

.footer-dev-promo p {
    margin: 0 0 8px;
}

.footer-dev-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: all 0.25s ease;
}

.footer-dev-whatsapp {
    color: #25d366 !important;
}

.footer-dev-whatsapp:hover {
    color: #1ebe5d !important;
    transform: translateY(-1px);
}

.footer-linkedin-badge {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .footer-dev-promo {
        text-align: left;
        width: 100%;
    }

    .footer-linkedin-badge {
        justify-content: flex-start;
    }
}

/* ── COMMON BUTTONS ── */
.btn-primary-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 28px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14.5px;
    transition: all .25s;
    line-height: 1;
}

.btn-primary-brand:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 28px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14.5px;
    transition: all .25s;
    line-height: 1;
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(249, 115, 22, .35);
}

.btn-outline-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--brand);
    border: 2px solid var(--brand);
    border-radius: 10px;
    padding: 11px 26px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14.5px;
    transition: all .25s;
    line-height: 1;
}

.btn-outline-brand:hover {
    background: var(--brand);
    color: #fff;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--brand);
    border: 1.5px solid var(--brand);
    border-radius: 9px;
    padding: 9px 22px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13.5px;
    transition: all .25s;
}

.btn-view-all:hover {
    background: var(--brand);
    color: #fff;
}

/* ── BREADCRUMB ── */
.page-breadcrumb {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.breadcrumb {
    margin: 0;
    font-size: 13px;
}

.breadcrumb-item a {
    color: var(--brand);
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--text-mid);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--muted);
}

/* ── RATING STARS ── */
.stars {
    color: #F59E0B;
    letter-spacing: 1px;
}

.rating-text {
    font-weight: 700;
    color: var(--text);
    font-size: 14px;
}

/* ── BADGE PILLS ── */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.pill-blue {
    background: #EEF4FF;
    color: var(--brand);
}

.pill-orange {
    background: #FFF4EC;
    color: var(--accent-dark);
}

.pill-green {
    background: #F0FDF4;
    color: #166534;
}

.pill-red {
    background: #FFF1F2;
    color: #9F1239;
}

.pill-yellow {
    background: #FEFCE8;
    color: #854D0E;
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.trust-bar-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .07em;
    white-space: nowrap;
}

.trust-logo-item {
    font-size: 13px;
    font-weight: 800;
    color: #94A3B8;
    letter-spacing: .04em;
    transition: color .25s;
    white-space: nowrap;
}

.trust-logo-item:hover {
    color: var(--brand);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, #2554C7 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-hero p {
    color: #CBD5E1;
    font-size: 1rem;
    max-width: 540px;
}

/* ── MARQUEE NOTIFICATION BAR ── */
.marquee-bar {
    background: linear-gradient(90deg, #0F2660 0%, #1A3C8F 100%);
    height: 38px;
    overflow: hidden;
    position: sticky;
    top: var(--navbar-h);
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.marquee-bar-inner {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 16px;
    gap: 12px;
}

.marquee-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--accent);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: .06em;
    flex-shrink: 0;
}

.marquee-track-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee-scroll 38s linear infinite;
    will-change: transform;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.marquee-item {
    font-size: 12.5px;
    color: #CBD5E1;
    font-weight: 500;
    padding: 0 10px;
    white-space: nowrap;
}

.marquee-item strong {
    color: #fff;
}

.marquee-sep {
    color: #334155;
    padding: 0 6px;
    flex-shrink: 0;
}

.marquee-close {
    background: none;
    border: none;
    color: #475569;
    font-size: 14px;
    padding: 4px 6px;
    cursor: pointer;
    flex-shrink: 0;
    transition: color .2s;
    line-height: 1;
}

.marquee-close:hover {
    color: #fff;
}

/* ── MEGA MENU NAVBAR (Simplilearn-style) ── */
.mega-dropdown {
    position: static !important;
}

.mega-menu {
    position: fixed !important;
    top: calc(var(--topbar-h) + var(--navbar-h)) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    border-radius: 0 0 16px 16px !important;
    border: none !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .15) !important;
    margin-top: 0 !important;
    border-top: 3px solid var(--brand) !important;
}

.mega-menu-inner {
    display: flex;
    min-height: 360px;
}

.mega-sidebar {
    width: 220px;
    flex-shrink: 0;
    background: var(--bg-soft);
    border-right: 1px solid var(--border);
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 0 16px;
}

.mega-sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-mid);
    cursor: pointer;
    transition: all .18s;
    border-left: 3px solid transparent;
}

.mega-sidebar-item i:first-child {
    font-size: 15px;
    color: var(--muted);
    flex-shrink: 0;
}

.mega-sidebar-item span {
    flex: 1;
}

.mega-sidebar-item .bi-chevron-right {
    font-size: 11px;
    color: var(--muted);
}

.mega-sidebar-item:hover,
.mega-sidebar-item.active {
    background: #fff;
    color: var(--brand);
    border-left-color: var(--brand);
}

.mega-sidebar-item:hover i:first-child,
.mega-sidebar-item.active i:first-child {
    color: var(--brand);
}

.mega-viewall {
    margin: auto 16px 12px;
    display: block;
    text-align: center;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--brand);
    background: var(--brand-light);
    padding: 9px 12px;
    border-radius: 9px;
    transition: all .2s;
}

.mega-viewall:hover {
    background: var(--brand);
    color: #fff;
}

.mega-content {
    flex: 1;
    padding: 24px 28px;
    background: #fff;
    border-radius: 0 0 16px 0;
    overflow-y: auto;
    max-height: 420px;
}

.mega-panel {
    display: none;
}

.mega-panel.active {
    display: block;
}

.mega-panel-title {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.mega-course-link {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    padding: 8px 12px;
    border-radius: 8px;
    transition: all .18s;
}

.mega-course-link i {
    font-size: 13px;
    color: var(--brand);
    flex-shrink: 0;
}

.mega-course-link:hover {
    background: var(--bg-soft);
    color: var(--brand);
}

.mega-badge-hot {
    font-size: 9.5px;
    font-weight: 800;
    background: #FEF3C7;
    color: #92400E;
    padding: 2px 7px;
    border-radius: 50px;
    margin-left: auto;
    white-space: nowrap;
}

.mega-panel-featured {
    background: linear-gradient(135deg, var(--brand-light), #EEF4FF);
    border: 1px solid #DBEAFE;
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 12px;
}

.mega-featured-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 4px;
}

.mega-featured-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.mega-featured-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

@media(max-width:991px) {
    #mainNavbar {
        position: sticky;
        top: 0;
        z-index: 1050;
    }

    #navMenu {
        background: #fff;
        padding: 12px;
        border-radius: 0 0 18px 18px;
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
        max-height: calc(100vh - 105px);
        overflow-y: auto;
        overflow-x: hidden;
    }

    .navbar-collapse {
        margin-top: 0;
        border: none;
        box-shadow: none;
    }

    .navbar-nav {
        width: 100%;
        align-items: stretch !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;
        padding: 10px 12px !important;
    }

    .mega-dropdown {
        width: 100%;
    }

    .mega-dropdown .dropdown-menu.mega-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin-top: 10px !important;
        padding: 0 !important;
        border: 1px solid rgba(26, 60, 143, 0.12) !important;
        border-top: 3px solid var(--brand) !important;
        border-radius: 16px !important;
        box-shadow: none !important;
        overflow: hidden;
        background: #fff;
    }

    .mega-menu-inner {
        display: block !important;
        width: 100% !important;
        min-height: auto !important;
    }

    /* Mobile: category list horizontal tabs */
    .mega-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 10px !important;
        background: var(--bg-soft);
        border-right: 0 !important;
        border-bottom: 1px solid rgba(26, 60, 143, 0.10) !important;
        border-radius: 0 !important;
        scrollbar-width: none;
    }

    .mega-sidebar::-webkit-scrollbar {
        display: none;
    }

    .mega-sidebar-item {
        width: auto;
        min-width: max-content;
        flex-shrink: 0;
        min-height: 38px;
        padding: 9px 12px;
        margin-bottom: 0;
        border-radius: 999px;
        border-left: 0;
        border: 1px solid var(--border);
        background: #fff;
        font-size: 12.5px;
        gap: 7px;
    }

    .mega-sidebar-item .bi-chevron-right {
        display: none;
    }

    .mega-sidebar-item:hover,
    .mega-sidebar-item.active {
        background: var(--brand);
        color: #fff;
        border-color: var(--brand);
    }

    .mega-sidebar-item:hover i:first-child,
    .mega-sidebar-item.active i:first-child {
        color: #fff;
    }

    .mega-viewall {
        min-width: max-content;
        margin: 0;
        padding: 9px 13px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        font-size: 12.5px;
        flex-shrink: 0;
    }

    .mega-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 14px 12px !important;
        border-radius: 0 !important;
        max-height: none !important;
        overflow: visible !important;
        background: #fff;
    }

    .mega-panel {
        display: none !important;
    }

    .mega-panel.active {
        display: block !important;
    }

    .mega-panel-title {
        font-size: 15px;
        margin-bottom: 10px;
        padding-bottom: 9px;
        border-bottom: 1px solid rgba(26, 60, 143, 0.12);
    }

    .mega-panel .row {
        margin-left: 0;
        margin-right: 0;
    }

    .mega-panel .col-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-left: 0;
        padding-right: 0;
    }

    .mega-course-link {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
        margin-bottom: 6px;
        border-radius: 10px;
        background: #fff;
        border: 1px solid #EEF2F7;
        font-size: 12.8px;
    }

    .mega-badge-hot {
        margin-left: auto;
        flex-shrink: 0;
    }

    .mega-panel-featured {
        margin-top: 10px !important;
        border-radius: 12px;
        padding: 12px 14px;
    }

    .mega-featured-title {
        font-size: 13.5px;
    }

    .btn-login,
    .btn-enroll-nav {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: inline-flex;
    }
}

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    /* above bottombar */
    right: 20px;
    z-index: 997;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.whatsapp-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
    transition: all .3s ease;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, .55);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

/* Ping animation ring */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2.5px solid #25D366;
    opacity: 0;
    animation: wa-ping 2.2s ease-out infinite;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0;
    animation: wa-ping 2.2s ease-out .4s infinite;
}

@keyframes wa-ping {
    0% {
        transform: scale(.85);
        opacity: .6;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Tooltip bubble */
.whatsapp-tooltip {
    background: #fff;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    white-space: nowrap;
    border: 1px solid var(--border);
    position: relative;
    opacity: 0;
    transform: translateX(10px);
    transition: all .3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #fff;
    border-right: none;
    filter: drop-shadow(1px 0 1px rgba(0, 0, 0, .08));
}

/* Show tooltip on hover */
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* Online dot */
.whatsapp-online {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 13px;
    height: 13px;
    background: #4ADE80;
    border-radius: 50%;
    border: 2px solid #fff;
}

/* When bottombar is closed, move WA button down */
body.bb-hidden .whatsapp-float {
    bottom: 20px;
}

body.bb-hidden #back-to-top {
    bottom: 20px;
}

#back-to-top {
    position: fixed;
    bottom: 68px;
    right: 100px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #1A3C8F;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 24px rgba(26, 60, 143, .18);
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
    z-index: 996
}

#back-to-top:hover {
    background: #0F2660;
    transform: translateY(-2px)
}

@media (max-width: 480px) {
    .whatsapp-btn {
        width: 48px;
        height: 48px;
    }

    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ── ANIMATE ON SCROLL ── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 14px;
        border-radius: 0 0 18px 18px;
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
        margin-top: 0;
        border: none;
        max-height: calc(100vh - 85px);
        overflow-y: auto;
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    section {
        padding: 56px 0;
    }

    .topbar {
        font-size: 11.5px;
    }

    /* .topbar .tb-topbar-extra {
        display: none;
    } */

    .bottombar-text {
        display: none;
    }

    .bottombar-left {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    /* .bb-btn-call {
        display: none;
    } */

    /* .bottombar-offer-badge span {
        display: none;
    } */
}

:root {
    --brand: #1A3C8F;
    --brand-dark: #0F2660;
    --brand-light: #EEF4FF;
    --accent: #F97316;
    --accent-dark: #EA6C0A;
    --green: #16A34A;
    --text: #1E293B;
    --text-mid: #475569;
    --muted: #94A3B8;
    --border: #E2E8F0;
    --bg-soft: #F8FAFF;
    --shadow: 0 4px 24px rgba(26, 60, 143, .12);
    --shadow-lg: 0 8px 40px rgba(26, 60, 143, .18);
    --font-head: 'Sora', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: #fff;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased
}

a {
    text-decoration: none;
    color: inherit
}

/* ═══════════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════════ */
section {
    padding: 80px 0
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px
}

.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2.5px;
    background: var(--accent);
    border-radius: 2px
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 14px
}

.section-sub {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.7
}

/* ═══════════════════════════════════════════════════
   PROGRAMS SECTION — StarAgile Exact Layout
═══════════════════════════════════════════════════ */
.programs-section {
    padding: 80px 0;
    background: #F9FAFB
}

/* Left sidebar */
.prog-sidebar {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    position: sticky;
    top: 80px
}

.prog-sidebar-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-mid);
    cursor: pointer;
    transition: all .2s;
    border-left: 3px solid transparent;
    gap: 10px
}

.prog-sidebar-item:hover {
    color: var(--brand);
    background: var(--brand-light)
}

.prog-sidebar-item.active {
    color: #fff;
    background: #7C3AED;
    border-left-color: #7C3AED;
    font-weight: 700
}

.prog-sidebar-item.active .prog-sidebar-arrow {
    color: #fff;
    opacity: .8
}

.prog-sidebar-item .prog-sidebar-arrow {
    font-size: 13px;
    color: var(--muted);
    transition: all .2s;
    flex-shrink: 0
}

.prog-sidebar-item:hover .prog-sidebar-arrow {
    color: var(--brand)
}

.prog-sidebar-divider {
    height: 1px;
    background: var(--border);
    margin: 0
}

/* Course Cards — StarAgile exact style */
.sa-course-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all .28s;
    height: 100%;
    display: flex;
    flex-direction: column
}

.sa-course-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: transparent
}

/* Green gradient thumbnail */
.sa-card-thumb {
    position: relative;
    background: linear-gradient(135deg, #0a6b3c 0%, #0d8f50 40%, #1db866 100%);
    padding: 24px 20px 20px;
    min-height: 155px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

.sa-card-thumb::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06)
}

.sa-card-thumb::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04)
}

.sa-card-logo {
    width: 64px;
    height: 64px;
    position: relative;
    z-index: 2
}

.sa-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.sa-card-logo-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
    z-index: 2
}

.sa-card-thumb-title {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 2;
    margin-top: auto;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .2)
}

/* Card body */
.sa-card-body {
    padding: 16px 18px 0;
    flex: 1;
    display: flex;
    flex-direction: column
}

.sa-card-cat-tag {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-mid);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
    width: fit-content
}

.sa-card-title {
    font-family: var(--font-head);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 12px
}

.sa-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap
}

.sa-card-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid)
}

.sa-card-meta-item i {
    font-size: 13px
}

.sa-meta-enrolled i {
    color: #7C3AED
}

.sa-meta-duration i {
    color: var(--green)
}

/* Price row */
.sa-card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    margin-top: auto
}

.sa-card-price-wrap {}

.sa-card-from {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500
}

.sa-card-price-was {
    font-size: 12px;
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 500
}

.sa-card-price-now {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text)
}

.sa-card-price-now span {
    font-size: 1rem
}

.sa-card-explore-btn {
    background: #7C3AED;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all .22s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px
}

.sa-card-explore-btn:hover {
    background: #6D28D9;
    transform: scale(1.04)
}

/* Next schedule bar */
.sa-card-schedule {
    background: #F0FFF4;
    border-top: 1px solid #BBF7D0;
    padding: 9px 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--green);
    font-weight: 600;
    margin: 0
}

.sa-card-schedule i {
    font-size: 13px
}

.sa-card-schedule strong {
    color: var(--text)
}

/* Tab filter (mobile top bar) */
.prog-tab-nav {
    display: none
}

@media(max-width:991px) {
    .prog-tab-nav {
        display: flex;
        gap: 6px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        margin-bottom: 24px;
        scrollbar-width: none
    }

    .prog-tab-nav::-webkit-scrollbar {
        display: none
    }

    .prog-tab-btn {
        font-size: 12.5px;
        font-weight: 700;
        color: var(--text-mid);
        background: #fff;
        border: 1.5px solid var(--border);
        padding: 7px 16px;
        border-radius: 50px;
        cursor: pointer;
        transition: all .2s;
        white-space: nowrap;
        flex-shrink: 0
    }

    .prog-tab-btn.active {
        color: #fff;
        background: #7C3AED;
        border-color: #7C3AED
    }

    .prog-sidebar {
        display: none
    }
}

/* Panel show/hide */
.prog-panel {
    display: none
}

.prog-panel.active {
    display: block
}

/* View all btn */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--brand);
    border: 1.5px solid var(--brand);
    border-radius: 9px;
    padding: 9px 22px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13.5px;
    transition: all .25s
}

.btn-view-all:hover {
    background: var(--brand);
    color: #fff
}

/* ═══════════════════════════════════════════════════
   DROP A QUERY — StarAgile bottom section exact
═══════════════════════════════════════════════════ */
.drop-query-section {
    background: #fff;
    padding: 80px 0;
    border-top: 1px solid var(--border)
}

.dq-wrap {
    background: linear-gradient(135deg, #0a1a4a 0%, #1A3C8F 100%);
    border-radius: 24px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden
}

.dq-wrap::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04)
}

.dq-wrap::after {
    content: '';
    position: absolute;
    left: -60px;
    bottom: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(249, 115, 22, .07)
}

/* Left text */
.dq-left {
    position: relative;
    z-index: 2
}

.dq-left-eyebrow {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px
}

.dq-left-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px
}

.dq-left-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 16px
}

.dq-left-title em {
    font-style: normal;
    color: #F97316
}

.dq-left-sub {
    color: #94A3B8;
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 420px
}

.dq-feature-list {
    margin-bottom: 36px
}

.dq-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px
}

.dq-fi-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F97316;
    font-size: 16px;
    flex-shrink: 0
}

.dq-fi-text {
    font-size: 13.5px;
    color: #CBD5E1;
    font-weight: 500
}

.dq-contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.dq-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #94A3B8;
    transition: color .2s
}

.dq-contact-item:hover {
    color: #fff
}

.dq-contact-item i {
    color: #F97316;
    font-size: 15px;
    flex-shrink: 0
}

.dq-contact-item a {
    color: #94A3B8;
    transition: color .2s
}

.dq-contact-item a:hover {
    color: #fff
}

/* Right form */
.dq-right {
    position: relative;
    z-index: 2
}

.dq-form-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 32px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .3)
}

.dq-form-header {
    margin-bottom: 24px
}

.dq-form-title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 5px
}

.dq-form-sub {
    font-size: 13px;
    color: var(--text-mid)
}

.dq-label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text-mid);
    margin-bottom: 5px
}

.dq-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text);
    outline: none;
    transition: border-color .2s;
    background: #fff;
    line-height: 1.4
}

.dq-input:focus {
    border-color: #7C3AED;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, .08)
}

.dq-input::placeholder {
    color: var(--muted)
}

.dq-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%2394A3B8' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    cursor: pointer
}

.dq-submit-btn {
    width: 100%;
    background: #7C3AED;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: all .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.dq-submit-btn:hover {
    background: #6D28D9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, .4)
}

.dq-privacy {
    font-size: 11.5px;
    color: var(--muted);
    text-align: center;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px
}

.dq-privacy i {
    color: var(--green)
}

/* phone flag input */
.dq-phone-wrap {
    display: flex;
    gap: 8px
}

.dq-phone-flag {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text);
    background: #fff;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 5px
}

@media(max-width:991px) {
    .dq-wrap {
        padding: 36px 24px
    }

    .dq-form-card {
        padding: 28px 20px
    }
}

@media(max-width:576px) {
    .nl-box {
        padding: 30px 20px
    }

    .dq-wrap {
        border-radius: 16px;
        padding: 28px 18px
    }
}


/* ── NEWSLETTER ── */
.nl-box {
    background: linear-gradient(135deg, #EEF4FF, #F0F7FF);
    border: 1px solid #DBEAFE;
    border-radius: 20px;
    padding: 50px 40px
}

.nl-input-wrap {
    background: #fff;
    border: 1.5px solid #E2E8F0;
    border-radius: 11px;
    display: flex;
    overflow: hidden;
    max-width: 440px
}

.nl-input {
    border: none;
    outline: none;
    padding: 13px 18px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    flex: 1;
    color: #1E293B
}

.nl-btn {
    background: #1A3C8F;
    color: #fff;
    border: none;
    padding: 13px 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 13.5px;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap
}

.nl-btn:hover {
    background: #0F2660
}
