:root {
  --jp-navy: #06245f;
  --jp-navy-deep: #031a48;
  --jp-navy-soft: #19376d;
  --jp-lime: #8bd12f;
  --jp-lime-dark: #6eaf1d;
  --jp-ink: #101827;
  --jp-muted: #5f6978;
  --jp-light: #eef2f5;
  --jp-white: #ffffff;
  --jp-border: #dde5ec;
  --jp-shadow: 0 18px 45px rgba(4, 27, 68, .12);
  --jp-radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: #f4f7fa;
  color: var(--jp-ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.jp-menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; }
.jp-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

/* Header */
.jp-site-header {
  position: relative;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 3px 18px rgba(6, 36, 95, .08);
}
.jp-site-header.is-sticky .jp-header-main {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255,255,255,.98);
  box-shadow: 0 8px 24px rgba(4,27,68,.13);
  backdrop-filter: blur(10px);
}
.jp-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.jp-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--jp-navy);
  text-decoration: none !important;
}
.jp-brand-logo-wrap {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}
.jp-brand-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.jp-brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.jp-brand-copy strong { max-width: 270px; font-size: 18px; font-weight: 800; }
.jp-brand-copy small { margin-top: 4px; color: #758092; font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.jp-main-nav { display: flex; align-items: center; justify-content: flex-end; gap: 2px; }
.jp-main-nav > a,
.jp-nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 11px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #20283a;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
  white-space: nowrap;
  transition: .22s ease;
}
.jp-main-nav > a:hover,
.jp-main-nav > a:focus,
.jp-nav-dropdown-toggle:hover,
.jp-nav-dropdown-toggle:focus { color: var(--jp-lime-dark); background: #f3f8ec; }
.jp-nav-dropdown { position: relative; }
.jp-nav-dropdown-toggle i { margin-left: 6px; }
.jp-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 245px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  border: 1px solid var(--jp-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--jp-shadow);
  transition: .2s ease;
}
.jp-nav-dropdown:hover .jp-nav-dropdown-menu,
.jp-nav-dropdown.is-open .jp-nav-dropdown-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.jp-nav-dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 11px; border-radius: 8px; color: #30394a; font-size: 12px; text-decoration: none !important; }
.jp-nav-dropdown-menu a i { width: 18px; color: var(--jp-lime-dark); text-align: center; }
.jp-nav-dropdown-menu a:hover { background: #f2f7ec; color: var(--jp-navy); }
.jp-main-nav .jp-nav-cta { margin-left: 7px; padding-inline: 17px; background: var(--jp-lime); color: #112208; box-shadow: 0 8px 20px rgba(139,209,47,.25); }
.jp-main-nav .jp-nav-cta:hover { background: var(--jp-lime-dark); color: #fff; }
.jp-menu-toggle { display: none; width: 44px; height: 42px; padding: 9px; border: 0; border-radius: 10px; background: var(--jp-navy); cursor: pointer; }
.jp-menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 3px; background: #fff; transition: .2s ease; }
.jp-mobile-contact { display: none; }

/* Shared section elements */
.jp-section { padding: 70px 0; }
.jp-section-heading { max-width: 850px; margin: 0 auto 34px; text-align: center; }
.jp-section-heading-left { margin-left: 0; text-align: left; }
.jp-section-heading h2,
.jp-strip-heading,
.jp-demo-title,
.jp-career-heading {
  margin: 0;
  color: #10151f;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.jp-section-heading h2 span,
.jp-strip-heading span,
.jp-demo-title span,
.jp-career-heading span { color: var(--jp-lime); }
.jp-section-heading p { margin: 15px 0 0; color: var(--jp-muted); font-size: 14px; }
.jp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.jp-btn:hover { transform: translateY(-2px); }
.jp-btn-lime { background: var(--jp-lime); color: #112307; box-shadow: 0 12px 24px rgba(139,209,47,.24); }
.jp-btn-lime:hover { background: var(--jp-lime-dark); color: #fff; }
.jp-btn-navy { background: var(--jp-navy); color: #fff; box-shadow: 0 12px 24px rgba(6,36,95,.2); }
.jp-btn-navy:hover { background: var(--jp-navy-deep); color: #fff; }
.jp-btn-outline { border-color: rgba(255,255,255,.7); color: #fff; background: rgba(255,255,255,.06); }
.jp-btn-outline:hover { background: #fff; color: var(--jp-navy); }
.jp-btn-small { min-height: 39px; padding: 9px 18px; font-size: 11px; text-transform: uppercase; }
.jp-center-action { margin-top: 30px; text-align: center; }

/* Hero */
.jp-hero { position: relative; min-height: 510px; overflow: hidden; background: var(--jp-navy-deep); color: #fff; }
.jp-hero-slides, .jp-hero-slide { position: absolute; inset: 0; }
.jp-hero-slide { opacity: 0; background-position: center; background-size: cover; transition: opacity .75s ease; }
.jp-hero-slide.is-active { opacity: 1; }
.jp-hero-fallback {
  background:
    radial-gradient(circle at 78% 36%, rgba(139,209,47,.2), transparent 25%),
    linear-gradient(110deg, rgba(2,20,57,.98), rgba(7,51,113,.72)),
    url('images/bg3.jpg') center/cover;
}
.jp-hero-content { position: relative; z-index: 3; min-height: 510px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 80px; }
.jp-eyebrow { display: inline-flex; padding: 7px 13px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(255,255,255,.08); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.jp-hero h1 { margin: 15px 0 10px; color: #fff; font-family: "Playfair Display", Georgia, serif; font-size: clamp(44px, 7vw, 76px); font-weight: 600; line-height: 1.05; }
.jp-hero p { max-width: 650px; margin: 0; color: rgba(255,255,255,.84); font-size: 15px; }
.jp-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 27px; }
.jp-hero-arrow { position: absolute; z-index: 5; top: 50%; width: 44px; height: 54px; transform: translateY(-50%); border: 0; border-radius: 9px; background: rgba(2,17,50,.34); color: #fff; font-size: 28px; cursor: pointer; }
.jp-hero-arrow:hover { background: rgba(2,17,50,.7); }
.jp-hero-prev { left: 16px; }
.jp-hero-next { right: 16px; }
.jp-hero-dots { position: absolute; z-index: 5; left: 50%; bottom: 16px; display: flex; gap: 7px; transform: translateX(-50%); }
.jp-hero-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.55); cursor: pointer; }
.jp-hero-dots button.is-active { background: var(--jp-lime); box-shadow: 0 0 0 5px rgba(139,209,47,.16); }

/* About and why */
.jp-about-section { background: var(--jp-light); }
.jp-about-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 65px; }
.jp-about-copy p { color: #535e6d; font-size: 14px; }
.jp-about-media { position: relative; min-height: 320px; }
.jp-about-media::before { content: ""; position: absolute; inset: 22px -18px -18px 22px; border: 2px solid var(--jp-lime); border-radius: var(--jp-radius); }
.jp-about-media img, .jp-about-placeholder { position: relative; z-index: 1; width: 100%; height: 320px; border-radius: var(--jp-radius); object-fit: cover; box-shadow: var(--jp-shadow); }
.jp-about-placeholder { display: grid; place-items: center; align-content: center; gap: 12px; background: linear-gradient(135deg, #0a2d6d, #183f82); color: #fff; }
.jp-about-placeholder i { font-size: 70px; color: var(--jp-lime); }
.jp-about-placeholder span { font-weight: 700; }
.jp-why-strip, .jp-counter-strip { padding: 27px 0 31px; background: var(--jp-navy); color: #fff; }
.jp-strip-heading { margin-bottom: 21px; color: #fff; font-size: 18px; text-align: center; }
.jp-why-grid, .jp-counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.jp-why-item, .jp-counter-item { display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 0; text-align: center; }
.jp-why-item span, .jp-counter-item span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--jp-lime); color: #fff; font-size: 22px; box-shadow: 0 9px 20px rgba(139,209,47,.22); }
.jp-why-item strong { margin-top: 9px; color: #fff; font-size: 12px; font-weight: 500; }

/* Courses */
.jp-courses-section { background: var(--jp-light); }
.jp-course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 940px; margin: 0 auto; }
.jp-course-card { min-height: 285px; padding: 28px 30px; border: 1px solid var(--jp-border); border-radius: 9px; background: #fff; box-shadow: 0 10px 26px rgba(4,27,68,.09); transition: .25s ease; }
.jp-course-card:hover { transform: translateY(-7px); box-shadow: var(--jp-shadow); }
.jp-course-card h3 { margin: 8px 0 16px; color: #111827; font-size: 18px; font-weight: 700; line-height: 1.35; text-align: center; }
.jp-course-icon { color: var(--jp-lime-dark); font-size: 28px; text-align: center; }
.jp-course-card ul { margin: 0; padding: 0; list-style: none; }
.jp-course-card li { position: relative; padding: 2px 0 2px 20px; color: #526071; font-size: 12px; }
.jp-course-card li::before { content: "✓"; position: absolute; left: 0; color: var(--jp-lime-dark); font-weight: 800; }
.jp-course-dark { border-color: var(--jp-navy); background: var(--jp-navy); }
.jp-course-dark h3, .jp-course-dark li { color: #fff; }
.jp-course-dark .jp-course-icon, .jp-course-dark li::before { color: var(--jp-lime); }

/* Demo */
.jp-demo-section { padding: 32px 0 22px; background: var(--jp-navy); color: #fff; }
.jp-demo-title { margin-bottom: 22px; color: #fff; font-size: 27px; text-align: center; }
.jp-demo-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 42px; }
.jp-demo-copy p { margin: 0 0 10px; color: rgba(255,255,255,.82); font-size: 13px; }
.jp-demo-visual { display: flex; align-items: center; gap: 18px; min-height: 135px; padding: 22px 26px; border: 5px solid #fff; border-radius: 9px; background: #fff; color: var(--jp-navy); box-shadow: 0 12px 28px rgba(0,0,0,.2); }
.jp-demo-phone { width: 70px; height: 90px; flex: 0 0 70px; display: grid; place-items: center; border-radius: 12px; background: #dbeafd; color: #2872c9; font-size: 55px; transform: rotate(-8deg); }
.jp-demo-visual strong { display: block; color: #ed641e; font-size: 18px; text-transform: uppercase; }
.jp-demo-visual span { color: #6c7480; font-size: 12px; }
.jp-demo-action { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 22px; text-transform: uppercase; }
.jp-demo-action strong { font-size: 19px; }

/* Vision, counter, career */
.jp-vision-section { background: var(--jp-light); }
.jp-vision-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 70px; }
.jp-vision-card { text-align: center; }
.jp-vision-card h3 { margin: 0 0 8px; font-size: 22px; font-weight: 700; }
.jp-vision-card h3 span { color: var(--jp-lime-dark); }
.jp-vision-icon { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 15px; border-radius: 9px; background: var(--jp-lime); color: #fff; font-size: 34px; }
.jp-vision-card p { margin: 0; color: #596575; font-size: 13px; text-align: justify; }
.jp-counter-item strong { margin-top: 5px; color: #fff; font-size: 27px; line-height: 1.1; }
.jp-counter-item small { color: rgba(255,255,255,.82); font-size: 10px; }
.jp-career-section { background: var(--jp-navy); color: #fff; }
.jp-career-heading { padding: 15px 18px; background: #fff; color: #151b24; font-size: 22px; text-align: center; text-transform: none; }
.jp-career-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 45px; padding-block: 45px; }
.jp-career-grid article { position: relative; padding-top: 8px; }
.jp-career-grid article::before { content: ""; display: block; width: 38px; height: 3px; margin-bottom: 13px; background: var(--jp-lime); }
.jp-career-grid i { position: absolute; top: 8px; right: 0; color: rgba(139,209,47,.7); font-size: 32px; }
.jp-career-grid h3 { margin: 0 0 8px; color: #fff; font-size: 17px; }
.jp-career-grid p { margin: 0; color: rgba(255,255,255,.75); font-size: 12px; }

/* Gallery */
.jp-gallery-section { background: var(--jp-light); }
.jp-gallery-grid { display: grid; grid-template-columns: .6fr 1.35fr 1.5fr .9fr; grid-auto-rows: 210px; gap: 10px; }
.jp-gallery-item, .jp-gallery-placeholder { position: relative; overflow: hidden; border-radius: 8px; background: #dbe3eb; box-shadow: 0 8px 24px rgba(4,27,68,.1); }
.jp-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.jp-gallery-item:hover img { transform: scale(1.06); }
.jp-gallery-item:nth-child(n+5) { display: none; }
.jp-gallery-placeholder { display: grid; place-items: center; align-content: center; gap: 8px; background: linear-gradient(135deg, #dae4ed, #f8fafc); color: var(--jp-navy); }
.jp-gallery-placeholder i { font-size: 38px; color: var(--jp-lime-dark); }
.jp-gallery-placeholder span { font-size: 12px; font-weight: 700; }

/* Approval */
.jp-approval-section { padding: 58px 0; background: var(--jp-navy-soft); color: #fff; }
.jp-section-heading-on-dark h2 { color: #fff; }
.jp-approval-grid { display: grid; grid-template-columns: .9fr 1.45fr; align-items: center; gap: 55px; }
.jp-approval-logos { display: flex; gap: 12px; overflow-x: auto; scrollbar-width: thin; padding: 5px; }
.jp-approval-logo { min-width: 185px; height: 150px; display: grid; place-items: center; overflow: hidden; padding: 14px; border-radius: 9px; background: #fff; }
.jp-approval-logo img { max-width: 100%; max-height: 115px; object-fit: contain; }
.jp-approval-logo-fallback { align-content: center; gap: 4px; color: var(--jp-navy); font-size: 11px; font-weight: 700; }
.jp-approval-logo-fallback img { height: 90px; }
.jp-approval-copy p { margin: 0 0 12px; color: rgba(255,255,255,.84); font-size: 13px; }

/* Testimonials */
.jp-testimonials-section { position: relative; min-height: 450px; background: var(--jp-light); }
.jp-review-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 1fr); gap: 16px; overflow-x: auto; padding: 8px 5px 20px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.jp-review-track::-webkit-scrollbar { display: none; }
.jp-review-card { min-height: 230px; padding: 22px; border: 1px solid var(--jp-border); border-radius: 11px; background: #fff; box-shadow: 0 10px 28px rgba(4,27,68,.08); scroll-snap-align: start; }
.jp-review-head { display: flex; align-items: center; gap: 11px; }
.jp-review-avatar { width: 43px; height: 43px; flex: 0 0 43px; display: grid; place-items: center; border-radius: 50%; background: var(--jp-navy); color: #fff; font-weight: 800; }
.jp-review-head strong, .jp-review-head small { display: block; }
.jp-review-head strong { color: #202a39; font-size: 13px; }
.jp-review-head small { color: #7c8795; font-size: 10px; }
.jp-review-stars { margin: 14px 0 9px; color: #f6b600; font-size: 13px; }
.jp-review-card p { margin: 0; color: #5b6675; font-size: 12px; line-height: 1.7; }
.jp-review-controls { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.jp-review-controls button { width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--jp-navy); color: #fff; cursor: pointer; }
.jp-review-controls button:hover { background: var(--jp-lime-dark); }

/* Footer */
.jp-site-footer { background: var(--jp-navy-deep); color: #fff; }
.jp-footer-grid { display: grid; grid-template-columns: 1.1fr .7fr 1.2fr; gap: 70px; padding-block: 58px 45px; }
.jp-footer-brand { display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none !important; }
.jp-footer-brand img { width: 76px; height: 76px; object-fit: contain; padding: 5px; border-radius: 12px; background: #fff; }
.jp-footer-brand strong { font-size: 17px; line-height: 1.3; }
.jp-footer-about p { margin: 16px 0 0; color: rgba(255,255,255,.72); font-size: 12px; }
.jp-footer-links h3, .jp-footer-contact h3 { margin: 0 0 18px; color: #fff; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.jp-footer-links a { display: block; padding: 3px 0; color: rgba(255,255,255,.77); font-size: 12px; text-decoration: none !important; }
.jp-footer-links a:hover { color: var(--jp-lime); transform: translateX(3px); }
.jp-footer-contact p { display: flex; gap: 11px; margin: 0 0 9px; color: rgba(255,255,255,.78); font-size: 12px; }
.jp-footer-contact p i { width: 17px; margin-top: 5px; color: var(--jp-lime); text-align: center; }
.jp-footer-contact a { color: inherit; text-decoration: none !important; }
.jp-social-links { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 15px; }
.jp-social-links a { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 5px; background: rgba(255,255,255,.1); color: #fff; }
.jp-social-links a:hover { background: var(--jp-lime); color: var(--jp-navy-deep); }
.jp-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.jp-footer-bottom .jp-shell { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 15px; color: rgba(255,255,255,.62); font-size: 11px; }
.jp-whatsapp-float, .jp-scroll-top { position: fixed; z-index: 1002; right: 19px; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: #fff !important; text-decoration: none !important; box-shadow: 0 10px 25px rgba(0,0,0,.2); }
.jp-whatsapp-float { bottom: 77px; background: #25d366; font-size: 25px; }
.jp-scroll-top { bottom: 19px; visibility: hidden; opacity: 0; background: var(--jp-navy); font-size: 23px; transition: .2s ease; }
.jp-scroll-top.is-visible { visibility: visible; opacity: 1; }

/* Inner pages */
body:not(.jp-home-page) .main-content { min-height: 55vh; background: #f4f7fa; }
body:not(.jp-home-page) .main-content > section.position-inherit,
body:not(.jp-home-page) .main-content > section:not(.jp-approval-section) { padding-block: 48px; }
body:not(.jp-home-page) .main-content .container { width: min(1140px, calc(100% - 30px)); }
body:not(.jp-home-page) .event-details,
body:not(.jp-home-page) .login-page,
body:not(.jp-home-page) .main-content form,
body:not(.jp-home-page) .main-content .panel,
body:not(.jp-home-page) .main-content .well {
  border-radius: 14px;
}
body:not(.jp-home-page) .main-content .form-control,
body:not(.jp-home-page) .main-content input[type="text"],
body:not(.jp-home-page) .main-content input[type="email"],
body:not(.jp-home-page) .main-content input[type="number"],
body:not(.jp-home-page) .main-content input[type="password"],
body:not(.jp-home-page) .main-content select,
body:not(.jp-home-page) .main-content textarea {
  min-height: 44px;
  border: 1px solid #d9e2eb;
  border-radius: 8px;
  box-shadow: none;
}
body:not(.jp-home-page) .main-content textarea { min-height: 110px; }
body:not(.jp-home-page) .main-content .btn,
body:not(.jp-home-page) .main-content button[type="submit"],
body:not(.jp-home-page) .main-content input[type="submit"] { border-radius: 8px; }
body:not(.jp-home-page) .main-content table { max-width: 100%; }
body:not(.jp-home-page) .main-content .collapsible { border-radius: 8px; background: var(--jp-navy) !important; }
body:not(.jp-home-page) .main-content .collapsible:hover,
body:not(.jp-home-page) .main-content .collapsible.active_new { background: var(--jp-lime-dark) !important; }

@media (max-width: 1199px) {
  .jp-brand-copy { display: none; }
  .jp-main-nav > a, .jp-nav-dropdown-toggle { padding-inline: 8px; font-size: 11px; }
}

@media (max-width: 991px) {
  .jp-header-inner { min-height: 72px; }
  .jp-brand-logo-wrap { width: 54px; height: 54px; flex-basis: 54px; }
  .jp-menu-toggle { display: block; }
  .jp-main-nav {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    width: min(340px, 88vw);
    height: 100vh;
    display: block;
    overflow-y: auto;
    padding: 85px 22px 30px;
    background: #fff;
    box-shadow: -18px 0 45px rgba(4,27,68,.2);
    transform: translateX(105%);
    transition: transform .28s ease;
  }
  .jp-main-nav.is-open { transform: translateX(0); }
  .jp-main-nav > a, .jp-nav-dropdown-toggle { width: 100%; min-height: 46px; justify-content: space-between; padding: 11px 8px; border-bottom: 1px solid #edf1f5; border-radius: 0; font-size: 13px; }
  .jp-main-nav .jp-nav-cta { width: 100%; justify-content: center; margin: 18px 0 0; border-radius: 9px; }
  .jp-nav-dropdown-menu { position: static; width: auto; display: none; visibility: visible; opacity: 1; transform: none; padding: 5px 0 8px 14px; border: 0; box-shadow: none; }
  .jp-nav-dropdown.is-open .jp-nav-dropdown-menu { display: block; }
  .jp-mobile-contact { display: grid; gap: 7px; margin-top: 22px; }
  .jp-mobile-contact a { color: #667183; font-size: 12px; text-decoration: none; }
  .jp-hero, .jp-hero-content { min-height: 450px; }
  .jp-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .jp-course-grid { grid-template-columns: repeat(2, 1fr); }
  .jp-demo-grid { grid-template-columns: 1fr; }
  .jp-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .jp-approval-grid { grid-template-columns: 1fr; gap: 30px; }
  .jp-footer-grid { grid-template-columns: 1.2fr .8fr; gap: 45px; }
  .jp-footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  .jp-shell { width: min(100% - 26px, 1160px); }
  .jp-section { padding: 52px 0; }
  .jp-section-heading { margin-bottom: 27px; }
  .jp-section-heading h2, .jp-demo-title { font-size: 25px; }
  .jp-hero, .jp-hero-content { min-height: 410px; }
  .jp-hero-content { align-items: center; padding-inline: 34px; text-align: center; }
  .jp-hero h1 { font-size: 48px; }
  .jp-hero p { font-size: 13px; }
  .jp-hero-arrow { width: 34px; height: 46px; font-size: 23px; }
  .jp-hero-prev { left: 5px; }
  .jp-hero-next { right: 5px; }
  .jp-about-media, .jp-about-media img, .jp-about-placeholder { min-height: 250px; height: 250px; }
  .jp-why-grid, .jp-counter-grid { grid-template-columns: repeat(2, 1fr); row-gap: 25px; }
  .jp-course-grid { grid-template-columns: 1fr; }
  .jp-course-card { min-height: 0; }
  .jp-demo-action { flex-direction: column; gap: 10px; text-align: center; }
  .jp-demo-action strong { font-size: 16px; }
  .jp-vision-grid, .jp-career-grid { grid-template-columns: 1fr; gap: 35px; }
  .jp-vision-card p { text-align: left; }
  .jp-career-heading { font-size: 18px; }
  .jp-career-grid { padding-block: 35px; }
  .jp-gallery-grid { grid-auto-rows: 165px; }
  .jp-footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .jp-footer-contact { grid-column: auto; }
  .jp-footer-bottom .jp-shell { flex-direction: column; justify-content: center; padding-block: 12px; text-align: center; }
}

@media (max-width: 479px) {
  .jp-hero-actions { width: 100%; flex-direction: column; }
  .jp-hero-actions .jp-btn { width: 100%; }
  .jp-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .jp-gallery-item:nth-child(n+4), .jp-gallery-placeholder:nth-child(n+4) { display: none; }
  .jp-demo-visual { padding: 18px; }
  .jp-demo-phone { width: 54px; height: 72px; flex-basis: 54px; font-size: 43px; }
  .jp-demo-visual strong { font-size: 14px; }
  .jp-whatsapp-float, .jp-scroll-top { right: 13px; width: 44px; height: 44px; }
  .jp-whatsapp-float { bottom: 69px; }
  .jp-scroll-top { bottom: 14px; }
}

/* =========================================================
   JP TECH UI V2 — premium responsive inner-page system
   ========================================================= */
:root {
  --jp-primary: #06245f;
  --jp-primary-2: #0b3c8c;
  --jp-accent: #8bd12f;
  --jp-accent-2: #f5b82e;
  --jp-surface: #ffffff;
  --jp-page: #f3f6fb;
  --jp-text: #111827;
  --jp-subtext: #64748b;
  --jp-line: #e5eaf1;
  --jp-radius-lg: 22px;
  --jp-radius-md: 15px;
  --jp-card-shadow: 0 18px 46px rgba(6, 36, 95, .10);
  --jp-card-shadow-hover: 0 24px 58px rgba(6, 36, 95, .17);
}

/* Top bar + upgraded navigation */
.jp-topbar { background: linear-gradient(90deg, #031a48, #0a347b); color: #fff; }
.jp-topbar-inner { min-height: 35px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.jp-topbar-left, .jp-topbar-right { display: flex; align-items: center; gap: 18px; min-width: 0; }
.jp-topbar a, .jp-topbar span { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.84); font-size: 10px; line-height: 1.3; text-decoration: none !important; }
.jp-topbar a:hover { color: var(--jp-accent); }
.jp-topbar i { color: var(--jp-accent); }
.jp-topbar-left span { max-width: 420px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.jp-site-header.is-sticky .jp-topbar { display: none; }
.jp-site-header.is-sticky .jp-header-main { animation: jpHeaderDown .24s ease; }
@keyframes jpHeaderDown { from { transform: translateY(-15px); opacity: .4; } to { transform: none; opacity: 1; } }
.jp-main-nav > a.is-active, .jp-nav-dropdown.is-active > .jp-nav-dropdown-toggle { color: var(--jp-primary); background: #eef7e4; }
.jp-main-nav > a.is-active::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px; border-radius: 5px; background: var(--jp-accent); }
.jp-main-nav > a { position: relative; }
.jp-main-nav .jp-nav-cta i { margin-right: 7px; }
.jp-menu-backdrop { position: fixed; z-index: 1000; inset: 0; visibility: hidden; opacity: 0; background: rgba(3, 18, 45, .58); backdrop-filter: blur(3px); transition: .25s ease; }
body.jp-menu-open .jp-menu-backdrop { visibility: visible; opacity: 1; }

/* Shared modern page hero */
.jp-page-hero, .jp-auto-page-hero {
  position: relative;
  overflow: hidden;
  padding: 66px 0;
  background:
    radial-gradient(circle at 84% 15%, rgba(139,209,47,.24), transparent 24%),
    radial-gradient(circle at 4% 100%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(120deg, #031a48 0%, #0a347b 58%, #0e4a9a 100%);
  color: #fff;
}
.jp-page-hero::after, .jp-auto-page-hero::after { content: ""; position: absolute; right: -80px; bottom: -130px; width: 340px; height: 340px; border: 55px solid rgba(255,255,255,.05); border-radius: 50%; }
.jp-page-hero-small { padding: 52px 0; }
.jp-page-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 45px; }
.jp-page-kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; color: var(--jp-accent); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.jp-page-kicker::before { content: ""; width: 28px; height: 2px; background: var(--jp-accent); }
.jp-page-hero h1, .jp-auto-page-hero h1 { margin: 0; color: #fff; font-size: clamp(31px, 4.3vw, 52px); font-weight: 800; line-height: 1.14; }
.jp-page-hero p, .jp-auto-page-hero p { max-width: 760px; margin: 15px 0 0; color: rgba(255,255,255,.78); font-size: 14px; }
.jp-page-hero-icon { width: 150px; height: 150px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 35px; background: rgba(255,255,255,.08); color: var(--jp-accent); font-size: 64px; transform: rotate(4deg); box-shadow: inset 0 0 35px rgba(255,255,255,.05); }
.jp-page-hero-meta { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 24px; }
.jp-page-hero-meta span { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.9); font-size: 11px; }
.jp-page-hero-meta i { color: var(--jp-accent); }
.jp-modern-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 22px; color: rgba(255,255,255,.67); font-size: 11px; }
.jp-modern-breadcrumb a { color: #fff; text-decoration: none !important; }
.jp-modern-breadcrumb a:hover { color: var(--jp-accent); }

/* Convert old inner hero to same visual language */
body:not(.jp-home-page) .inner-header { position: relative; min-height: 175px; display: flex; align-items: center; padding: 42px 0 !important; background: linear-gradient(120deg,#031a48,#0b428e) !important; background-image: none !important; }
body:not(.jp-home-page) .inner-header::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%,rgba(139,209,47,.25),transparent 25%); }
body:not(.jp-home-page) .inner-header .container { position: relative; z-index: 2; }
body:not(.jp-home-page) .inner-header h1, body:not(.jp-home-page) .inner-header h2 { margin: 0 0 8px !important; color: #fff !important; font-family: "Poppins",sans-serif; font-size: clamp(28px,4vw,44px) !important; font-weight: 800 !important; }
body:not(.jp-home-page) .inner-header .breadcrumb { margin: 0 !important; padding: 0 !important; background: transparent !important; }
body:not(.jp-home-page) .inner-header .breadcrumb li, body:not(.jp-home-page) .inner-header .breadcrumb a { color: rgba(255,255,255,.78) !important; }

/* All inner pages: spacing, cards, grids, forms and tables */
body:not(.jp-home-page) .main-content { min-height: 60vh; background: var(--jp-page); }
body:not(.jp-home-page) .main-content > section:not(.jp-page-hero):not(.jp-auto-page-hero):not(.inner-header):not(.jp-approval-section):not(.jp-course-cta-section) { padding-top: 55px; padding-bottom: 55px; }
.jp-inner-section { padding: 58px 0 68px; }
body:not(.jp-home-page) .main-content .container { width: min(1160px, calc(100% - 30px)); }
body:not(.jp-home-page) .main-content .row { margin-left: -10px; margin-right: -10px; }
body:not(.jp-home-page) .main-content [class*="col-"] { padding-left: 10px; padding-right: 10px; }
body:not(.jp-home-page) .main-content .event-details,
body:not(.jp-home-page) .main-content .login-page,
body:not(.jp-home-page) .main-content .panel,
body:not(.jp-home-page) .main-content .well,
body:not(.jp-home-page) .main-content .widget,
body:not(.jp-home-page) .main-content .jp-auto-card {
  border: 1px solid var(--jp-line) !important;
  border-radius: var(--jp-radius-lg) !important;
  background: #fff !important;
  box-shadow: var(--jp-card-shadow) !important;
}
body:not(.jp-home-page) .main-content .event-details { padding: clamp(18px,3vw,34px) !important; }
body:not(.jp-home-page) .main-content h1, body:not(.jp-home-page) .main-content h2, body:not(.jp-home-page) .main-content h3, body:not(.jp-home-page) .main-content h4 { font-family: "Poppins",sans-serif; color: var(--jp-text); }
body:not(.jp-home-page) .main-content h1 { font-size: clamp(27px,4vw,40px); font-weight: 800; }
body:not(.jp-home-page) .main-content h2 { font-size: clamp(23px,3vw,33px); font-weight: 800; }
body:not(.jp-home-page) .main-content h3 { font-size: 20px; font-weight: 700; }
body:not(.jp-home-page) .main-content p { color: #526174; }
body:not(.jp-home-page) .main-content label { margin-bottom: 7px; color: #273449; font-size: 12px; font-weight: 700; }
body:not(.jp-home-page) .main-content .form-group { margin-bottom: 17px; }
body:not(.jp-home-page) .main-content .form-control,
body:not(.jp-home-page) .main-content input[type="text"],
body:not(.jp-home-page) .main-content input[type="email"],
body:not(.jp-home-page) .main-content input[type="number"],
body:not(.jp-home-page) .main-content input[type="password"],
body:not(.jp-home-page) .main-content input[type="date"],
body:not(.jp-home-page) .main-content input[type="file"],
body:not(.jp-home-page) .main-content select,
body:not(.jp-home-page) .main-content textarea {
  min-height: 47px !important;
  padding: 10px 13px !important;
  border: 1px solid #d8e0ea !important;
  border-radius: 10px !important;
  background-color: #fff !important;
  color: #1f2937 !important;
  box-shadow: none !important;
  transition: .2s ease;
}
body:not(.jp-home-page) .main-content textarea { min-height: 115px !important; resize: vertical; }
body:not(.jp-home-page) .main-content .form-control:focus,
body:not(.jp-home-page) .main-content input:focus,
body:not(.jp-home-page) .main-content select:focus,
body:not(.jp-home-page) .main-content textarea:focus { border-color: #83bd39 !important; box-shadow: 0 0 0 4px rgba(139,209,47,.13) !important; outline: 0; }
body:not(.jp-home-page) .main-content .btn,
body:not(.jp-home-page) .main-content button[type="submit"],
body:not(.jp-home-page) .main-content input[type="submit"] {
  min-height: 43px;
  padding: 10px 20px;
  border: 0 !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg,var(--jp-primary),var(--jp-primary-2)) !important;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(6,36,95,.18);
  transition: .2s ease;
}
body:not(.jp-home-page) .main-content .btn:hover,
body:not(.jp-home-page) .main-content button[type="submit"]:hover,
body:not(.jp-home-page) .main-content input[type="submit"]:hover { transform: translateY(-2px); background: var(--jp-accent) !important; color: #173006 !important; }
body:not(.jp-home-page) .main-content table { width: 100% !important; overflow: hidden; border: 1px solid var(--jp-line) !important; border-collapse: separate !important; border-spacing: 0 !important; border-radius: 12px; background: #fff; }
body:not(.jp-home-page) .main-content table th { padding: 12px 13px !important; border: 0 !important; border-bottom: 1px solid #dfe6ee !important; background: #eef3f8 !important; color: #243248 !important; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; }
body:not(.jp-home-page) .main-content table td { padding: 11px 13px !important; border: 0 !important; border-bottom: 1px solid #edf1f5 !important; color: #4b596b; vertical-align: middle !important; }
body:not(.jp-home-page) .main-content table tr:last-child td { border-bottom: 0 !important; }
body:not(.jp-home-page) .main-content img { border-radius: 12px; }
body:not(.jp-home-page) .main-content iframe { border-radius: 18px; box-shadow: var(--jp-card-shadow); }
body:not(.jp-home-page) .main-content ul:not(.breadcrumb):not(.styled-icons) { padding-left: 20px; }
body:not(.jp-home-page) .main-content .alert { border: 0; border-radius: 12px; }
body:not(.jp-home-page) .main-content hr { border-color: var(--jp-line); }

/* Automatic page hero inserted on legacy pages */
.jp-auto-page-hero { padding: 48px 0; }
.jp-auto-page-hero .jp-shell { position: relative; z-index: 2; }
.jp-auto-page-hero h1 { font-size: clamp(29px,4vw,43px); }
.jp-auto-page-hero .jp-modern-breadcrumb { margin-top: 13px; }

/* Generic legacy content cleanup */
body:not(.jp-home-page) .main-content > section > .container > .row > .col-md-12 > .col-md-12 { float: none; width: 100%; padding: 0; }
body:not(.jp-home-page) .main-content [style*="box-shadow"] { box-shadow: var(--jp-card-shadow) !important; }
body:not(.jp-home-page) .main-content [style*="background-color:#ffe3aa"],
body:not(.jp-home-page) .main-content [style*="background-color: #ffe3aa"] { border: 1px solid var(--jp-line) !important; border-radius: var(--jp-radius-lg) !important; background: #fff !important; }
body:not(.jp-home-page) .main-content [style*="border:10px"] { border: 1px solid var(--jp-line) !important; }
body:not(.jp-home-page) .main-content .ask-our-expert { padding: 24px !important; border: 1px solid var(--jp-line) !important; border-radius: var(--jp-radius-lg) !important; background: #fff !important; box-shadow: var(--jp-card-shadow); }
body:not(.jp-home-page) .main-content .ask-our-expert h4 { margin: -24px -24px 22px !important; padding: 17px 22px !important; border-radius: var(--jp-radius-lg) var(--jp-radius-lg) 0 0; background: linear-gradient(135deg,var(--jp-primary),var(--jp-primary-2)) !important; color: #fff !important; }
body:not(.jp-home-page) .main-content .ask-our-expert form { padding: 0 !important; border: 0 !important; background: transparent !important; box-shadow: none !important; }
body:not(.jp-home-page) .main-content .ask-our-expert input,
body:not(.jp-home-page) .main-content .ask-our-expert select,
body:not(.jp-home-page) .main-content .ask-our-expert textarea { width: 100%; margin-bottom: 11px; }
body:not(.jp-home-page) .main-content .collapsible { position: relative; margin: 12px 0 0 !important; padding: 17px 20px !important; border-radius: 12px !important; background: linear-gradient(135deg,var(--jp-primary),var(--jp-primary-2)) !important; color: #fff; font-weight: 700; box-shadow: 0 9px 24px rgba(6,36,95,.12); }
body:not(.jp-home-page) .main-content .collapsible:hover, body:not(.jp-home-page) .main-content .collapsible.active_new { background: linear-gradient(135deg,#6eaf1d,#91d33a) !important; }
body:not(.jp-home-page) .main-content .content_new { border-radius: 0 0 14px 14px; background: #f9fbfd !important; }

/* Course catalog */
.jp-course-toolbar { position: sticky; z-index: 20; top: 84px; margin-bottom: 34px; padding: 16px; border: 1px solid var(--jp-line); border-radius: 18px; background: rgba(255,255,255,.96); box-shadow: 0 13px 35px rgba(6,36,95,.09); backdrop-filter: blur(12px); }
.jp-course-search { position: relative; max-width: 580px; margin: 0 auto 14px; }
.jp-course-search i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--jp-primary-2); }
.jp-course-search input { width: 100%; height: 48px; padding: 10px 16px 10px 45px; border: 1px solid #d9e2ec; border-radius: 12px; background: #f8fafc; outline: 0; }
.jp-course-search input:focus { border-color: var(--jp-accent); box-shadow: 0 0 0 4px rgba(139,209,47,.13); }
.jp-course-category-tabs { display: flex; gap: 8px; overflow-x: auto; padding: 2px 2px 4px; scrollbar-width: thin; }
.jp-course-category-tabs button { flex: 0 0 auto; min-height: 36px; padding: 8px 14px; border: 1px solid #dce4ed; border-radius: 999px; background: #fff; color: #536175; font-size: 11px; font-weight: 700; cursor: pointer; }
.jp-course-category-tabs button:hover, .jp-course-category-tabs button.is-active { border-color: var(--jp-primary); background: var(--jp-primary); color: #fff; }
.jp-course-category { margin-bottom: 50px; }
.jp-course-category[hidden], .jp-course-list-card[hidden] { display: none !important; }
.jp-course-category-head { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; margin-bottom: 18px; padding: 17px 20px; border-left: 5px solid var(--jp-accent); border-radius: 14px; background: #fff; box-shadow: 0 10px 28px rgba(6,36,95,.08); }
.jp-course-category-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: #ecf5e1; color: #629f18; font-size: 23px; }
.jp-course-category-head span { color: #7b8797; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.jp-course-category-head h2 { margin: 2px 0 0 !important; font-size: 24px !important; }
.jp-course-category-head > strong { padding: 7px 11px; border-radius: 999px; background: #eef3f8; color: var(--jp-primary); font-size: 11px; white-space: nowrap; }
.jp-course-list-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 19px; }
.jp-course-list-grid-two { grid-template-columns: repeat(2,minmax(0,1fr)); }
.jp-course-list-card { position: relative; display: flex; flex-direction: column; min-width: 0; overflow: hidden; border: 1px solid var(--jp-line); border-radius: 18px; background: #fff; box-shadow: 0 12px 32px rgba(6,36,95,.08); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.jp-course-list-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg,var(--jp-accent),#f4c62d); }
.jp-course-list-card:hover { transform: translateY(-7px); border-color: rgba(139,209,47,.65); box-shadow: var(--jp-card-shadow-hover); }
.jp-course-card-top { display: grid; grid-template-columns: 76px minmax(0,1fr); align-items: center; gap: 13px; padding: 22px 21px 14px; }
.jp-course-card-visual { width: 76px; height: 76px; overflow: hidden; border-radius: 16px; background: linear-gradient(145deg,#e9f0fa,#f7fafc); }
.jp-course-card-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.jp-course-card-fallback { width: 100%; height: 100%; display: grid; place-items: center; color: var(--jp-primary-2); font-size: 30px; }
.jp-course-card-title { min-width: 0; }
.jp-course-code { display: inline-flex; margin-bottom: 7px; padding: 4px 9px; border-radius: 999px; background: #ecf5e1; color: #5f981c; font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.jp-course-card-title h3 { margin: 0 !important; overflow: hidden; color: #162033 !important; font-size: 17px !important; line-height: 1.35; }
.jp-course-card-meta { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid #edf1f5; border-bottom: 1px solid #edf1f5; background: #fafcfe; }
.jp-course-card-meta > span { display: grid; grid-template-columns: auto 1fr; column-gap: 8px; padding: 12px 16px; }
.jp-course-card-meta > span + span { border-left: 1px solid #edf1f5; }
.jp-course-card-meta i { grid-row: 1 / 3; align-self: center; color: var(--jp-primary-2); font-size: 17px; }
.jp-course-card-meta small { color: #8a96a5; font-size: 9px; font-weight: 600; text-transform: uppercase; }
.jp-course-card-meta strong { overflow: hidden; color: #334155; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.jp-course-subjects { display: flex; flex-wrap: wrap; align-content: flex-start; gap: 7px; min-height: 88px; padding: 15px 20px 9px; }
.jp-course-subjects span { max-width: 100%; overflow: hidden; padding: 5px 8px; border: 1px solid #e3e9ef; border-radius: 7px; background: #f8fafc; color: #5b6879; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.jp-course-subjects .jp-course-more { border-color: #cfe5b3; background: #edf7e2; color: #5e941d; font-weight: 700; }
.jp-course-no-subject { min-height: 88px; margin: 0 !important; padding: 17px 20px; font-size: 11px; }
.jp-course-card-actions { display: flex; align-items: center; gap: 10px; margin-top: auto; padding: 12px 20px 20px; }
.jp-course-card-actions .jp-btn { flex: 1; min-height: 41px; padding: 10px 15px; font-size: 10px; }
.jp-course-card-actions .jp-btn i { margin-left: 6px; }
.jp-course-enquire { display: inline-flex; align-items: center; gap: 6px; padding: 10px 2px; color: var(--jp-primary); font-size: 10px; font-weight: 700; text-decoration: none !important; white-space: nowrap; }
.jp-course-enquire:hover { color: var(--jp-accent-dark,#669e20); }
.jp-course-empty { padding: 65px 20px; border: 1px dashed #cbd5e1; border-radius: 18px; background: #fff; text-align: center; }
.jp-course-empty i { color: #9aaaBC; font-size: 45px; }
.jp-course-empty h3 { margin: 13px 0 5px !important; }
.jp-course-empty p { margin: 0 !important; }
.jp-course-cta-section { padding: 0 0 65px; background: var(--jp-page); }
.jp-course-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; overflow: hidden; padding: 34px 38px; border-radius: 23px; background: linear-gradient(125deg,#031a48,#0c428c); color: #fff; box-shadow: var(--jp-card-shadow); }
.jp-course-cta span { color: var(--jp-accent); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.jp-course-cta h2 { margin: 4px 0 4px !important; color: #fff !important; font-size: 27px !important; }
.jp-course-cta p { margin: 0 !important; color: rgba(255,255,255,.68) !important; }
.jp-course-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.jp-course-cta-actions .jp-btn { white-space: nowrap; }

/* Category/detail layouts */
.jp-content-sidebar-grid { display: grid; grid-template-columns: minmax(0,1fr) 330px; align-items: start; gap: 28px; }
.jp-sticky-sidebar, .jp-course-detail-sidebar { position: sticky; top: 105px; }
.jp-section-title-left { margin-bottom: 20px; }
.jp-section-title-left > span { color: #6da622; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.jp-section-title-left h2 { margin: 3px 0 0 !important; }
.jp-course-detail-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; align-items: start; gap: 28px; }
.jp-course-detail-main { overflow: hidden; border: 1px solid var(--jp-line); border-radius: 22px; background: #fff; box-shadow: var(--jp-card-shadow); }
.jp-course-detail-cover { position: relative; min-height: 320px; overflow: hidden; background: linear-gradient(135deg,#082b69,#0c4b9f); }
.jp-course-detail-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 0 !important; }
.jp-course-detail-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(3,19,49,.55),transparent 65%); pointer-events: none; }
.jp-course-detail-cover-placeholder { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 12px; color: #fff; text-align: center; }
.jp-course-detail-cover-placeholder i { color: var(--jp-accent); font-size: 70px; }
.jp-course-detail-cover-placeholder span { max-width: 80%; font-size: 24px; font-weight: 800; }
.jp-course-detail-cover:not(.is-placeholder) img + .jp-course-detail-cover-placeholder { opacity: 0; }
.jp-course-detail-body { padding: clamp(22px,4vw,38px); }
.jp-course-detail-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.jp-course-detail-heading h2 { margin: 0 !important; }
.jp-course-facts { display: grid; grid-template-columns: repeat(3,1fr); margin-bottom: 28px; overflow: hidden; border: 1px solid var(--jp-line); border-radius: 14px; background: #f8fafc; }
.jp-course-facts > div { display: flex; align-items: center; gap: 10px; padding: 17px; }
.jp-course-facts > div + div { border-left: 1px solid var(--jp-line); }
.jp-course-facts i { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; border-radius: 10px; background: #eaf3de; color: #649c20; font-size: 17px; }
.jp-course-facts small, .jp-course-facts strong { display: block; }
.jp-course-facts small { color: #8591a0; font-size: 9px; text-transform: uppercase; }
.jp-course-facts strong { color: #263247; font-size: 11px; }
.jp-rich-content { color: #526174; font-size: 14px; line-height: 1.9; }
.jp-rich-content img { height: auto !important; }
.jp-syllabus-block { margin-top: 35px; }
.jp-syllabus-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.jp-syllabus-grid > div { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; padding: 13px; border: 1px solid var(--jp-line); border-radius: 11px; background: #fbfcfe; }
.jp-syllabus-grid b { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; background: var(--jp-primary); color: #fff; font-size: 9px; }
.jp-syllabus-grid span { color: #425066; font-size: 11px; }
.jp-syllabus-grid i { color: #77b52a; }
.jp-enrol-card { margin-bottom: 20px; padding: 28px 24px; border-radius: 19px; background: linear-gradient(145deg,#031a48,#0a3b83); color: #fff; text-align: center; box-shadow: var(--jp-card-shadow); }
.jp-enrol-icon { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 15px; border-radius: 22px; background: rgba(255,255,255,.1); color: var(--jp-accent); font-size: 31px; }
.jp-enrol-card h3 { margin: 0 0 8px !important; color: #fff !important; }
.jp-enrol-card p { margin: 0 0 18px !important; color: rgba(255,255,255,.68) !important; font-size: 11px; }
.jp-enrol-card .jp-btn { width: 100%; margin-top: 9px; }

/* Responsive */
@media (max-width: 1199px) {
  .jp-topbar-left span { display: none; }
  .jp-course-list-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 991px) {
  .jp-topbar { display: none; }
  .jp-menu-backdrop { display: block; }
  .jp-main-nav > a.is-active::after { display: none; }
  .jp-course-toolbar { top: 78px; }
  .jp-content-sidebar-grid, .jp-course-detail-layout { grid-template-columns: 1fr; }
  .jp-sticky-sidebar, .jp-course-detail-sidebar { position: static; }
  .jp-page-hero-icon { width: 115px; height: 115px; border-radius: 27px; font-size: 48px; }
  .jp-course-detail-sidebar { display: grid; grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .jp-page-hero, .jp-auto-page-hero { padding: 45px 0; }
  .jp-page-hero-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .jp-page-kicker, .jp-modern-breadcrumb, .jp-page-hero-meta { justify-content: center; }
  .jp-page-hero p { margin-left: auto; margin-right: auto; }
  .jp-page-hero-icon { display: none; }
  .jp-course-toolbar { position: static; }
  .jp-course-list-grid, .jp-course-list-grid-two { grid-template-columns: 1fr; }
  .jp-course-category-head { grid-template-columns: auto 1fr; }
  .jp-course-category-head > strong { grid-column: 1 / -1; justify-self: start; }
  .jp-course-cta { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .jp-course-cta-actions { width: 100%; }
  .jp-course-cta-actions .jp-btn { flex: 1; }
  .jp-course-facts { grid-template-columns: 1fr; }
  .jp-course-facts > div + div { border-top: 1px solid var(--jp-line); border-left: 0; }
  .jp-course-detail-heading { align-items: flex-start; flex-direction: column; }
  .jp-syllabus-grid { grid-template-columns: 1fr; }
  .jp-course-detail-cover { min-height: 230px; }
  body:not(.jp-home-page) .main-content > section:not(.jp-page-hero):not(.jp-auto-page-hero):not(.inner-header):not(.jp-approval-section):not(.jp-course-cta-section) { padding-top: 38px; padding-bottom: 38px; }
}
@media (max-width: 479px) {
  .jp-course-card-top { grid-template-columns: 62px minmax(0,1fr); padding-inline: 16px; }
  .jp-course-card-visual { width: 62px; height: 62px; }
  .jp-course-card-meta > span { padding: 11px; }
  .jp-course-card-actions { padding-inline: 16px; }
  .jp-course-category-head { padding: 14px; }
  .jp-course-category-icon { width: 44px; height: 44px; }
  .jp-course-category-head h2 { font-size: 19px !important; }
  .jp-course-cta-actions { flex-direction: column; }
  .jp-course-cta-actions .jp-btn { width: 100%; }
}

@media print {
  .jp-site-header, .jp-site-footer, .jp-whatsapp-float, .jp-scroll-top, .jp-auto-page-hero, .jp-page-hero, .jp-course-toolbar { display: none !important; }
  body, body:not(.jp-home-page) .main-content { background: #fff !important; }
  body:not(.jp-home-page) .main-content .event-details, body:not(.jp-home-page) .main-content .panel, body:not(.jp-home-page) .main-content .well { box-shadow: none !important; border: 0 !important; }
}

/* Query and contact page */
.jp-query-card { margin: 0 !important; }
.jp-query-card h4 { display: flex; align-items: center; gap: 9px; }
.jp-query-intro { margin: -8px 0 16px !important; color: #718096 !important; font-size: 11px !important; }
.jp-field-icon { position: relative; }
.jp-field-icon > i { position: absolute; z-index: 2; left: 13px; top: 17px; color: #7790aa; }
.jp-field-icon .form-control { padding-left: 38px !important; }
.jp-check-row { display: flex; align-items: flex-start; gap: 8px; margin: 8px 0 15px; cursor: pointer; }
.jp-check-row input { width: auto !important; min-height: 0 !important; margin-top: 3px !important; }
.jp-check-row span { color: #66758a; font-size: 10px; font-weight: 500; line-height: 1.5; }
.jp-query-submit { width: 100%; }
.jp-query-submit i { margin-left: 7px; }

.jp-contact-info-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; margin-bottom: 28px; }
.jp-contact-info-card { min-width: 0; display: flex; align-items: center; gap: 13px; padding: 19px; border: 1px solid var(--jp-line); border-radius: 16px; background: #fff; box-shadow: 0 10px 26px rgba(6,36,95,.07); color: inherit; text-decoration: none !important; transition: .22s ease; }
.jp-contact-info-card:hover { transform: translateY(-4px); border-color: rgba(139,209,47,.7); box-shadow: var(--jp-card-shadow); }
.jp-contact-info-card > i { width: 45px; height: 45px; flex: 0 0 45px; display: grid; place-items: center; border-radius: 13px; background: #edf5e3; color: #69a31f; font-size: 20px; }
.jp-contact-info-card small, .jp-contact-info-card strong { display: block; min-width: 0; }
.jp-contact-info-card small { color: #8b97a5; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.jp-contact-info-card strong { overflow: hidden; margin-top: 3px; color: #263247; font-size: 11px; line-height: 1.4; text-overflow: ellipsis; }
.jp-contact-layout { display: grid; grid-template-columns: minmax(0,1fr) 335px; align-items: stretch; gap: 24px; }
.jp-contact-form-card { padding: clamp(22px,4vw,38px); border: 1px solid var(--jp-line); border-radius: 22px; background: #fff; box-shadow: var(--jp-card-shadow); }
.jp-contact-form-card .jp-section-title-left p { margin: 7px 0 0 !important; }
.jp-contact-form { padding: 0 !important; border: 0 !important; background: transparent !important; box-shadow: none !important; }
.jp-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 16px; }
.jp-form-full { grid-column: 1 / -1; }
.jp-contact-form .jp-btn i { margin-left: 8px; }
.jp-contact-side-card { overflow: hidden; padding: 31px 26px; border-radius: 22px; background: linear-gradient(145deg,#031a48,#0b428d); color: #fff; box-shadow: var(--jp-card-shadow); }
.jp-contact-side-logo { width: 90px; height: 90px; display: grid; place-items: center; margin-bottom: 18px; padding: 8px; border-radius: 18px; background: #fff; }
.jp-contact-side-logo img { width: 100%; height: 100%; object-fit: contain; }
.jp-contact-side-card h3 { margin: 0 0 10px !important; color: #fff !important; }
.jp-contact-side-card > p { color: rgba(255,255,255,.68) !important; font-size: 11px; }
.jp-contact-hours { margin-top: 25px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); }
.jp-contact-hours h4 { margin: 0 0 14px !important; color: var(--jp-accent) !important; font-size: 13px !important; }
.jp-contact-hours h4 i { margin-right: 7px; }
.jp-contact-hours > div { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; color: rgba(255,255,255,.69); font-size: 10px; }
.jp-contact-hours strong { color: #fff; font-size: 10px; text-align: right; }
.jp-contact-quick-actions { display: grid; gap: 9px; margin-top: 24px; }
.jp-contact-quick-actions a { display: flex; align-items: center; gap: 9px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; background: rgba(255,255,255,.07); color: #fff; font-size: 10px; font-weight: 700; text-decoration: none !important; }
.jp-contact-quick-actions a:hover { border-color: var(--jp-accent); background: var(--jp-accent); color: #153008; }
.jp-map-section { padding: 0 0 68px; background: var(--jp-page); }
.jp-map-section iframe { display: block; width: 100%; border-radius: 20px; }

@media (max-width: 991px) {
  .jp-contact-info-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .jp-contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .jp-contact-info-grid { grid-template-columns: 1fr; }
  .jp-form-grid { grid-template-columns: 1fr; }
  .jp-form-full { grid-column: auto; }
}


/* =========================================================
   SKILL FUTURE UI V3 — unified navy/green pattern for all pages
   ========================================================= */
:root {
  --jp-primary: #082b68;
  --jp-primary-2: #0c4698;
  --jp-primary-deep: #031c4c;
  --jp-accent: #82cf2e;
  --jp-accent-dark: #63a91b;
  --jp-page: #f4f7fb;
  --jp-surface: #ffffff;
  --jp-text: #10203b;
  --jp-subtext: #66758b;
  --jp-line: #dfe7f0;
  --jp-card-shadow: 0 16px 44px rgba(5,35,89,.10);
  --jp-card-shadow-hover: 0 24px 60px rgba(5,35,89,.17);
}
body { background: var(--jp-page); color: var(--jp-text); }
.main-content { min-height: 520px; background: var(--jp-page); }
.jp-shell { width: min(1240px, calc(100% - 38px)); }
.jp-topbar { background: linear-gradient(90deg,#031c4c,#083677 62%,#06285e); }
.jp-header-main { background: rgba(255,255,255,.99); }
.jp-header-inner { min-height: 84px; }
.jp-brand-logo-wrap { width: 68px; height: 58px; flex-basis: 68px; border: 1px solid #edf1f5; }
.jp-brand-copy strong { color: #09265f; font-size: 20px; letter-spacing: -.025em; }
.jp-main-nav > a, .jp-nav-dropdown-toggle { color: #16233a; font-weight: 700; }
.jp-main-nav > a.is-active, .jp-nav-dropdown.is-active > .jp-nav-dropdown-toggle { background: #eff8e7; color: #09265f; }
.jp-main-nav > a.is-active::after { background: var(--jp-accent); }
.jp-main-nav .jp-nav-cta { border-radius: 10px; background: linear-gradient(135deg,#8bd632,#70bd22); box-shadow: 0 12px 27px rgba(111,190,35,.25); }
.jp-page-hero, .jp-auto-page-hero {
  position: relative; overflow: hidden; padding: 62px 0;
  background: radial-gradient(circle at 82% 18%,rgba(35,150,190,.36),transparent 34%),linear-gradient(120deg,#031d4e 0%,#073b82 63%,#0b5599 100%);
}
.jp-page-hero::before, .jp-auto-page-hero::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(3,24,64,.38),transparent 56%); }
.jp-page-hero::after, .jp-auto-page-hero::after { right:-95px; bottom:-180px; width:430px; height:430px; border-width:62px; }
.jp-page-kicker { color: var(--jp-accent); font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.jp-page-hero h1, .jp-auto-page-hero h1 { color:#fff !important; letter-spacing:-.035em; text-shadow:0 4px 18px rgba(1,16,43,.16); }
.jp-modern-breadcrumb { margin-top:22px; color:rgba(255,255,255,.82); }
.jp-modern-breadcrumb a, .jp-modern-breadcrumb span, .jp-modern-breadcrumb i { color:inherit; }
.jp-page-hero-icon { color:var(--jp-accent); background:linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.045)); box-shadow:inset 0 0 35px rgba(255,255,255,.07),0 25px 60px rgba(2,18,48,.18); }

/* Universal legacy page surfaces */
body.jp-inner-page .main-content > section:not(.jp-page-hero):not(.jp-auto-page-hero):not(.jp-course-cta-section):not(.jp-map-section),
body:not(.jp-home-page) .main-content > section:not(.jp-page-hero):not(.jp-auto-page-hero):not(.inner-header):not(.jp-approval-section):not(.jp-course-cta-section) { background:var(--jp-page); }
body.jp-inner-page .main-content .container { max-width:1240px; }
body.jp-inner-page .main-content h1, body.jp-inner-page .main-content h2, body.jp-inner-page .main-content h3, body.jp-inner-page .main-content h4 { color:#10244b; font-family:Poppins,Arial,sans-serif; }
body.jp-inner-page .main-content p { color:#64748b; }
.jp-legacy-surface, body.jp-inner-page .main-content .panel, body.jp-inner-page .main-content .well, body.jp-inner-page .main-content .event-details {
  border:1px solid var(--jp-line) !important; border-radius:18px !important; background:#fff !important; box-shadow:var(--jp-card-shadow) !important;
}
body.jp-inner-page .main-content .panel-heading { border:0 !important; border-radius:18px 18px 0 0 !important; background:linear-gradient(135deg,#082b68,#0c4698) !important; color:#fff !important; }
body.jp-inner-page .main-content .panel-title, body.jp-inner-page .main-content .panel-heading h1, body.jp-inner-page .main-content .panel-heading h2, body.jp-inner-page .main-content .panel-heading h3 { color:#fff !important; }
body.jp-inner-page .main-content .btn, .jp-legacy-submit {
  min-height:43px; padding:10px 18px !important; border:0 !important; border-radius:9px !important; background:linear-gradient(135deg,#082b68,#0c4698) !important; color:#fff !important; font-weight:700 !important; box-shadow:0 9px 20px rgba(5,35,89,.18); transition:.2s ease;
}
body.jp-inner-page .main-content .btn:hover, .jp-legacy-submit:hover { transform:translateY(-2px); background:linear-gradient(135deg,#071f50,#0a397e) !important; }
body.jp-inner-page .main-content .btn-success, body.jp-inner-page .main-content .btn-primary { background:linear-gradient(135deg,#82cf2e,#67af1f) !important; color:#132c08 !important; }
body.jp-inner-page .main-content .form-control, body.jp-inner-page .main-content input:not([type=checkbox]):not([type=radio]), body.jp-inner-page .main-content select, body.jp-inner-page .main-content textarea {
  border:1px solid #d8e2ed !important; border-radius:10px !important; background:#fbfcfe !important; color:#27364c !important; box-shadow:none !important;
}
body.jp-inner-page .main-content .form-control:focus, body.jp-inner-page .main-content input:focus, body.jp-inner-page .main-content select:focus, body.jp-inner-page .main-content textarea:focus { border-color:#83ca35 !important; background:#fff !important; box-shadow:0 0 0 4px rgba(131,202,53,.13) !important; }
.jp-auto-card { padding:clamp(20px,3vw,32px) !important; border:1px solid var(--jp-line) !important; border-radius:20px !important; background:#fff !important; box-shadow:var(--jp-card-shadow) !important; }
.jp-table-scroll { margin:18px 0; border-radius:15px; box-shadow:0 12px 32px rgba(5,35,89,.07); }
body.jp-inner-page .main-content table th { background:#eaf1f8 !important; color:#15315d !important; }
body.jp-inner-page .main-content table tr:nth-child(even) td { background:#fbfcfe; }
body.jp-inner-page .main-content img { border-radius:13px; }

/* Full-image courses catalog */
.jp-courses-page .jp-inner-section { padding-top:0; }
.jp-course-toolbar { top:94px; margin-top:-42px; padding:18px 20px; border-radius:20px; }
.jp-course-search { max-width:610px; }
.jp-course-category-tabs { justify-content:center; }
.jp-course-category { margin-bottom:46px; }
.jp-course-category-head { border-left:0; border-top:4px solid var(--jp-accent); padding:16px 20px; }
.jp-course-list-grid { grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.jp-course-list-card { border-radius:20px; box-shadow:0 14px 38px rgba(5,35,89,.09); }
.jp-course-list-card::before { display:none; }
.jp-course-card-visual {
  position:relative; width:100%; height:auto; aspect-ratio:16/7; display:grid; place-items:center; overflow:hidden; border-radius:0;
  background:linear-gradient(145deg,#eff5fc,#f9fbfd); border-bottom:1px solid #e6edf4;
}
.jp-course-card-visual img { width:100%; height:100%; padding:8px; object-fit:contain; object-position:center; border-radius:0; background:#fff; }
.jp-course-card-fallback { width:100%; height:100%; display:grid; place-items:center; align-content:center; gap:10px; background:linear-gradient(135deg,#082e71,#0d53a5); color:#9ce646; font-size:48px; }
.jp-course-card-fallback small { max-width:85%; color:#fff; font-size:13px; font-weight:700; text-align:center; }
.jp-course-code { position:absolute; left:16px; bottom:-14px; z-index:2; margin:0; padding:6px 13px; border:4px solid #fff; background:#edf8e4; color:#5b9918; box-shadow:0 6px 16px rgba(5,35,89,.11); }
.jp-course-card-body { display:flex; flex:1; flex-direction:column; padding:25px 20px 20px; }
.jp-course-card-title h3 { min-height:46px; margin:0 0 14px !important; color:#10285a !important; font-size:18px !important; line-height:1.35; }
.jp-course-card-meta { margin:0 -20px; }
.jp-course-subjects { min-height:76px; padding:15px 0 7px; }
.jp-course-no-subject { min-height:76px; padding:17px 0 7px; }
.jp-course-card-actions { margin-top:auto; padding:14px 0 0; }
.jp-course-card-actions .jp-btn { border-radius:10px; }
.jp-course-enquire { padding-inline:6px; }

/* Verification page */
.jp-verification-section { padding:42px 0 70px; background:var(--jp-page); }
.jp-verify-card { width:min(100%,520px); margin:0 auto 30px; padding:34px; border:1px solid var(--jp-line); border-radius:22px; background:#fff; box-shadow:var(--jp-card-shadow); text-align:center; }
.jp-verify-icon { position:relative; width:74px; height:74px; display:grid; place-items:center; margin:0 auto 16px; border-radius:23px; background:#edf8e4; color:#61a319; font-size:35px; }
.jp-verify-icon b { position:absolute; right:-4px; bottom:-3px; width:27px; height:27px; display:grid; place-items:center; border:4px solid #fff; border-radius:50%; background:#7dca2c; color:#fff; font-size:10px; }
.jp-verify-kicker { color:#68aa1d; font-size:10px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.jp-verify-card h2 { margin:5px 0 6px; color:#10285a; font-size:25px; }
.jp-verify-card > p { margin:0 0 23px; font-size:12px; }
.jp-verify-form { padding:0 !important; border:0 !important; background:transparent !important; box-shadow:none !important; text-align:left; }
.jp-verify-form label { display:block; margin-bottom:7px; color:#31425a; font-size:11px; font-weight:700; }
.jp-verify-field { position:relative; }
.jp-verify-field > i { position:absolute; left:16px; top:50%; transform:translateY(-50%); color:#55708e; }
.jp-verify-field input { width:100%; height:52px; padding:11px 15px 11px 45px !important; }
.jp-verify-form button { width:100%; min-height:51px; margin-top:14px; border:0; border-radius:11px; background:linear-gradient(135deg,#082b68,#0c4698); color:#fff; font-weight:800; box-shadow:0 12px 25px rgba(5,35,89,.2); }
.jp-verify-form button i { margin-left:8px; }
.jp-secure-note { display:block; margin-top:16px; color:#7a8798; font-size:10px; }
.jp-verification-result { margin:0 auto 30px; overflow:hidden; border:1px solid var(--jp-line); border-radius:22px; background:#fff; box-shadow:var(--jp-card-shadow); }
.jp-verification-result-head { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:18px; padding:24px; background:linear-gradient(135deg,#f7fbff,#eef7e6); }
.jp-student-photo { width:86px; height:86px; overflow:hidden; border:5px solid #fff; border-radius:20px; box-shadow:0 8px 24px rgba(5,35,89,.13); }
.jp-student-photo img { width:100%; height:100%; object-fit:cover; border-radius:0 !important; }
.jp-verification-result-head span { color:#6aaa22; font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.jp-verification-result-head h2 { margin:2px 0 !important; }
.jp-verification-result-head p { margin:0 !important; font-size:11px; }
.jp-status-badge { display:inline-flex; align-items:center; gap:7px; padding:8px 12px; border-radius:999px; background:#e8f7dc; color:#4b8c10; font-size:10px; }
.jp-status-badge.is-pending { background:#fff5d9; color:#9a6a00; }
.jp-status-badge.is-certified { background:#e4f4ff; color:#0a69a5; }
.jp-student-detail-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); padding:7px 24px 24px; }
.jp-student-detail-grid > div { min-width:0; padding:16px; border-right:1px solid #edf1f5; border-bottom:1px solid #edf1f5; }
.jp-student-detail-grid > div:nth-child(4n) { border-right:0; }
.jp-student-detail-grid small, .jp-student-detail-grid strong { display:block; }
.jp-student-detail-grid small { color:#8995a5; font-size:9px; text-transform:uppercase; }
.jp-student-detail-grid strong { margin-top:4px; overflow-wrap:anywhere; color:#2a3b54; font-size:12px; }
.jp-student-detail-grid .jp-detail-full { grid-column:1/-1; border-right:0; }
.jp-empty-state { max-width:650px; margin:0 auto 30px; padding:35px; border:1px dashed #f0b9b9; border-radius:20px; background:#fff; text-align:center; }
.jp-empty-state i { color:#dc5252; font-size:38px; }
.jp-empty-state h3 { margin:10px 0 4px; }
.jp-verification-steps { padding:27px; border:1px solid var(--jp-line); border-radius:20px; background:#fff; box-shadow:0 12px 32px rgba(5,35,89,.07); }
.jp-verification-steps > h2 { margin:0 0 20px; font-size:18px; text-align:center; }
.jp-verification-step-grid { display:grid; grid-template-columns:repeat(3,1fr); }
.jp-verification-step-grid > div { display:flex; align-items:center; gap:13px; padding:8px 24px; border-right:1px solid #e7edf4; }
.jp-verification-step-grid > div:last-child { border:0; }
.jp-verification-step-grid > div > i { width:50px; height:50px; flex:0 0 50px; display:grid; place-items:center; border-radius:16px; background:#edf8e4; color:#62a41b; font-size:20px; }
.jp-verification-step-grid b, .jp-verification-step-grid small { display:block; }
.jp-verification-step-grid b { color:#18325f; font-size:11px; }
.jp-verification-step-grid small { margin-top:3px; color:#7a8797; font-size:9px; line-height:1.5; }

/* Login */
.jp-auth-section { padding:55px 0 70px; background:var(--jp-page); }
.jp-auth-layout { display:grid; grid-template-columns:minmax(0,1fr) 470px; overflow:hidden; border:1px solid var(--jp-line); border-radius:25px; background:#fff; box-shadow:var(--jp-card-shadow); }
.jp-auth-benefits { position:relative; padding:50px; overflow:hidden; background:linear-gradient(145deg,#031c4c,#0a438d); color:#fff; }
.jp-auth-benefits::after { content:""; position:absolute; right:-120px; bottom:-160px; width:350px; height:350px; border:52px solid rgba(255,255,255,.055); border-radius:50%; }
.jp-auth-benefits > span { color:var(--jp-accent); font-size:10px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.jp-auth-benefits > h2 { margin:5px 0 9px !important; color:#fff !important; font-size:31px; }
.jp-auth-benefits > p { color:rgba(255,255,255,.68) !important; }
.jp-auth-benefits > div { position:relative; z-index:1; display:grid; grid-template-columns:auto 1fr; gap:2px 13px; margin-top:24px; }
.jp-auth-benefits > div > i { grid-row:1/3; width:45px; height:45px; display:grid; place-items:center; border-radius:14px; background:rgba(130,207,46,.16); color:var(--jp-accent); font-size:18px; }
.jp-auth-benefits b { color:#fff; font-size:12px; }
.jp-auth-benefits small { color:rgba(255,255,255,.64); font-size:10px; }
.jp-auth-card { padding:46px; text-align:center; }
.jp-auth-icon { width:72px; height:72px; display:grid; place-items:center; margin:0 auto 15px; border-radius:22px; background:#edf8e4; color:#65a71e; font-size:34px; }
.jp-auth-card > span { color:#65a71e; font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.jp-auth-card > h2 { margin:5px 0 !important; font-size:25px; }
.jp-auth-card > p { margin:0 0 24px !important; font-size:11px; }
.jp-auth-card form { padding:0 !important; border:0 !important; background:transparent !important; box-shadow:none !important; text-align:left; }
.jp-auth-card label { display:block; margin:12px 0 6px; color:#34445c; font-size:10px; font-weight:700; }
.jp-auth-field { position:relative; }
.jp-auth-field i { position:absolute; left:15px; top:50%; transform:translateY(-50%); color:#5e7692; }
.jp-auth-field input { width:100%; height:51px; padding-left:43px !important; }
.jp-auth-card button { width:100%; min-height:50px; margin-top:20px; border:0; border-radius:11px; background:linear-gradient(135deg,#082b68,#0c4698); color:#fff; font-weight:800; box-shadow:0 12px 25px rgba(5,35,89,.2); }
.jp-auth-card button i { margin-left:8px; }
.jp-auth-links { display:flex; justify-content:space-between; gap:15px; margin-top:20px; }
.jp-auth-links a { color:#5e6d81; font-size:10px; font-weight:600; text-decoration:none; }
.jp-auth-links a:hover { color:#5d9d18; }

/* Contact polishing */
.jp-contact-info-card { min-height:112px; padding:21px; }
.jp-contact-info-card strong { white-space:normal; }
.jp-contact-form-card { border-top:4px solid var(--jp-accent); }
.jp-contact-side-card { background:radial-gradient(circle at 80% 12%,rgba(54,149,207,.25),transparent 30%),linear-gradient(145deg,#031c4c,#0a438d); }

/* Benefit strip and footer */
.jp-trust-strip { padding:15px 0; background:linear-gradient(115deg,#031c4c,#073679 65%,#082d67); }
.jp-trust-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.jp-trust-item { display:flex; align-items:center; gap:13px; min-width:0; padding:15px 18px; border:1px solid rgba(255,255,255,.10); border-radius:13px; background:rgba(255,255,255,.035); }
.jp-trust-item > i { width:43px; flex:0 0 43px; color:var(--jp-accent); font-size:25px; text-align:center; }
.jp-trust-item strong, .jp-trust-item small { display:block; }
.jp-trust-item strong { color:#fff; font-size:11px; }
.jp-trust-item small { margin-top:2px; color:rgba(255,255,255,.58); font-size:8px; }
.jp-site-footer { background:#021537; }
.jp-footer-grid { grid-template-columns:1.25fr .75fr .85fr 1.2fr; gap:42px; }
.jp-footer-brand span { width:82px; height:70px; display:grid; place-items:center; padding:5px; border-radius:14px; background:#fff; }
.jp-footer-brand span img { width:100%; height:100%; object-fit:contain; }
.jp-footer-brand strong { max-width:260px; color:#fff; }
.jp-footer-about p { max-width:380px; }
.jp-footer-links a::before { content:"\f105"; margin-right:8px; color:var(--jp-accent); font-family:FontAwesome; }
.jp-social-links { margin-top:18px; }
.jp-footer-bottom { border-top:1px solid rgba(255,255,255,.08); background:#01102b; }

@media (min-width:1200px) {
  .jp-courses-page .jp-shell { width:min(1320px,calc(100% - 40px)); }
}
@media (max-width:1199px) {
  .jp-course-list-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .jp-student-detail-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .jp-student-detail-grid > div:nth-child(4n) { border-right:1px solid #edf1f5; }
  .jp-student-detail-grid > div:nth-child(3n) { border-right:0; }
  .jp-footer-grid { grid-template-columns:1.2fr .8fr .8fr 1.1fr; gap:25px; }
}
@media (max-width:991px) {
  .jp-course-list-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .jp-auth-layout { grid-template-columns:1fr; }
  .jp-auth-benefits { padding:38px; }
  .jp-verification-step-grid { grid-template-columns:1fr; }
  .jp-verification-step-grid > div { border-right:0; border-bottom:1px solid #e7edf4; }
  .jp-verification-step-grid > div:last-child { border-bottom:0; }
  .jp-trust-grid { grid-template-columns:repeat(2,1fr); }
  .jp-footer-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:767px) {
  .jp-shell { width:min(100% - 26px,1240px); }
  .jp-page-hero, .jp-auto-page-hero { padding:44px 0; }
  .jp-course-toolbar { margin-top:-25px; }
  .jp-course-list-grid { grid-template-columns:1fr; }
  .jp-course-card-visual { aspect-ratio:16/7.4; }
  .jp-student-detail-grid { grid-template-columns:repeat(2,minmax(0,1fr)); padding-inline:12px; }
  .jp-student-detail-grid > div:nth-child(3n) { border-right:1px solid #edf1f5; }
  .jp-student-detail-grid > div:nth-child(2n) { border-right:0; }
  .jp-verification-result-head { grid-template-columns:auto 1fr; }
  .jp-status-badge { grid-column:1/-1; justify-self:start; }
  .jp-auth-benefits { display:none; }
  .jp-auth-card { padding:31px 22px; }
  .jp-trust-item { padding:12px; }
  .jp-footer-grid { grid-template-columns:1fr; }
}
@media (max-width:520px) {
  .jp-trust-grid { grid-template-columns:1fr; }
  .jp-student-detail-grid { grid-template-columns:1fr; }
  .jp-student-detail-grid > div { border-right:0 !important; }
  .jp-verify-card { padding:27px 19px; }
  .jp-verification-result-head { grid-template-columns:1fr; text-align:center; }
  .jp-student-photo { margin:auto; }
  .jp-status-badge { justify-self:center; }
  .jp-verification-steps { padding:20px 12px; }
  .jp-auth-links { flex-direction:column; text-align:center; }
}
