:root {
  --allen-blue: #004aad;
  --allen-yellow: #ffcc00;
  --allen-dark: #0c1631;
  --bg-light: #f5f7fb;
  --text-main: #1c1f2a;
  --text-muted: #5f6473;
  --border-soft: #e1e5f0;
  --radius-lg: 14px;
  --radius-md: 10px;
  --shadow-soft: 0 14px 40px rgba(12, 22, 49, 0.12);
  --radius: 20px;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --shadow: 0 14px 40px rgba(12, 22, 49, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  color: var(--text-main);
  background: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.page-wrapper {
  max-width: 100%;
  margin: 0 auto;
  /*padding: 16px 16px 40px;*/

  margin-top: 80px;             /* 🔶 SAME as header height */
}

.container {
	max-width: 1120px;
	padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
	margin-bottom: 20px;
}

/*.page-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 16px 40px;
  margin-top: 80px;
}

.container {
  max-width: 1120px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
}*/

/* FIXED HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: solid 2px #f5f7fb;
}

.header-inner {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

section {
  scroll-margin-top: 90px;
  margin-bottom: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--allen-dark);
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--allen-blue), var(--allen-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.header-contact {
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
  padding-right: 10px;
}

.header-contact strong {
  display: block;
  color: var(--allen-dark);
  font-size: 14px;
}

/* NAVBAR - DESKTOP */
.navbar {
  display: flex;
  gap: 1px;
  align-items: center;
}

.navbar .nav-link {
  padding: 8px 8px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--allen-dark);
  background: transparent;
  border: 0px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}

.navbar .nav-link:hover {
  background: rgba(0, 74, 173, 0.08);
  color: var(--allen-blue);
}

.navbar .nav-link.active {
  background: linear-gradient(135deg, var(--allen-blue), var(--allen-dark));
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 74, 173, 0.35);
}

.navbar .header-logo {
  display: none;
}

/* HAMBURGER - ANIMATED */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
  z-index: 1000;
}

.hamburger:hover {
  background: rgba(0, 74, 173, 0.08);
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--allen-blue);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* DROPDOWN - DESKTOP */
.dropdown {
  position: relative;
}

.dropdown > .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
}

.dropdown-menu a:hover {
  background: var(--bg-light);
}

.dropdown-sub .dropdown-menu {
  top: 0;
  left: 100%;
}

.dropdown-sub:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* HERO SECTION */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 26px 20px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, #f0f6ff, #ffffff);
  box-shadow: var(--shadow-soft);
  margin-bottom: 26px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 74, 173, 0.06);
  color: var(--allen-blue);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--allen-dark);
}

.hero-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 18px;
}

.hero-usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 12px;
}

.hero-usp-chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.hero-usp-chip span {
  color: var(--allen-blue);
  font-size: 16px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--allen-blue), var(--allen-dark));
  color: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(0, 74, 173, 0.3);
}

.btn-outline {
  background: #ffffff;
  color: var(--allen-blue);
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid rgba(0, 74, 173, 0.4);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-outline small {
  font-weight: 500;
  color: var(--text-muted);
}

.hero-note {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  padding: 0;
}

.hero-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 26px rgba(12, 22, 49, 0.12);
}

.hero-student {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.student-avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

.hero-student h3 {
  font-size: 14px;
  margin-bottom: 2px;
}

.hero-student p {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-progress {
  margin-top: 10px;
  border-radius: 10px;
  padding: 8px 10px;
  background: #f5f7ff;
  font-size: 11px;
  color: var(--text-muted);
}

.hero-progress-bar {
  height: 6px;
  border-radius: 999px;
  background: #dde3ff;
  overflow: hidden;
  margin-top: 6px;
}

.hero-progress-bar span {
  display: block;
  height: 100%;
  width: 76%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--allen-blue), var(--allen-yellow));
}

.hero-pill {
  position: absolute;
  right: 20px;
  bottom: 6px;
  background: #0c1631;
  color: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.hero-pill span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: center;
}

/* HERO CAROUSEL */
.carousel {
  margin-top: 18px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: #0c1631;
  color: #ffffff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  font-size: 13px;
}

.carousel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

.carousel-track {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  flex: 1;
}

.carousel-slide {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* BANNER CAROUSEL (OWL) */
.home-banner .owl-dots {
  display: inline-block;
  width: 100%;
  margin: 0;
  text-align: center;
}

.home-banner .owl-dots .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: #f2f2f2;
}

.home-banner .owl-dots .owl-dot.active {
  background-color: var(--allen-blue);
}

.home-banner .item {
  border-radius: 10px;
  padding: 4px;
}

.home-banner .item img {
  border-radius: 10px;
}

/* GENERIC SECTION STYLES */
.section-heading {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--allen-dark);
}

.section-subtext {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.section-heading2 {
  color: white;
  font-size: 22px;
  margin-bottom: 35px;
  text-align: center;
}

.section-heading2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #ffffff;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(1, 1.3fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.illustration-box {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px dashed rgba(12, 22, 49, 0.12);
  font-size: 13px;
  color: var(--text-muted);
}

.illustration-title {
  font-weight: 600;
  margin-bottom: 8px;
}

/* HIGHLIGHT BADGES */
.highlight-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.highlight-badge {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--allen-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.highlight-badge span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(0, 74, 173, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--allen-blue);
}

/* BENEFIT GRID */
.card-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  padding: 12px 12px 10px;
  font-size: 13px;
  color: var(--text-main);
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.benefit-icon {
  width: 90px;
  height: 50px;
  border-radius: 8px;
  background: rgba(0, 74, 173, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--allen-blue);
}

.benefit-title {
  font-weight: 600;
  font-size: 15px;
}

/* ELIGIBILITY CHECKLIST */
.checklist-box {
  background: #0c1631;
  color: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 16px;
  display: grid;
  grid-template-columns: minmax(1, 1.2fr) minmax(0, 1fr);
  align-items: center;
}

.checklist-heading {
  font-size: 18px;
  margin-bottom: 6px;
}

.checklist-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 6px;
}

.checklist-items {
  list-style: inside;
  font-size: 18px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  margin: 0;
}

.checklist-items li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.checklist-items li span {
  margin-top: 2px;
  color: var(--allen-yellow);
}

/* LOGO GRID */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  font-size: 12px;
}

.logo-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  padding: 8px 10px;
  background: #f9fafc;
  color: #555b68;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
}

.logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(12, 22, 49, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* SUPPORT CARDS */
.support-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.support-card {
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 10px 10px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 13px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.support-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 25px;
}

.support-label {
  font-weight: 600;
  color: var(--allen-dark);
  font-size: 16px;
}

.support-icon {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: rgba(0, 74, 173, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--allen-blue);
}

.support-section {
  background: linear-gradient(135deg, var(--allen-blue) 0%, #003366 100%);
  color: white;
  padding: 50px 20px;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 60px;
  box-shadow: var(--shadow);
}

/* FAQ ACCORDION */
.faq-section {
  background: var(--bg-light);
  border-radius: 18px;
  padding: 18px 18px 12px;
  border: 1px solid var(--border-soft);
}

.faq-list {
  margin-top: 10px;
}

.faq-item {
  border-bottom: 1px solid #dde2ef;
}

.faq-button {
  width: 100%;
  text-align: left;
  padding: 10px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--allen-dark);
}

.faq-button span.icon {
  font-size: 16px;
  color: var(--text-muted);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-size: 13px;
  color: var(--text-muted);
  padding-right: 16px;
}

.faq-content-inner {
  padding-bottom: 10px;
  font-size: 16px;
}

.faq-item.active .faq-content {
  max-height: 200px;
}

.faq-item.active .faq-button span.icon {
  transform: rotate(90deg);
}

/* REGULAR VS NIOS COMPARISON */
.regular-nios-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: flex-start;
}

.regular-nios-col {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(12, 22, 49, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.regular-nios-col-header {
  padding: 12px 14px 10px;
  border-bottom: 1px solid var(--border-soft);
  background: #f5f7fb;
}

.regular-nios-col-header.regular {
  border-top: 3px solid #c0c4d6;
}

.regular-nios-col-header.nios {
  border-top: 3px solid var(--allen-blue);
  background: linear-gradient(135deg, #004aad, #0c1631);
  color: #ffffff;
}

.regular-nios-col-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.regular-nios-col-tag {
  font-size: 12px;
  color: var(--text-muted);
}

.regular-nios-col-header.nios .regular-nios-col-tag {
  color: rgba(255, 255, 255, 0.8);
}

.regular-nios-list {
  list-style: none;
  padding: 10px 14px 12px;
  display: grid;
  gap: 10px;
  font-size: 13px;
}

.regular-nios-list li {
  padding: 8px 10px;
  border-radius: 10px;
  background: #f9fafc;
}

.regular-nios-col.nios .regular-nios-list li {
  background: #f3f6ff;
}

.regular-nios-point-title {
  display: block;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--allen-dark);
}

.regular-nios-point-text {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

/* TABLE COMPARISON */
.comparison-container {
  width: 100%;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
}

.header-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  padding: 15px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

th, td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: left;
  font-size: 0.95rem;
}

thead th {
  background-color: #d1e3ff;
  color: #004085;
  font-weight: bold;
}

tbody tr:nth-child(even) {
  background-color: #f7f7f7;
}

tbody tr:hover {
  background-color: #eef;
}

tbody tr td:last-child {
  font-weight: 600;
}

/* FINAL CTA */
.final-cta {
  margin-top: 26px;
  border-radius: 18px;
  padding: 18px 18px 16px;
  background: linear-gradient(135deg, #004aad, #0c1631);
  color: #ffffff;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 16px;
  align-items: center;
}

.final-cta h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

.final-cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.final-cta .btn-primary {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
  background: #ffcc00;
  color: #0c1631;
}

.final-cta-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
}

footer {
  margin-top: 22px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

/* BREADCRUMBS */
.breadcrumbs {
  padding: 40px 40px 0 40px;
  border-bottom: 1px solid #eee;
  background: linear-gradient(135deg, #004aad, #0c1631);
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.breadcrumbs-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.breadcrumbs h2 {
  color: white;
  text-align: center;
  font-size: 30px;
  margin: 0;
}

/* POPUP */
.popup-trigger {
  display: block;
  margin: 20px auto;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(255,107,107,0.4);
  max-width: 300px;
  width: 100%;
}

.popup-trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,107,107,0.6);
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  background: white;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.popup-overlay.active .popup-content {
  transform: scale(1);
}

.popup-header {
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-title {
  font-size: clamp(18px, 4vw, 22px);
  margin: 0;
}

.close-btn {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  background: rgba(255,255,255,0.4);
  transform: rotate(90deg) scale(1.1);
}

.popup-iframe {
  width: 100%;
  height: clamp(400px, 60vh, 600px);
  border: none;
}

/* ANIMATIONS */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-table tbody tr:hover {
    background-color: transparent;
}
.custom-table tbody tr:nth-child(even) {
  background-color: #f7f7f7;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
.navbar .nav-link {
  padding: 8px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--allen-dark);
  background: transparent;
  border: 0px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
}

/* Tablet & Mobile (=900px) */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 24px 40px;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.15);
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 999;
  }

  .navbar .header-logo {
    display: inline-block;
    padding-bottom: 20px;
  }

  .navbar.open {
    left: 0;
  }

  header.open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
  }

  .navbar .nav-link {
    display: block;
    width: 100%;
    padding: 16px 5px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    border: none;
    background: transparent;
    transition: all 0.25s ease;
  }

  .navbar .nav-link:hover {
    background: rgba(0, 74, 173, 0.1);
    color: var(--allen-blue);
    transform: translateX(8px);
  }

  .navbar .nav-link.active {
    background: linear-gradient(135deg, var(--allen-blue), var(--allen-dark));
    color: #fff;
  }

  .dropdown > .nav-link::after {
    content: '>';
    font-size: 12px;
    transition: transform 0.3s ease; font-weight: bold;
    color: var(--text-muted);
    margin-left: 10px;
  }

  .dropdown.open > .nav-link::after {
    transform: rotate(90deg);
  }

  .dropdown-menu {
    position: static;
    background: #f8fbff;
    border-radius: 12px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-top: 8px;
    padding: 8px 0;
    border: 1px solid var(--border-soft);
  }

  .dropdown.open > .dropdown-menu {
    display: block;
    animation: dropdownFade 0.3s ease forwards;
  }

  .dropdown-menu a {
    display: block;
    padding: 12px 15px 10px 20px;
    font-size: 14px;
    color: var(--text-main);
    border-radius: 8px;
    margin: 0 12px;
  }

  .dropdown-menu a:hover {
    background: rgba(0, 74, 173, 0.12);
    color: var(--allen-blue);
  }

  .dropdown-sub .dropdown-menu a {
    padding-left: 10px;
  }

  .hero,
  .two-column,
  .checklist-box,
  .final-cta,
  .regular-nios-compare {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 18px 16px;
  }

  .hero-visual {
    order: -1;
  }

  .card-grid-8,
  .logo-grid,
  .support-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta-actions {
    align-items: flex-start;
  }

  .dropdown-sub:hover > .dropdown-menu {
    display: block;
    border: none;
    border-radius: 0;
    padding-top: 0;
  }

}

/* Small Mobile (=600px) */
@media (max-width: 600px) {
  .page-wrapper {
    padding: 12px 12px 28px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .carousel {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 14px;
  }

  .checklist-box {
    padding: 16px;
  }

  .checklist-items {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 0 0 0;
  }

  .card-grid-8,
  .logo-grid,
  .support-cards {
    grid-template-columns: 1fr;
  }

  .comparison-container {
    padding: 0;
    box-shadow: none;
  }

  table, thead, tbody, th, td, tr {
    display: block;
  }

  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  tr {
    border: 1px solid #ccc;
    margin-bottom: 15px;
    border-radius: 8px;
  }

  td {
    border: none;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 135px;
    text-align: left;
    font-size: 0.9rem;
  }

  td:last-child {
    border-bottom: 0;
  }

  td:before {
    position: absolute;
    left: 12px;
    width: 120px;
    padding-right: 10px;
    /*white-space: nowrap;*/
    text-align: left;
    font-weight: bold;
    color: #555;
  }

  tr td:nth-child(odd):before {
    content: "Regular Board:";
    color: #004085;
  }

  tr td:nth-child(even):before {
    content: "NIOS Advantage:";
    color: #28a745;
  }

  tbody tr:nth-child(even) {
    background-color: transparent;
  }

  tbody tr:hover {
    background-color: #eef;
  }

  .popup-content {
    width: 100%;
    height: 90vh;
    border-radius: 15px;
  }

  .popup-iframe {
    height: 60vh;
  }

  .popup-trigger {
    padding: 12px 25px;
    font-size: 15px;
    max-width: 280px;
  }

  /*--------custom table css-------*/

  .custom-table {
    width: 100%;
    overflow-x: auto;
  }

  .custom-table table {
    display: table;
    min-width: 660px;
  }
  .custom-table thead, .custom-table tbody {
    display: table-header-group;
  }
  .custom-table tr {
    margin: 0;
    border: 0;
    display: table-row;
    border-radius: 0;
  }
  .custom-table thead tr {
    position: inherit;
  }
  
  .custom-table thead tr th {
    display: table-cell;
    border: 1px solid #ccc;
  }
  .custom-table td {
    position: inherit;
    border: 1px solid #ccc;
    display: table-cell;
    padding: 10px;
  }
  .custom-table tr td:before {
    display: none;
  }
	
  

	
  /*--------custom table css end-------*/


}

@media (max-width: 480px) {
  .popup-header {
    padding: 15px;
  }

  .popup-trigger {
    padding: 12px 20px;
    font-size: 14px;
  }
  td {
    padding-left: 97px;
    min-height: 66px;
  }

  td:before {
    width: 80px;
  }
}

@media (max-width: 360px) {
  .popup-content {
    border-radius: 12px;
  }
}

/* Ensure desktop dropdown works */
@media (min-width: 901px) {
  .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown > .nav-link::after {
    content: none;
  }
}

ul.circle {
  list-style-type: circle;
}

.circle li {
  margin-bottom: 5px;
  margin-left: 30px;
}

.mt-5 {
  margin-top: 50px;
}

 .data-table-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }


.btn-bulletin {
            display: inline-flex;
            align-items: center;
            background-color: #e2e8f0;
            color: #475569;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.875rem;
            font-weight: 600;
            transition: all 0.2s;
        }

        .btn-bulletin:hover {
            background-color: #0052a3;
            color: white;
        }

 /* REGULAR VS NIOS COMPARISON */
    .regular-nios-compare {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      align-items: flex-start;
    }

    .regular-nios-col {
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      background: #ffffff;
      box-shadow: 0 10px 26px rgba(12, 22, 49, 0.06);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .regular-nios-col-header {
      padding: 12px 14px 10px;
      border-bottom: 1px solid var(--border-soft);
      background: #f5f7fb;
    }

    .regular-nios-col-header.regular {
      border-top: 3px solid #c0c4d6;
    }

    .regular-nios-col-header.nios {
      border-top: 3px solid var(--allen-blue);
      background: linear-gradient(135deg, #004aad, #0c1631);
      color: #ffffff;
    }

    .regular-nios-col-title {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .regular-nios-col-tag {
      font-size: 12px;
      color: var(--text-muted);
    }

    .regular-nios-col-header.nios .regular-nios-col-tag {
      color: rgba(255, 255, 255, 0.8);
    }

    .regular-nios-list {
      list-style: none;
      padding: 10px 14px 12px;
      display: grid;
      gap: 10px;
      font-size: 13px;
    }

    .regular-nios-list li {
      padding: 8px 10px;
      border-radius: 10px;
      background: #f9fafc;
    }

    .regular-nios-col.nios .regular-nios-list li {
      background: #f3f6ff;
    }

    .regular-nios-point-title {
      display: block;
      font-weight: 600;
      margin-bottom: 3px;
      color: var(--allen-dark);
    }

    .regular-nios-point-text {
      display: block;
      font-size: 12px;
      color: var(--text-muted);
    }

    @media (max-width: 900px) {
      .regular-nios-compare {
        grid-template-columns: minmax(0, 1fr);
      }
    }
		.mb-20 {margin-bottom: 20px;}	
		
		
/*------------------ Slider with loader --------------*/		
		
	.slider-container {
		width: 100%;
		max-width: 1080px;
		margin: 0 auto;
		position: relative;
		/*height: 50vh;
		min-height: 250px;*/
		background: none!important;
		border-radius:none
	}
	.owl-carousel .owl-item img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}
	/* Loader */
	.loader {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 4px;
		background: rgba(0,0,0,0.3);
		z-index: 20;
	}
	.loader-progress {
		height: 100%;
		background: linear-gradient(90deg, #ffaf02, #ffd800);
		width: 0%;
		transition: width 0.1s linear; /* Smooth but responsive */
		box-shadow: 0 0 10px rgba(0,74,173,0.5);
	}

	/* Responsive */
		@media (max-width: 768px) {
		.slider-container {
			/*height: 50vh;
			min-height: 220px;*/
		}
			#slider-container {
				margin-bottom: 5px;
			}
	}

		@media (max-width: 480px) {
		.slider-container {
			/*height: 15vh;
			min-height: 180px;*/
		}
	}

		@media (max-width: 360px) {
		.slider-container {
			/*height: 15vh;
			min-height: 170px;*/
		}
	}

.banner {
            width: 100%;
            /*max-width: 900px;*/
            background-color: #0b2b5b;
            color: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .banner h2 {
            font-size: 32px;
            font-weight: 600;
            margin: 0 0 16px 0;
        }

        .banner p {
            font-size: 18px;
            line-height: 1.6;
            max-width: 680px;
            margin: 0 auto 40px auto;
            opacity: 0.95;
        }

        .buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            min-width: 180px;
        }

        .btn-outline {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background-color: white;
            color: #0b2b5b;
        }

        .btn-solid {
            background-color: #4e80ee;
            color: white;
            border: 2px solid #4e80ee;
        }

        .btn-solid:hover {
            background-color: #3a6bd9;
            border-color: #3a6bd9;
            transform: translateY(-2px);
        }

        .icon {
            position: absolute;
            right: 30px;
            bottom: 30px;
            width: 100px;
            height: 100px;
            opacity: 0.2;
        }

        .icon svg {
            width: 100%;
            height: 100%;
            fill: white;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .banner {
                padding: 32px 20px;
            }

            .banner h2 {
                font-size: 28px;
            }

            .banner p {
                font-size: 16px;
            }

            .buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .icon {
                width: 80px;
                height: 80px;
                right: 20px;
                bottom: 20px;
            }
        }

        @media (max-width: 480px) {
            .banner h2 {
                font-size: 24px;
            }

            .banner p {
                font-size: 15px;
            }

            .icon {
                width: 70px;
                height: 70px;
            }
        }


