/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --tw-navy:            #1c2f45;
  --tw-navy-dark:       #152336;
  --tw-navy-mid:        #243d57;
  --tw-blue:            #1c6ea4;
  --tw-blue-dark:       #155885;
  --tw-sky:             #7ec8e3;
  --tw-light-bg:        #f0f4f8;
  --tw-white:           #ffffff;
  --tw-text:            #222222;
  --tw-text-muted:      #555555;
  --tw-border:          #c4d0dc;
  --tw-border-dark:     #8aa0b6;
  --tw-light-blue:      #dce6ef;

  --tw-sidebar-width:   220px;
  --tw-topbar-height:   60px;

  --tw-font-heading:    "verdana", sans-serif;
  --tw-font-body:       Arial, Helvetica, sans-serif;

  --tw-section-pad-y:   3rem;
  --tw-section-pad-x:   2rem;
  --tw-card-pad:        1.5rem;
  --tw-hero-pad-y:      4rem;
  --tw-hero-pad-x:      4rem;

  --tw-radius:          4px;
  --tw-shadow:          0 2px 8px rgba(28,47,69,0.10);
  --tw-transition:      0.2s ease;
}


/* ═══════════════════════════════════════════════
   BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--tw-font-body);
  font-size: 1rem;
  color: var(--tw-text);
  background: var(--tw-light-bg);
  margin: 0;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--tw-font-heading);
    font-weight: 700;
    font-style: normal;
    line-height: 1.4;
    margin: 0;
}

h1, .h1 { font-size: calc(16px * 1.3 * 1.3 * 1.3 * 1.3 * 1.3); }
h2, .h2 { font-size: calc(16px * 1.3 * 1.3 * 1.3 * 1.3); }
h3, .h3 { font-size: calc(16px * 1.3 * 1.3 * 1.3); }
h4, .h4 { font-size: calc(16px * 1.3 * 1.3) }
h5, .h5 { font-size: calc(16px * 1.3) }
h6, .h6 { font-size: 16px; }

a { color: var(--tw-blue); }
a:hover { color: var(--tw-blue-dark); }

/* ═══════════════════════════════════════════════
   SKIP LINK
═══════════════════════════════════════════════ */
.tw-skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  background: var(--tw-white);
  color: var(--tw-navy);
  font-weight: 700;
  padding: 0.5rem 1rem;
  z-index: 9999;
  text-decoration: none;
  border: 2px solid var(--tw-navy);
  border-radius: var(--tw-radius);
}
.tw-skip-link:focus { top: 0; }

/* ═══════════════════════════════════════════════
   TOPBAR — full width, fixed, above everything
═══════════════════════════════════════════════ */
.tw-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--tw-topbar-height);
  background: var(--tw-white);
  border-bottom: 1px solid var(--tw-border);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  z-index: 300;
  gap: 1rem;
}

.tw-topbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
  text-decoration: none;
}
.tw-topbar-logo img {
  width: auto;
  display: block;
}

/* Hamburger — mobile only */
.tw-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--tw-navy);
  font-size: 1.5rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--tw-radius);
  flex-shrink: 0;
  order: -1;
}
.tw-menu-btn:focus { outline: 3px solid var(--tw-navy); outline-offset: 2px; }

.tw-topbar-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.tw-topbar-links a {
  font-size: 0.875rem;
  white-space: nowrap;
  text-decoration: none;
  color: var(--tw-blue);
}
.tw-topbar-links a:hover { color: var(--tw-blue-dark); text-decoration: underline; }
.tw-topbar-links a:focus { outline: 3px solid var(--tw-navy); outline-offset: 2px; }

/* ═══════════════════════════════════════════════
   SIDEBAR — fixed, below topbar
═══════════════════════════════════════════════ */
.tw-sidebar {
  position: fixed;
  top: var(--tw-topbar-height);
  left: 0;
  bottom: 0;
  width: var(--tw-sidebar-width);
  background: var(--tw-light-blue);
  color: var(--tw-white);
  display: flex;
  flex-direction: column;
  z-index: 200;
  overflow-y: auto;
  overflow-x: hidden;
}

.tw-sidebar-nav {
  flex: 1;
  padding: 0.5rem 0;
}

.tw-nav-link {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  padding: 0.7rem 1.25rem;
  color: var(--tw-navy);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background var(--tw-transition), color var(--tw-transition), border-color var(--tw-transition);
  min-height: 44px;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}
.tw-nav-link:hover {
  background: var(--tw-navy-mid);
  border-right: 6px solid var(--tw-light-blue);
  border-left: 6px solid var(--tw-light-blue);
  color: var(--tw-white);
  text-decoration: none;
}
.tw-nav-link:focus {
  outline: 3px solid var(--tw-sky);
  outline-offset: -3px;
  /*color: var(--tw-white);*/
}
.tw-nav-link[aria-current="page"] {
  background: var(--tw-navy);
  color: var(--tw-white);
  border-right: 6px solid var(--tw-light-blue);
  border-left: 6px solid var(--tw-light-blue);
  font-weight: 700;
}

.tw-nav-icon {
  font-size: 1rem;
  width: 1.2rem;
  text-align: center;
  flex-shrink: 0;
}

/* Tour CTA nav item */
.tw-nav-link.tw-nav-cta {
  background: var(--tw-blue);
  color: var(--tw-white);
  border-left-color: transparent;
  font-weight: 700;
  margin: 0.5rem 0.75rem;
  border-radius: var(--tw-radius);
  padding-left: 1rem;
}
.tw-nav-link.tw-nav-cta:hover { background: var(--tw-blue-dark); }
.tw-nav-link.tw-nav-cta[aria-current="page"] {
  background: var(--tw-blue-dark);
  border-left-color: var(--tw-sky);
}

.tw-sidebar-footer {
  padding: 0.85rem 1.25rem;
  font-size: 0.75rem;
  color: #a0b8cc;
  border-top: 1px solid var(--tw-navy-mid);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   MAIN CONTENT
═══════════════════════════════════════════════ */
.tw-main {
  margin-left: var(--tw-sidebar-width);
  margin-top: var(--tw-topbar-height);
  min-height: calc(100vh - var(--tw-topbar-height));
  display: flex;
  flex-direction: column;
}

.tw-panel { display: none; flex: 1; flex-direction: column; }
.tw-panel.active { display: flex; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.tw-hero {
  background: var(--tw-navy);
  color: var(--tw-white);
  padding: var(--tw-hero-pad-x);
}

.tw-hero-eyebrow {
  font-family: var(--tw-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tw-sky);
  margin-bottom: 2rem;
}

.tw-hero-headline {
  font-family: var(--tw-font-heading);
  color: var(--tw-white);
  margin-bottom: 2rem;
  max-width: 800px;
  font-size: calc(16px * 1.3 * 1.3 * 1.3);
}
.tw-hero-headline:focus {
  outline: 3px solid var(--tw-sky);
  outline-offset: 4px;
}

.tw-hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e0eaf4;
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.tw-hero-text {
  padding: var(--tw-hero-pad-y) var(--tw-hero-pad-x);
}

.tw-hero-image {
  overflow: hidden;
  min-height: 280px;
}

.tw-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════ */
.tw-section {
  padding: var(--tw-section-pad-y) var(--tw-section-pad-x);
}
.tw-section-alt { background: var(--tw-white); }
.tw-section-dark {
  background: var(--tw-navy);
  color: var(--tw-white);
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.tw-btn-primary {
  display: inline-block;
  background: var(--tw-blue);
  color: var(--tw-white);
  font-family: var(--tw-font-body);
  font-weight: 700;
  font-size: 0.925rem;
  padding: 0.6rem 1.35rem;
  border: 2px solid var(--tw-blue);
  border-radius: var(--tw-radius);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--tw-transition), border-color var(--tw-transition);
  white-space: nowrap;
}
.tw-btn-primary:hover  { background: var(--tw-blue-dark); border-color: var(--tw-blue-dark); color: var(--tw-white); text-decoration: none; }
.tw-btn-primary:focus  { outline: 3px solid var(--tw-sky); outline-offset: 2px; }

.tw-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--tw-white);
  font-family: var(--tw-font-body);
  font-weight: 700;
  font-size: 0.925rem;
  padding: 0.6rem 1.35rem;
  border: 2px solid var(--tw-white);
  border-radius: var(--tw-radius);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--tw-transition), color var(--tw-transition);
  white-space: nowrap;
}
.tw-btn-outline:hover  { background: var(--tw-white); color: var(--tw-navy); text-decoration: none; }
.tw-btn-outline:focus  { outline: 3px solid var(--tw-sky); outline-offset: 2px; }

.tw-btn-secondary {
  display: inline-block;
  background: var(--tw-white);
  color: var(--tw-blue);
  font-family: var(--tw-font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.55rem 1.25rem;
  border: 2px solid var(--tw-blue);
  border-radius: var(--tw-radius);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--tw-transition), color var(--tw-transition);
  white-space: nowrap;
}
.tw-btn-secondary:hover { background: var(--tw-blue); color: var(--tw-white); text-decoration: none; }
.tw-btn-secondary:focus { outline: 3px solid var(--tw-navy); outline-offset: 2px; }

/* ═══════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════ */
.tw-card {
  background: var(--tw-white);
  border: 1px solid var(--tw-border);
  border-radius: var(--tw-radius);
  overflow: hidden;
  box-shadow: var(--tw-shadow);
  height: 100%;
}

.tw-card-header {
  background: var(--tw-light-bg);
  border-bottom: 1px solid var(--tw-border);
  border-left: 4px solid var(--tw-blue);
  padding: 0.65rem 1.1rem;
  font-family: var(--tw-font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--tw-navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tw-card-body {
  padding: var(--tw-card-pad);
  line-height: 1.7;
  color: #333;
}
.tw-card-body p:last-child { margin-bottom: 0; }

.tw-feature-item {
  background: var(--tw-white);
  border-top: 4px solid var(--tw-blue);
  border-radius: var(--tw-radius);
  box-shadow: var(--tw-shadow);
  padding: var(--tw-card-pad);
  height: 100%;
}
.tw-feature-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--tw-navy);
  margin-bottom: 0.5rem;
}
.tw-feature-item p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.65;
  margin-bottom: 0;
}

.tw-stat-card {
  background: var(--tw-navy);
  color: var(--tw-white);
  border-radius: var(--tw-radius);
  padding: var(--tw-card-pad);
  text-align: center;
}
.tw-stat-number {
  font-family: var(--tw-font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--tw-sky);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.tw-stat-label {
  font-size: 0.85rem;
  color: #c8d8e8;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════
   IMAGE PLACEHOLDERS
═══════════════════════════════════════════════ */
.tw-img-placeholder {
  background: #dce6ef;
  border: 2px dashed var(--tw-border-dark);
  border-radius: var(--tw-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #6a8aaa;
  font-size: 0.8rem;
  font-family: var(--tw-font-body);
  text-align: center;
  padding: 1rem;
  width: 100%;
}
.tw-img-placeholder i { font-size: 2rem; opacity: 0.5; }
.tw-img-placeholder span { font-weight: 600; font-size: 0.76rem; letter-spacing: 0.02em; }

.tw-img-ratio-hero { aspect-ratio: 21 / 9; }
.tw-img-ratio-16x9 { aspect-ratio: 16 / 9; }
.tw-img-ratio-4x3  { aspect-ratio: 4 / 3; }
.tw-img-ratio-3x2  { aspect-ratio: 3 / 2; }
.tw-img-ratio-1x1  { aspect-ratio: 1 / 1; }

#computer-lab-image {
  background-image: url(https://trainingware.com/images/woman-learning.webp);
  background-size: cover;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.tw-testimonial {
  background: #eef3f8;
  border-left: 5px solid var(--tw-blue);
  border-radius: 0 var(--tw-radius) var(--tw-radius) 0;
  padding: 1.4rem 1.5rem 1.4rem 2.75rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
}
.tw-testimonial::before {
  content: "\201C";
  position: absolute;
  left: 0.75rem;
  top: 0.3rem;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--tw-blue);
  font-family: Georgia, "Times New Roman", serif;
}
.tw-testimonial cite {
  display: block;
  margin-top: 0.75rem;
  font-style: italic;
  font-size: 0.85rem;
  color: #3a4a4a;
}

/* ═══════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════ */
.tw-cta-block {
  background: var(--tw-blue);
  color: var(--tw-white);
  padding: 3rem var(--tw-hero-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}
.tw-cta-block p { margin: 0; font-size: 1rem; line-height: 1.5; color: var(--tw-white); }

/* ═══════════════════════════════════════════════
   HEADINGS
═══════════════════════════════════════════════ */
.tw-section-heading {
  font-family: var(--tw-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--tw-navy);
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--tw-sky);
}

.tw-panel-heading:focus {
  outline: 3px solid var(--tw-blue);
  outline-offset: 3px;
}

.tw-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444;
}

/* ═══════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════ */
.tw-price-callout {
  background: #eef3f8;
  border-left: 5px solid var(--tw-blue);
  border-radius: 0 var(--tw-radius) var(--tw-radius) 0;
  padding: 1.1rem 1.25rem;
}
.tw-price-amount {
  font-family: var(--tw-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tw-navy);
  margin-bottom: 0.25rem;
}
.tw-price-detail { font-size: 0.9rem; color: #444; margin-bottom: 0.15rem; }
.tw-price-detail:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.tw-faq-item {
  border: 1px solid var(--tw-border);
  border-radius: var(--tw-radius);
  margin-bottom: 0.5rem;
  background: var(--tw-white);
  overflow: hidden;
}
.tw-faq-item summary {
  padding: 0.8rem 1.1rem;
  font-family: var(--tw-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--tw-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--tw-light-bg);
  user-select: none;
  gap: 1rem;
  min-height: 44px;
}
.tw-faq-item summary::-webkit-details-marker { display: none; }
.tw-faq-item summary::after { content: "+"; font-size: 1.2rem; font-weight: 300; color: var(--tw-blue); flex-shrink: 0; }
.tw-faq-item[open] summary::after { content: "\2212"; }
.tw-faq-item summary:hover { background: #e2edf5; }
.tw-faq-item summary:focus { outline: 3px solid var(--tw-blue); outline-offset: -3px; }
.tw-faq-body { padding: 1rem 1.25rem; font-size: 0.92rem; color: #333; line-height: 1.7; border-top: 1px solid var(--tw-border); }

/* ═══════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════ */
.tw-form .tw-field { margin-bottom: 1rem; }
.tw-form label { display: block; font-weight: 700; color: var(--tw-navy); margin-bottom: 0.3rem; font-size: 0.9rem; }
.tw-form .tw-req { color: var(--tw-blue); font-weight: 700; font-size: 0.8rem; }
.tw-form .tw-opt { color: var(--tw-text-muted); font-weight: 400; font-size: 0.8rem; }
.tw-form input,
.tw-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  font-family: var(--tw-font-body);
  border: 1px solid var(--tw-border-dark);
  border-radius: var(--tw-radius);
  color: var(--tw-text);
  background: var(--tw-white);
}
.tw-form input:focus,
.tw-form textarea:focus {
  outline: 3px solid var(--tw-blue);
  outline-offset: 1px;
  border-color: var(--tw-blue);
}
.tw-form-status { margin-top: 0.75rem; font-size: 0.9rem; color: var(--tw-navy); min-height: 1.2em; }

/* ═══════════════════════════════════════════════
   TABLES
═══════════════════════════════════════════════ */
.tw-table { 
  width: 100%; 
  border-collapse: collapse; 
  font-size: 0.9rem; 
  overflow: hidden;
}
.tw-table th {
  background: var(--tw-light-bg);
  border: 1px solid var(--tw-border);
  padding: 0.55rem 0.85rem;
  text-align: left;
  font-family: var(--tw-font-heading);
  font-weight: 700;
  color: var(--tw-navy);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.tw-table td { border: 1px solid var(--tw-border); padding: 0.5rem 0.85rem; color: #333; vertical-align: top; }
.tw-table tr:nth-child(even) td { background: #f8fafc; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.tw-footer {
  background: var(--tw-navy);
  color: #a0b8cc;
  padding: 0.85rem var(--tw-section-pad-x);
  font-size: 0.78rem;
}
.tw-footer a { color: #c8d8e8; }

.tw-footer-outside { margin-left: var(--tw-sidebar-width); }

@media (max-width: 768px) {
  .tw-footer-outside { margin-left: 0; }
}

/* ═══════════════════════════════════════════════
   MOBILE OVERLAY
═══════════════════════════════════════════════ */
.tw-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 150;
}
.tw-sidebar-overlay.active { display: block; }

/* ═══════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════ */
.tw-accent-text { color: var(--tw-blue); }
.tw-sky-text    { color: var(--tw-sky); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .tw-sidebar {
    transform: translateX(-100%);
    transition: transform var(--tw-transition);
  }
  .tw-sidebar.open { transform: translateX(0); }
  .tw-main { margin-left: 0; }
  .tw-menu-btn { display: flex; }
  .tw-topbar-links a:not(.tw-btn-primary) { display: none; }
  .tw-section { padding: 1.75rem 1rem; }
  .tw-hero { padding: 1.75rem 1rem; }
  .tw-hero-headline { font-size: 1.4rem; }
  .tw-cta-block { flex-direction: column; align-items: flex-start; padding: 1.25rem 1rem; }

  .tw-topbar {
    padding-left: 0;
  }
  .tw-topbar-logo img {
    height: 24px;
    margin-top: 3px;
    margin-left: -10px;
  }
  .tw-topbar-links a {
    padding: .35rem .85rem;
  }

}

@media (min-width: 769px) and (max-width: 1024px) {
  :root { --tw-sidebar-width: 190px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}


/* ═══════════════════════════════════════════════
   MODAL
═══════════════════════════════════════════════ */
#dialog_box_bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
  background-color: rgba( 0, 0, 0, .6 );
  display: none;
}
#dialog_box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.2);
  border-style: solid;
  padding: 30px 10px;
  width: 500px;
  text-align: center;
  z-index:10;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px 0px;
}
@media only screen and (max-width: 568px) {
  #dialog_box {
    width: 350px !important;
  }
}
@media only screen and (max-width: 350px) {
  #dialog_box  {
    width: 320px;
  }
}
.lg-fa {
  font-size: 200px !important;
}
.date {
  display: none;
}
.form_error {
  color: red;
  display: none;
}