:root {
  --blue: #155EEF;
  --blue-900: #082567;
  --blue-800: #0F3E99;
  --blue-100: #E8F1FF;
  --cyan: #06B6D4;
  --cyan-100: #E6FAFF;
  --indigo: #4F46E5;
  --green: #10B981;
  --orange: #FF7A1A;
  --orange-600: #F05A12;
  --orange-100: #FFF0E3;
  --text: #031225;
  --muted: #132B4A;
  --line: #CFE0F8;
  --white: #FFFFFF;
  --soft: #F3F8FF;
  --shadow: 0 20px 60px rgba(21, 94, 239, 0.16);
  --shadow-strong: 0 32px 90px rgba(21, 94, 239, 0.26);
  --radius: 8px;
  --font-head: "Poppins", Arial, sans-serif;
  --font-body: "Poppins", Arial, sans-serif;
  --font-accent: "Poppins", Arial, sans-serif;
  --banner-image: url("../images/education1.jpg");
}

.home-page { --banner-image: url("../images/education1.jpg"); }
.roadmap-page { --banner-image: url("../images/careers7.jpg"); }
.about-page { --banner-image: url("../images/education2.jpg"); }
.skill-page { --banner-image: url("../images/youth-dev1.jpg"); }
.courses-page { --banner-image: url("../images/education4.jpg"); }
.demo-page { --banner-image: url("../images/careers4.jpg"); }
.ai-page { --banner-image: url("../images/careers6.jpg"); }
.free-page { --banner-image: url("../images/education6.jpg"); }
.updates-page { --banner-image: url("../images/careers5.jpg"); }
.contact-page { --banner-image: url("../images/education7.jpg"); }
.enroll-page { --banner-image: url("../images/youth-dev4.jpg"); }

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

.container {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
}

.section-pad {
  padding: 72px 0;
}

.top-strip {
  display: none;
  background: linear-gradient(90deg, var(--blue-900), var(--blue-800), var(--blue), var(--cyan));
  color: var(--white);
  font-size: 0.88rem;
  border-bottom: 0;
}

.top-strip__inner,
.top-strip__contacts,
.social-links {
  display: flex;
  align-items: center;
}

.top-strip__inner {
  width: 100%;
  max-width: none;
  padding: 0 6px 0 5px;
  justify-content: space-between;
  gap: 22px;
  min-height: 44px;
}

.top-strip__contacts {
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.top-strip__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 2px;
  color: var(--white);
  font-size: 0.86rem;
}

.top-strip__contacts a::before {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  line-height: 1;
  flex: 0 0 22px;
}

.top-strip__contacts a[href^="tel:"]::before {
  content: "☎";
}

.top-strip__contacts a[href^="mailto:"]::before {
  content: "✉";
}

.top-strip__contacts a[href*="wa.me"]::before {
  content: "W";
  font-weight: 900;
}

.social-links {
  gap: 10px;
  flex-shrink: 0;
}

.social {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: transform 0.25s ease, background 0.25s ease;
}

.social:hover {
  transform: translateY(-2px);
  background: var(--blue-100);
}

.social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social--instagram { color: #E4405F; }
.social--youtube { color: #FF0000; }
.social--facebook { color: #1877F2; }
.social--linkedin { color: #0A66C2; }

.site-header {
   position: sticky;
   top: 0;
   z-index: 50;
   background: var(--white);
   backdrop-filter: blur(18px);
   border-bottom: 1px solid var(--line);
   transition: box-shadow 0.25s ease, background 0.25s ease;
   box-shadow: 0 4px 12px rgba(8, 37, 103, 0.08);
 }

 .site-header.scrolled {
   background: var(--white);
   box-shadow: 0 6px 18px rgba(8, 37, 103, 0.12);
 }

.nav {
   width: min(1240px, calc(100% - 72px));
   max-width: none;
   margin: 0 auto;
   padding: 0 22px;
   min-height: 78px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 26px;
 }

.brand {
  flex: 0 0 226px;
  display: inline-flex;
  align-items: center;
  min-width: 226px;
}

.brand img {
  width: 190px;
  max-width: 28vw;
  margin-left: 0;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  padding: 6px 8px;
  box-shadow: 0 12px 26px rgba(4, 20, 58, 0.16);
}

.nav-links {
   flex: 1;
   min-width: 0;
   display: flex;
   align-items: center;
   justify-content: flex-end;
   flex-wrap: wrap;
   gap: 8px;
   font-family: var(--font-head);
   font-weight: 600;
   font-size: .90rem !important;
 }

 .nav-links a {
   color: var(--blue-900);
   position: relative;
   white-space: nowrap;
   padding: 8px 8px;
   border-radius: 999px;
   transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
 }

 .nav-links a:visited {
   color: var(--blue-900);
 }

 .nav-links a:hover {
   color: var(--blue);
   background: var(--blue-100);
 }

 .nav-links a.active,
 .nav-links a.active-page {
   color: var(--blue-900) !important;
   background: var(--white);
   box-shadow: 0 6px 18px rgba(4, 20, 58, 0.12);
 }

 .nav-links a::after {
   content: "";
   position: absolute;
   left: 0;
   bottom: -8px;
   width: 0;
   height: 3px;
   border-radius: 99px;
   background: var(--cyan);
   transition: width 0.25s ease;
 }

 .nav-links a:hover::after,
 .nav-links a.active::after {
   width: 100%;
 }

.nav-register {
   padding: 9px 18px;
   color: var(--blue-900) !important;
   background: linear-gradient(135deg, var(--white), #F0F9FF);
   border-radius: 6px;
   box-shadow: 0 6px 18px rgba(4, 20, 58, 0.12);
 }

 .nav-register:hover {
   color: var(--white) !important;
   background: linear-gradient(135deg, var(--orange), var(--orange-600));
   box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
 }

 .nav-register::after {
   display: none;
 }


 .nav-register::after {
   display: none;
 }

.menu-toggle {
   display: none;
   width: 44px;
   height: 44px;
   border: 1px solid var(--line);
   border-radius: var(--radius);
   background: var(--white);
   padding: 10px;
   box-shadow: 0 2px 8px rgba(4, 20, 58, 0.08);
 }

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--blue);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: calc(92vh - 100px);
  display: flex;
  align-items: flex-start;
  padding-top: 58px;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(255,255,255,0.98) 0%, rgba(239,246,255,0.96) 45%, rgba(224,247,255,0.88) 100%),
    radial-gradient(circle at 82% 28%, rgba(6,182,212,0.16), transparent 24%),
    radial-gradient(circle at 64% 72%, rgba(21,94,239,0.14), transparent 31%),
    radial-gradient(circle at 18% 18%, rgba(125,211,252,0.12), transparent 24%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 4% -8% auto -8%;
  z-index: 0;
  height: 72%;
  background:
    linear-gradient(90deg, rgba(219,234,254,0.66), rgba(186,230,253,0.42), rgba(147,197,253,0.30)),
    radial-gradient(ellipse at 42% 35%, rgba(255,255,255,0.58), transparent 62%);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 420' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0,108 C180,36 300,184 480,112 C650,44 790,34 960,116 C1120,194 1260,118 1440,58 L1440,420 L0,420 Z'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  filter: blur(12px);
  opacity: 0.74;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 24% -8% auto -8%;
  height: 62%;
  background:
    linear-gradient(90deg, rgba(239,246,255,0.12), rgba(125,211,252,0.30), rgba(191,219,254,0.34), rgba(59,130,246,0.14)),
    radial-gradient(ellipse at 54% 48%, rgba(255,255,255,0.38), transparent 64%);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 360' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0,122 C150,206 292,58 454,132 C610,204 732,226 900,144 C1080,54 1238,108 1440,174 L1440,360 L0,360 Z'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  filter: blur(18px);
  opacity: 0.68;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.42;
  animation: drift 7s ease-in-out infinite;
}

.hero__glow--one {
  width: 280px;
  height: 280px;
  background: #60A5FA;
  left: -90px;
  top: 80px;
}

.hero__glow--two {
  width: 220px;
  height: 220px;
  background: #67E8F9;
  right: 4%;
  bottom: 7%;
  animation-delay: 1s;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 54px;
  align-items: start;
  padding-left: 18px;
  padding-right: 18px;
}

.hero__copy {
   display: flex;
   min-height: 280px;
   flex-direction: column;
   justify-content: flex-start;
   gap: 4px;
   padding: 8px 0 12px;
 }

.hero__visual {
  margin-top: 18px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 11px;
  border: 1px solid rgba(21, 94, 239, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--blue);
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-course-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 14px;
}

.hero-course-strip span {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: #FFFFFF;
  border: 1px solid rgba(21, 94, 239, 0.16);
  box-shadow: 0 8px 20px rgba(21, 94, 239, 0.08);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-course-strip span:nth-child(2n) {
  color: var(--orange-600);
  border-color: rgba(249, 115, 22, 0.2);
  background: #FFF7ED;
}

.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(249, 115, 22, 0.14);
}

.hero .eyebrow {
  align-self: flex-start;
  max-width: max-content;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(21, 94, 239, 0.08);
}

h1,
h2,
h3 {
  font-family: var(--font-head);
  margin: 0;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.012em;
}

h1 {
   margin-top: 20px;
   font-size: clamp(1.6rem, 2.8vw, 2.5rem);
   line-height: 1.05;
   color: var(--blue);
   text-transform: uppercase;
 }

 h2 {
  font-size: clamp(1.7rem, 2.45vw, 2.4rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  line-height: 1.62;
  font-size: 1.04rem;
  font-weight: 600;
}

.tagline {
   margin: 4px 0 0;
   font-family: var(--font-head);
   font-size: clamp(1.15rem, 2vw, 1.8rem);
   font-weight: 800;
   color: var(--text);
 }

 .hero .tagline {
   margin-top: 0;
 }

.tagline::after {
  content: "";
  display: inline-block;
  width: 64px;
  height: 5px;
  margin-left: 16px;
  border-radius: 99px;
  background: var(--orange);
  vertical-align: middle;
}

.hero__lead {
   max-width: 650px;
   font-size: 1rem;
   margin: 4px 0;
   color: #1F2F4D;
   font-weight: 700;
   line-height: 1.65;
 }

 .hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero__checks span,
.mentor-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FFFFFF, var(--cyan-100));
  border: 1px solid rgba(6, 182, 212, 0.24);
  color: #0F255E;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(21, 94, 239, 0.1);
}

.hero__checks span::before,
.check-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 8px;
}

.hero__actions {
   display: flex;
   gap: 8px;
   flex-wrap: wrap;
 }

 .hero__actions .rating-badge {
   flex: 1;
   min-width: 100%;
   margin-top: 6px;
 }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 20px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-600));
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.34);
}

.btn--secondary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 34px rgba(21, 94, 239, 0.27);
}

.btn--course {
  width: 100%;
  color: var(--blue);
  background: var(--blue-100);
}

.btn--course:hover {
  color: var(--white);
  background: var(--orange);
}

.hero__visual {
   position: relative;
   max-width: 520px;
   justify-self: center;
   margin-top: 8px;
 }

 .poster-card {
  border-radius: 8px;
  padding: 10px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
  transform: rotate(1.5deg);
  animation: float 5s ease-in-out infinite;
}

.poster-card::after {
  content: "Live + Project + Interview";
  position: absolute;
  right: -10px;
  bottom: -12px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.poster-card img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  border-radius: 6px;
}

.live-badge,
.floating-card {
  position: absolute;
  border-radius: 999px;
  font-weight: 900;
  color: var(--white);
  box-shadow: var(--shadow);
}

.live-badge {
  left: 24px;
  top: -18px;
  padding: 13px 20px;
  background: var(--orange);
}

.floating-card {
  padding: 12px 16px;
  background: var(--blue);
  animation: float 4.5s ease-in-out infinite;
}

.floating-card--top {
  right: -22px;
  top: 22%;
}

.floating-card--bottom {
  left: -28px;
  bottom: 10%;
  animation-delay: 1.2s;
}

.stats {
  padding: 32px 0;
  background: linear-gradient(180deg, #FFFFFF, var(--soft));
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  padding: 20px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--blue);
  box-shadow: 0 16px 38px rgba(21, 94, 239, 0.08);
}

.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
}

.stat strong::after {
  content: "+";
}

.stat:nth-child(4) strong::after {
  content: "%";
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.split,
.enroll__grid,
.contact-band__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.split--reverse {
  grid-template-columns: 1fr 1fr;
}

.section-copy h2,
.section-head h2 {
  margin: 16px 0 18px;
}

.section-head {
  max-width: 740px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head p,
.page-hero p,
.hero__lead {
  max-width: 760px;
}

.media-stack {
  position: relative;
}

.media-stack > img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-stack__panel {
  position: absolute;
  right: -24px;
  bottom: 28px;
  width: min(300px, 78%);
  padding: 20px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--orange);
}

.media-stack__panel strong,
.media-stack__panel span {
  display: block;
}

.media-stack__panel strong {
  font-family: var(--font-head);
  color: var(--blue);
}

.media-stack__panel span {
  margin-top: 8px;
  color: var(--muted);
}

.feature-grid,
.support-grid,
.course-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.feature-grid div {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--line);
  font-weight: 800;
  color: var(--blue-900);
}

.courses,
.placement,
.future-courses,
.trainers,
.reviews {
  background: linear-gradient(180deg, #FFFFFF, #EFF6FF 55%, #E6FAFF);
}

.trainers,
.reviews,
.future-courses {
  display: none;
}

.course-grid {
  grid-template-columns: repeat(3, 1fr);
}

.course-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(21, 94, 239, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.course-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--indigo));
}

.course-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.42);
  box-shadow: var(--shadow);
}

.course-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-family: var(--font-head);
  font-weight: 900;
  margin-bottom: 18px;
}

.course-card p {
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.info-card p,
.roadmap-card p,
.resource-card p,
.update-card p {
  font-size: 0.98rem;
}

.course-card ul,
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.course-card li {
  padding: 8px 0;
  color: #475569;
  font-weight: 700;
  border-top: 1px dashed #E2E8F0;
}

.course-card li::before {
  content: "✓";
  color: var(--orange);
  margin-right: 9px;
}

.package-tabs {
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 14%, rgba(6,182,212,0.14), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(232,241,255,0.9));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.package-tab-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 14px;
  background: rgba(255,255,255,0.68);
  border-bottom: 1px solid var(--line);
}

.package-tab-list button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  color: var(--blue-900);
  background: var(--white);
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(21, 94, 239, 0.08);
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.package-tab-list button:hover,
.package-tab-list button.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  transform: translateY(-2px);
}

.package-panel {
  display: none;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding: 30px;
  align-items: center;
}

.package-panel.is-active {
  display: grid;
}

.package-panel h3 {
  margin: 14px 0 10px;
  color: var(--blue-900);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.package-panel p {
  color: var(--muted);
  font-weight: 700;
}

.package-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-family: var(--font-head);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(21, 94, 239, 0.22);
}

.package-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.package-panel li {
  position: relative;
  padding: 14px 14px 14px 42px;
  border-radius: 14px;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid rgba(21, 94, 239, 0.12);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(21, 94, 239, 0.07);
}

.package-panel li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 14px;
  color: var(--green);
  font-weight: 900;
}

.lead-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(6, 182, 212, 0.14), transparent 28%),
    linear-gradient(180deg, #FFFFFF, #EEF6FF);
}

.lead-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.lead-highlights span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(21, 94, 239, 0.08);
}

.program-levels,
.demo-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.program-levels article,
.demo-card-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(232,241,255,0.88));
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(21, 94, 239, 0.1);
}

.program-levels article::after,
.demo-card-grid article::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.22), transparent 70%);
}

.program-levels span,
.demo-card-grid span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-family: var(--font-head);
  font-weight: 900;
}

.program-levels h3,
.demo-card-grid h3 {
  margin-bottom: 10px;
}

.program-levels strong,
.demo-card-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--blue);
  font-family: var(--font-head);
}

.demo-card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.demo-card-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange-600);
  font-weight: 900;
}

.roadmap-diagram {
  display: grid;
  grid-template-columns: 1fr 64px 1fr 64px 1fr 64px 1fr;
  align-items: center;
  gap: 0;
  padding: 28px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 18%, rgba(6,182,212,0.16), transparent 28%),
    linear-gradient(135deg, #FFFFFF, #EEF6FF);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.road-step {
  min-height: 220px;
  padding: 24px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(21, 94, 239, 0.14);
  box-shadow: 0 14px 32px rgba(21, 94, 239, 0.1);
}

.road-step span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-family: var(--font-head);
  font-weight: 900;
}

.road-step strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-900);
  font-family: var(--font-head);
  font-size: 1.12rem;
}

.road-connector {
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  position: relative;
}

.road-connector::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 13px;
  height: 13px;
  border-top: 4px solid var(--cyan);
  border-right: 4px solid var(--cyan);
  transform: translateY(-50%) rotate(45deg);
}

.structure__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
}

.what-card,
.timeline,
.payment-card,
.registration-form,
.review,
.support-card,
.table-wrap {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(21, 94, 239, 0.08);
}

.what-card {
  padding: 28px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.quick-facts span {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--blue-100);
  color: var(--blue);
  font-weight: 900;
}

.quick-facts b {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.74rem;
}

.check-list {
  columns: 2;
}

.check-list li {
  break-inside: avoid;
  padding: 8px 0;
  color: #334155;
  font-weight: 700;
}

.timeline {
  padding: 18px;
}

.timeline div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--soft), var(--white));
}

.timeline div + div {
  margin-top: 10px;
}

.timeline span {
  color: var(--orange);
  font-weight: 900;
}

.timeline strong {
  color: var(--blue-900);
}

.image-mosaic {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: stretch;
}

.image-mosaic img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-mosaic img:first-child {
  height: 360px;
  align-self: end;
}

.mentor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.support-grid,
.review-grid {
  grid-template-columns: repeat(4, 1fr);
}

.support-card,
.review {
  padding: 26px;
}

.support-card strong {
  font-family: var(--font-head);
  color: var(--blue);
  font-size: 1.15rem;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review {
  margin: 0;
  position: relative;
}

.review div {
  color: #FBBF24;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.review p {
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1.18rem;
}

.review cite {
  color: var(--blue);
  font-style: normal;
  font-weight: 800;
}

.enroll {
  background:
    radial-gradient(circle at 16% 18%, rgba(6,182,212,0.14), transparent 28%),
    radial-gradient(circle at 88% 64%, rgba(21,94,239,0.12), transparent 30%),
    #FFFFFF;
}

.payment-card,
.registration-form {
  padding: 32px;
}

.qr-card {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.qr-code {
  width: 150px;
  height: 150px;
  flex: 0 0 150px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, var(--blue) 12px, transparent 12px) 0 0 / 30px 30px,
    linear-gradient(var(--blue) 12px, transparent 12px) 0 0 / 30px 30px,
    #fff;
  border: 8px solid var(--white);
  box-shadow: inset 0 0 0 2px var(--blue), var(--shadow);
}

.qr-code span {
  border-radius: 3px;
  background: var(--blue);
  opacity: 0.9;
}

.qr-code span:nth-child(2n) {
  background: var(--orange);
}

.qr-card small {
  display: block;
  color: var(--orange-600);
  font-weight: 800;
  line-height: 1.5;
}

.registration-form h3 {
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #334155;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius);
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.12);
}

textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.9rem;
}

.form-note.is-error {
  color: #DC2626;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th,
td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--white);
  background: var(--blue);
  font-family: var(--font-head);
}

td {
  font-weight: 700;
}

tbody tr:hover {
  background: var(--orange-100);
}

.contact-band {
  position: relative;
  overflow: hidden;
  padding: 66px 0;
  color: var(--text);
  background:
    linear-gradient(100deg, rgba(255,255,255,0.98) 0%, rgba(239,246,255,0.96) 45%, rgba(224,247,255,0.88) 100%),
    radial-gradient(circle at 82% 28%, rgba(6,182,212,0.16), transparent 24%),
    radial-gradient(circle at 64% 72%, rgba(21,94,239,0.14), transparent 31%),
    radial-gradient(circle at 18% 18%, rgba(125,211,252,0.12), transparent 24%);
  border-top: 0;
}

.contact-band::before,
.contact-band::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.contact-band::before {
  inset: 0 -8% auto -8%;
  height: 74%;
  background:
    linear-gradient(90deg, rgba(219,234,254,0.62), rgba(186,230,253,0.40), rgba(147,197,253,0.26)),
    radial-gradient(ellipse at 42% 35%, rgba(255,255,255,0.52), transparent 62%);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 420' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0,108 C180,36 300,184 480,112 C650,44 790,34 960,116 C1120,194 1260,118 1440,58 L1440,420 L0,420 Z'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  filter: blur(12px);
  opacity: 0.72;
}

.contact-band::after {
  inset: 30% -8% auto -8%;
  height: 48%;
  background:
    linear-gradient(90deg, rgba(239,246,255,0.12), rgba(125,211,252,0.28), rgba(191,219,254,0.30), rgba(59,130,246,0.12)),
    radial-gradient(ellipse at 54% 48%, rgba(255,255,255,0.36), transparent 64%);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 360' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0,122 C150,206 292,58 454,132 C610,204 732,226 900,144 C1080,54 1238,108 1440,174 L1440,360 L0,360 Z'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  filter: blur(18px);
  opacity: 0.62;
}

.contact-band__grid {
  position: relative;
  z-index: 1;
}

.contact-band h2,
.contact-band p,
.contact-band .section-kicker {
  color: var(--text);
}

.contact-band h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.contact-band p {
  font-size: 1.16rem;
  font-weight: 600;
}

.contact-band .section-kicker {
  background: var(--white);
  border-color: var(--line);
  color: var(--blue);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-list > a,
.contact-list > span {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 92px;
  padding: 18px 18px 18px 58px;
  border-radius: 14px;
  color: var(--blue-900);
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(232,241,255,0.88));
  border: 1px solid rgba(21, 94, 239, 0.12);
  box-shadow: 0 12px 26px rgba(21, 94, 239, 0.08);
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.contact-list > a:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 182, 212, 0.36);
  box-shadow: 0 18px 34px rgba(21, 94, 239, 0.14);
}

.contact-list > a::before,
.contact-list > span::before {
  position: absolute;
  left: 16px;
  top: 20px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 900;
}

.contact-list a:nth-child(1)::before { content: "☎"; }
.contact-list a:nth-child(2)::before { content: "⌂"; }
.contact-list a:nth-child(3)::before { content: "✉"; }
.contact-list > span:nth-child(4)::before { content: "⌖"; }
.contact-list a:nth-child(5)::before { content: "◎"; }
.contact-list a:nth-child(6)::before { content: "☏"; }

.contact-list a span,
.contact-list > span span {
  min-height: 0;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--blue-900);
  font-family: var(--font-head);
  font-size: 1.02rem;
  line-height: 1.25;
}

.footer {
  background:
    radial-gradient(circle at 14% 20%, rgba(6, 182, 212, 0.34), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(79, 70, 229, 0.24), transparent 30%),
    linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 44%, var(--blue) 78%, #0891B2 100%);
  border-top: 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: -70px -8% auto;
  height: 140px;
  border-radius: 0 0 50% 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) minmax(180px, 0.8fr) minmax(260px, 1fr);
  gap: 38px;
  align-items: center;
  padding: 46px 0;
  text-align: left;
}

.footer-logo {
  width: 210px;
  max-width: 100%;
  margin: 0;
  background: var(--white);
  border-radius: 14px;
  padding: 8px 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.footer__grid p {
  margin: 12px 0 0;
  color: #DDEBFF;
  font-family: var(--font-head);
  font-weight: 800;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 14px 20px;
  flex-wrap: wrap;
  color: #EAF3FF;
  font-weight: 800;
}

.footer-links a {
  padding: 8px 0;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social .social {
  width: 42px;
  height: 42px;
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 16px 18px;
  text-align: center;
  color: #DDEBFF;
  font-weight: 700;
  border-top: 0;
  background: rgba(4, 20, 58, 0.42);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #25D366;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.35);
  animation: pulse 2.2s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 54px;
  min-height: 330px;
  background:
    linear-gradient(100deg, rgba(255,255,255,0.96) 0%, rgba(239,246,255,0.88) 48%, rgba(224,247,255,0.70) 100%),
    radial-gradient(circle at 12% 18%, rgba(6,182,212,0.14), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(21,94,239,0.15), transparent 30%),
    radial-gradient(circle at 48% 80%, rgba(125,211,252,0.10), transparent 24%),
    var(--banner-image) center / cover no-repeat;
  border-bottom: 0;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.page-hero::before {
  inset: 6% -8% auto -8%;
  height: 70%;
  background:
    linear-gradient(90deg, rgba(219,234,254,0.64), rgba(186,230,253,0.42), rgba(147,197,253,0.28)),
    radial-gradient(ellipse at 42% 38%, rgba(255,255,255,0.48), transparent 62%);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 360' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0,92 C178,34 312,168 502,104 C672,48 820,52 980,126 C1158,208 1282,106 1440,72 L1440,360 L0,360 Z'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  filter: blur(13px);
  opacity: 0.72;
}

.page-hero::after {
  inset: 28% -6% auto -6%;
  height: 42%;
  background: linear-gradient(90deg, rgba(239,246,255,0.10), rgba(125,211,252,0.24), rgba(219,234,254,0.20), rgba(59,130,246,0.12));
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 280' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0,102 C150,166 280,58 454,116 C638,178 744,194 922,118 C1098,42 1268,102 1440,154 L1440,280 L0,280 Z'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  filter: blur(18px);
  opacity: 0.62;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: none;
  padding-left: 18px;
  padding-right: 18px;
}

.page-hero h1 {
  color: var(--blue);
  max-width: 920px;
  margin-top: 16px;
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  line-height: 1.12;
  text-transform: none;
}

.page-hero p {
  max-width: 820px;
  font-size: 1.06rem;
}

.page-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.page-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.info-card,
.roadmap-card,
.resource-card,
.update-card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(21, 94, 239, 0.08);
}

.info-card strong,
.roadmap-card strong,
.resource-card strong,
.update-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-family: var(--font-head);
  font-size: 1.15rem;
}

.roadmap-card .number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  font-family: var(--font-head);
  font-weight: 900;
}

.content-band {
  background: linear-gradient(180deg, #FFFFFF, #EEF6FF);
}

.highlight-box {
  padding: 30px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue), var(--cyan));
  box-shadow: var(--shadow);
}

.highlight-box p,
.highlight-box h2,
.highlight-box h3 {
  color: var(--white);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--white);
  background: #DC2626;
  font-size: 0.78rem;
  font-weight: 900;
}

.status-pill--soon {
  color: var(--blue-900);
  background: var(--orange-100);
}

.download-link,
.share-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.resource-card span,
.update-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue);
  font-weight: 900;
  font-size: 0.78rem;
}

.contact-card-list {
  display: grid;
  gap: 14px;
}

.contact-card-list a,
.contact-card-list span {
  display: block;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(21, 94, 239, 0.08);
  color: var(--blue-900);
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.active-page:not(.nav-register) {
  color: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.12s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(1.5deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -14px) scale(1.06); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Strong text visibility layer. Keep after component rules so text stays readable. */
body {
  color: #031225;
  font-weight: 700;
}

body,
p,
li,
td,
th,
label,
input,
select,
textarea,
button,
a,
span,
small,
strong,
cite {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95), 0 8px 18px rgba(8, 37, 103, 0.10);
}

p,
li,
td,
label,
.course-card p,
.course-card li,
.support-card p,
.review p,
.section-head p,
.section-copy p,
.hero__lead,
.form-note,
.media-stack__panel span,
.footer__grid p {
  color: #06182D;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.56;
}

h1,
h2,
h3,
h4,
.tagline,
.section-head h2,
.section-copy h2,
.course-card h3,
.support-card strong,
.review cite,
.stat strong,
.quick-facts span,
.timeline strong,
.contact-list strong,
.resource-card strong,
.road-step strong {
  color: #06245E;
  font-weight: 700;
  letter-spacing: 0.018em;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.98), 0 12px 24px rgba(8, 37, 103, 0.20);
}

.hero h1 {
  color: #155EEF;
  font-weight: 700;
  text-shadow: 0 2px 0 #FFFFFF, 0 18px 36px rgba(21, 94, 239, 0.28);
}

.tagline {
  color: #071A33;
  font-size: clamp(1.32rem, 2.25vw, 2rem);
}

.nav-links,
.nav-links a,
.top-strip__contacts,
.top-strip__contacts a,
.btn,
.section-kicker,
.eyebrow,
.hero-course-strip span,
.feature-grid div,
.mentor-pills span,
.check-list li,
.contact-list > a,
.contact-list > span,
.footer-links,
.footer-bottom,
.package-tabs button,
.demo-card-grid a,
.status-pill {
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.82), 0 8px 18px rgba(8, 37, 103, 0.16);
}

.btn,
.nav-register,
.btn--primary,
.btn--secondary {
  font-size: 1.08rem;
  color: #FFFFFF;
  text-shadow: 0 1px 1px rgba(3, 18, 37, 0.62), 0 8px 18px rgba(3, 18, 37, 0.18);
}

.btn--course {
  color: #06245E;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95), 0 8px 16px rgba(21, 94, 239, 0.12);
}

.section-kicker,
.eyebrow,
.hero-course-strip span {
  color: #06245E;
  font-size: 0.76rem;
  letter-spacing: 0.075em;
}

input,
select,
textarea {
  color: #031225;
  font-size: 1.03rem;
  font-weight: 700;
}

input::placeholder,
textarea::placeholder {
  color: #36506F;
  font-weight: 700;
  opacity: 1;
}

table,
.course-card,
.support-card,
.review,
.what-card,
.timeline,
.payment-card,
.registration-form {
  color: #031225;
}

/* Typography visibility pass for the current font system. */
body,
p,
li,
td,
label,
input,
select,
textarea,
.course-card p,
.support-card p,
.review p,
.section-head p,
.section-copy p,
.hero__lead,
.form-note {
  color: var(--text);
  font-weight: 600;
}

h1,
h2,
h3,
h4,
.tagline,
.course-card h3,
.support-card strong,
.review cite,
.stat strong,
.quick-facts span,
.timeline strong,
.contact-list strong {
  color: var(--blue-900);
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.78), 0 10px 28px rgba(21, 94, 239, 0.12);
}

.hero h1 {
  color: var(--blue);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.86), 0 16px 34px rgba(21, 94, 239, 0.18);
}

.nav-links,
.nav-links a,
.top-strip__contacts,
.top-strip__contacts a,
.btn,
.section-kicker,
.eyebrow,
.hero-course-strip span,
.course-card li,
.feature-grid div,
.mentor-pills span,
.check-list li,
.contact-list > a,
.contact-list > span,
.footer-links,
.footer-bottom {
  font-weight: 700;
}

.nav-links a,
.nav-links a:visited {
  text-shadow: 0 1px 10px rgba(8, 37, 103, 0.18);
}

.btn,
.nav-register,
.btn--primary,
.btn--secondary {
  text-shadow: 0 1px 1px rgba(4, 20, 58, 0.24);
}

.section-kicker,
.eyebrow,
.hero-course-strip span {
  color: var(--blue-900);
  letter-spacing: 0.055em;
}

input,
select,
textarea {
  font-weight: 600;
  color: var(--text);
}

input::placeholder,
textarea::placeholder {
  color: #52647A;
  opacity: 1;
}

th,
td {
  font-weight: 700;
}

.stat span,
.course-card li,
.quick-facts b,
.timeline span,
.contact-list a span,
.contact-list > span span {
  color: var(--muted);
  font-weight: 700;
}

/* Final visibility override: this intentionally wins over all earlier component text rules. */
body,
p,
li,
td,
th,
label,
input,
select,
textarea,
button,
a,
span,
small,
strong,
cite {
  font-weight: 700;
}

p,
li,
td,
label,
.hero__lead,
.section-head p,
.section-copy p,
.course-card p,
.course-card li,
.support-card p,
.review p,
.form-note {
  color: #031225;
  font-size: 1.09rem;
  line-height: 1.55;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.98), 0 9px 20px rgba(8, 37, 103, 0.14);
}

h1,
h2,
h3,
h4,
.tagline,
.course-card h3,
.support-card strong,
.review cite,
.stat strong,
.media-stack__panel strong {
  color: #041D54;
  font-weight: 700;
  text-shadow: 0 2px 0 #FFFFFF, 0 14px 30px rgba(8, 37, 103, 0.24);
}

.hero h1 {
  color: #155EEF;
  text-shadow: 0 2px 0 #FFFFFF, 0 18px 38px rgba(21, 94, 239, 0.32);
}

.nav-links a,
.top-strip__contacts a,
.section-kicker,
.eyebrow,
.hero-course-strip span,
.btn,
.feature-grid div,
.mentor-pills span,
.check-list li,
.contact-list > a,
.contact-list > span {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.96), 0 9px 20px rgba(8, 37, 103, 0.18);
}

.btn--primary,
.btn--secondary,
.nav-register {
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(3, 18, 37, 0.68), 0 10px 22px rgba(3, 18, 37, 0.22);
}

.btn--course {
  color: #041D54;
}

/* Clean Poppins readability pass and flat royal-blue hero. */
body,
p,
li,
td,
th,
label,
input,
select,
textarea,
button,
a,
span,
small,
strong,
cite {
  font-family: "Poppins", Arial, sans-serif;
  text-shadow: none;
}

p,
li,
td,
label,
.hero__lead,
.section-head p,
.section-copy p,
.course-card p,
.course-card li,
.support-card p,
.review p,
.form-note {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
.tagline,
.course-card h3,
.support-card strong,
.review cite,
.stat strong,
.media-stack__panel strong {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: none;
}

.home-page .hero {
  min-height: calc(92vh - 90px);
  align-items: center;
  padding-top: 44px;
  background:
    radial-gradient(circle at 18% 18%, rgba(96, 165, 250, 0.42), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(6, 182, 212, 0.22), transparent 28%),
    linear-gradient(135deg, #031B55 0%, #07318A 45%, #155EEF 100%);
  color: #FFFFFF;
}

.home-page .hero::before,
.home-page .hero::after {
  display: none;
}

.home-page .hero__glow {
  opacity: 0.26;
  filter: blur(38px);
}

.home-page .hero h1 {
  max-width: 760px;
  margin-top: 16px;
  color: #FFFFFF;
  font-size: clamp(2.7rem, 5.2vw, 5.2rem);
  line-height: 1.02;
  text-transform: none;
  text-shadow: none;
}

.home-page .hero .tagline {
  margin: 18px 0 8px;
  color: #FFFFFF;
  font-size: clamp(1.4rem, 2.3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  text-shadow: none;
}

.home-page .hero .tagline::after {
  display: none;
}

.home-page .hero__lead {
  max-width: 600px;
  margin: 0 0 14px;
  color: #DCEBFF;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  text-shadow: none;
}

.home-page .hero__sublead {
  max-width: 610px;
  margin: 0 0 28px;
  color: rgba(255,255,255,0.88);
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.6;
  text-shadow: none;
}

.hero-proof {
   font-family: "Poppins", Arial, sans-serif;
   font-size: 0.9rem;
   font-weight: 500;
   letter-spacing: 0.02em;
   text-shadow: none;
 }

.home-page .hero .btn {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  text-shadow: none;
}

/* Royal-blue home hero: high-contrast career-training presentation. */
.home-page .hero {
   min-height: calc(92vh - 80px);
   align-items: center;
   padding-top: 28px;
   background:
     radial-gradient(circle at 18% 20%, rgba(96, 165, 250, 0.48), transparent 26%),
     radial-gradient(circle at 74% 18%, rgba(6, 182, 212, 0.32), transparent 28%),
     radial-gradient(circle at 84% 84%, rgba(249, 115, 22, 0.18), transparent 24%),
     linear-gradient(135deg, #031B55 0%, #0B2E88 42%, #155EEF 100%);
   color: #FFFFFF;
 }

.home-page .hero::before {
  inset: -18% -12% auto -12%;
  height: 110%;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.16), transparent 48%),
    radial-gradient(ellipse at 48% 36%, rgba(125, 211, 252, 0.30), transparent 58%);
  box-shadow: inset 0 0 100px rgba(255,255,255,0.12), 0 0 90px rgba(96,165,250,0.34);
}

.home-page .hero::after {
  opacity: 0.42;
}

.home-page .hero__grid {
  align-items: center;
}

.hero-proof {
   display: inline-flex;
   width: fit-content;
   margin-bottom: 8px;
   padding: 8px 14px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.14);
   border: 1px solid rgba(255, 255, 255, 0.28);
   color: #EAF6FF;
   font-family: var(--font-accent);
   font-size: 0.78rem;
font-weight: 500;
   letter-spacing: 0.05em;
   text-shadow: 0 1px 2px rgba(3, 18, 37, 0.42);
 }

.rating-badge {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 4px;
   width: fit-content;
   margin-top: 8px;
   padding: 6px 12px;
   border-radius: 999px;
   background: linear-gradient(135deg, var(--orange), var(--orange-600));
   color: var(--white);
   font-family: var(--font-head);
   font-size: 0.82rem;
   font-weight: 600;
   letter-spacing: 0.04em;
   text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
 }

 .rating-badge span {
   color: #FFD700;
 }

 .home-page .hero .eyebrow {
  background: rgba(255, 255, 255, 0.96);
  color: #06245E;
  border-color: rgba(255, 255, 255, 0.38);
}

.home-page .hero h1,
.home-page .hero .tagline,
.home-page .hero__lead,
.home-page .hero__sublead {
  color: #FFFFFF;
}

.home-page .hero h1 {
   font-size: clamp(1.7rem, 3vw, 3rem);
   text-transform: none;
   text-shadow: 0 2px 0 rgba(255,255,255,0.12), 0 16px 32px rgba(0, 0, 0, 0.25);
 }

 .home-page .hero .tagline {
   margin-top: 6px;
   font-size: clamp(1.5rem, 2.4vw, 2.4rem);
   text-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
 }

.home-page .hero .tagline::after {
  background: #FFB86B;
  box-shadow: 0 0 26px rgba(255, 122, 26, 0.52);
}

.home-page .hero__lead {
  max-width: 760px;
  margin: 18px 0 8px;
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  line-height: 1.36;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.hero__sublead {
   max-width: 720px;
   margin: 0 0 10px;
   font-size: 1.12rem;
   line-height: 1.56;
   color: rgba(255,255,255,0.9);
   text-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
 }

.home-page .hero .btn--secondary {
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
}

.home-page .poster-card {
  background: rgba(255,255,255,0.94);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34), 0 0 70px rgba(96,165,250,0.24);
}

.home-page .floating-card,
.home-page .live-badge {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26), 0 0 34px rgba(96,165,250,0.24);
}

.registration-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.registration-popup.is-open {
  display: flex;
}

.registration-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 18, 37, 0.68);
  backdrop-filter: blur(10px);
}

.registration-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: min(92vh, 760px);
  overflow-y: auto;
  padding: 30px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(96,165,250,0.24), transparent 34%),
    linear-gradient(180deg, #FFFFFF, #F3F8FF);
  border: 1px solid rgba(207, 224, 248, 0.92);
  box-shadow: 0 36px 100px rgba(3, 18, 37, 0.35), 0 0 70px rgba(21, 94, 239, 0.22);
}

.registration-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #06245E;
  background: #E8F1FF;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.registration-popup__intro {
  margin-bottom: 20px;
  padding-right: 36px;
}

.registration-popup__intro h2 {
  margin: 14px 0 8px;
}

.registration-popup__intro p {
  margin: 0;
}

.popup-form {
  display: grid;
  gap: 2px;
}

.registration-popup-open {
  overflow: hidden;
}

/* Final home hero override: no wave, no long copy styling, clear Poppins text. */
.home-page .hero {
  min-height: calc(92vh - 90px);
  align-items: center;
  padding-top: 44px;
  background:
    radial-gradient(circle at 18% 18%, rgba(96, 165, 250, 0.42), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(6, 182, 212, 0.22), transparent 28%),
    linear-gradient(135deg, #031B55 0%, #07318A 45%, #155EEF 100%);
}

.home-page .hero::before,
.home-page .hero::after {
  display: none;
}

.home-page .hero h1 {
  max-width: 760px;
  margin-top: 16px;
  color: #FFFFFF;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(2.7rem, 5.2vw, 5.2rem);
  font-weight: 800;
  line-height: 1.02;
  text-transform: none;
  text-shadow: none;
}

.home-page .hero .tagline {
  margin: 18px 0 8px;
  color: #FFFFFF;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.4rem, 2.3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  text-shadow: none;
}

.home-page .hero .tagline::after {
  display: none;
}

.home-page .hero__lead {
  max-width: 600px;
  margin: 0 0 14px;
  color: #DCEBFF;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  text-shadow: none;
}

.home-page .hero__sublead {
   max-width: 610px;
   margin: 0 0 14px;
   color: rgba(255,255,255,0.88);
   font-family: "Poppins", Arial, sans-serif;
   font-size: 1.04rem;
   font-weight: 500;
   line-height: 1.6;
   text-shadow: none;
 }

@media (max-width: 1320px) and (min-width: 1101px) {
  .nav {
    padding: 0 14px;
    gap: 14px;
  }

  .brand {
    flex-basis: 200px;
    min-width:200px;
  }

  .brand img {
    width: 190px;
    max-width:200px;
  }

  .nav-links {
    gap: 4px;
    font-size: 0.93rem;
  }

  .nav-links a {
    padding: 7px 6px;
  }

  .nav-register {
    padding: 8px 10px;
  }
}

@media (max-width: 1100px) {
  .nav-links {
    position: fixed;
    inset: 88px 18px auto;
    display: none;
    max-height: calc(100vh - 108px);
    overflow-y: auto;
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
  }

  .nav-links a {
    color: var(--text);
  }

  .nav-links a:visited {
    color: var(--text);
  }

  .nav-links a:hover,
  .nav-links a.active,
  .nav-links a.active-page {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 10px 22px rgba(21, 94, 239, 0.2);
  }

  .nav-links.is-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero__grid,
  .split,
  .split--reverse,
  .enroll__grid,
  .contact-band__grid,
  .structure__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    min-height: auto;
    gap: 22px;
    justify-content: flex-start;
  }

  .hero__visual {
    max-width: 620px;
    margin: 0 auto;
  }

  .course-grid,
  .support-grid,
  .program-levels,
  .demo-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-tab-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .package-panel {
    grid-template-columns: 1fr;
  }

  .roadmap-diagram {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .road-connector {
    width: 4px;
    height: 38px;
    margin: 0 auto;
  }

  .road-connector::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(-50%) rotate(135deg);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section-pad {
    padding: 68px 0;
  }

  .top-strip__inner {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .top-strip__contacts {
    width: 100%;
    gap: 8px 12px;
  }

  .top-strip__contacts a {
    font-size: 0.78rem;
    padding: 2px 0;
  }

  .top-strip__contacts a::before {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
    font-size: 0.7rem;
  }

  .top-strip .social-links {
    display: flex;
    width: 100%;
    justify-content: flex-start;
  }

  .brand img {
    width: 178px;
    max-width: 54vw;
  }

  .brand {
    flex-basis: auto;
    min-width: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid,
  .page-hero__content {
    padding-left: 4px;
    padding-right: 4px;
  }

  .hero__grid {
    gap: 32px;
  }

  .tagline::after,
  .floating-card {
    display: none;
  }

  .hero__actions,
  .hero__actions .btn {
    width: 100%;
  }

  .stats__grid,
  .course-grid,
  .support-grid,
  .review-grid,
  .feature-grid,
  .page-grid,
  .page-grid--four,
  .program-levels,
  .demo-card-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .package-tab-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
  }

  .package-panel {
    padding: 20px;
  }

  .package-panel ul {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .contact-list {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .check-list {
    columns: 1;
  }

  .timeline div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .media-stack__panel {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .image-mosaic {
    grid-template-columns: 1fr;
  }

  .image-mosaic img,
  .image-mosaic img:first-child {
    height: auto;
    aspect-ratio: 1 / 0.78;
  }

  .qr-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    text-align: center;
    padding: 38px 0;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-links {
    justify-content: center;
    gap: 12px 16px;
    font-size: 0.9rem;
  }
}

/* Final compact typography pass. */
.nav-links {
  font-size: 0.82rem;
}

.nav-links a {
  padding: 7px 6px;
}

.nav-register {
  padding: 8px 10px;
}

h1,
.page-hero h1 {
  font-size: clamp(1.55rem, 2.55vw, 2.35rem);
}

h2,
.section-head h2,
.section-copy h2,
.contact-band h2,
.registration-popup__intro h2 {
  font-size: clamp(1.28rem, 1.8vw, 1.78rem);
}

h3,
.package-panel h3,
.program-levels h3,
.demo-card-grid h3,
.registration-form h3 {
  font-size: 1rem;
}

.home-page .hero h1 {
  font-size: clamp(2.25rem, 4.2vw, 4.25rem);
}

.home-page .hero .tagline {
  font-size: clamp(1.15rem, 1.9vw, 1.7rem);
}

.home-page .hero__lead {
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.home-page .hero__sublead {
  font-size: 0.96rem;
}

.stat strong {
  font-size: clamp(1.25rem, 2vw, 1.72rem);
}

/* Hero CTA + Google review pill. */
.hero-cta-stack {
  width: fit-content;
  max-width: 100%;
}

.home-page .hero .hero__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 14px;
  width: min(620px, 100%);
}

.home-page .hero .hero__actions .btn {
  min-height: 62px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 1.08rem;
}

.home-page .hero .rating-badge {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: min(620px, 100%);
  margin-top: 18px;
  padding: 13px 22px;
  border-radius: 999px;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 18px 42px rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0;
}

.rating-badge .google-mark {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  color: #FFFFFF;
  background: conic-gradient(#4285F4 0 25%, #34A853 0 50%, #FBBC05 0 75%, #EA4335 0);
  font-weight: 800;
}

.rating-badge .stars {
  color: #FFD84D;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.rating-badge strong {
  color: #FFFFFF;
  font-weight: 700;
}

.rating-badge .review-count {
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
}

@media (max-width: 760px) {
  .home-page .hero .hero__actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-cta-stack,
  .home-page .hero .rating-badge {
    width: 100%;
  }

  .home-page .hero .rating-badge {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    text-align: center;
  }
}
.nav-register{
  border-radius: 15px !important;
  width: 120px !important;
  text-align:center !important;
  font-weight: 500 !important;
  color: #fff !important;
  background: var(--orange-600) !important;
   border: 2px solid var(--orange) !important;
}

.nav-register:hover{
  background: var(--white) !important;
  border: 2px solid var(--orange) !important;
  font-weight: 500 !important;
  color: var(--orange) !important;
}
