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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

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

/* Top Navigation Menu */
.top-navigation {
  background-color: #240743;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  transition: opacity 0.3s ease;
}

.nav-logo:hover img {
  opacity: 0.8;
}

.nav-link {
  color: white;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  padding: 8px 16px;
  scroll-behavior: smooth;
}

.nav-link:hover {
  color: #24fe41;
}

/* Smooth scroll for entire page */
html {
  scroll-behavior: smooth;
}

.nav-link.btn-nav {
  background-color: #24fe41;
  color: #240743;
  font-weight: 600;
  border-radius: 5px;
  padding: 10px 24px;
  transition: all 0.3s ease;
}

.nav-link.btn-nav:hover {
  background-color: white;
  color: #240743;
}

/* Hamburger Menu Icon */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1101;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
  display: block;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

/* Mobile Navigation Responsive */
@media (max-width: 992px) {
  .top-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
  }

  .nav-wrapper {
    padding: 0 15px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-logo {
    position: relative;
    z-index: 1101;
  }

  .hamburger-menu {
    display: flex;
    position: relative;
    z-index: 1101;
  }

  .nav-left,
  .nav-right {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #240743;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 1050;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-left.active {
    display: flex;
  }

  .nav-right.active {
    display: flex;
    position: relative;
    top: 0;
    box-shadow: none;
    padding-top: 0;
    margin-top: 10px;
  }

  /* Show nav-right together with nav-left when active */
  .nav-left.active ~ .nav-right {
    display: flex;
    position: relative;
    top: 0;
    box-shadow: none;
    padding-top: 0;
  }

  .nav-link {
    font-size: 16px;
    padding: 12px 16px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link.btn-nav {
    text-align: center;
    padding: 12px 20px;
    margin-top: 10px;
    border-bottom: none;
    width: auto;
    display: inline-block;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    padding: 0 15px;
  }

  .nav-link {
    font-size: 14px;
  }
}

.cta-btn {
  background-color: #24fe41;
  padding: 12px 20px;
  border-radius: 5px;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border: 1px solid #24fe41;
  font-family: 'Poppins';
}
.cta-btn:hover {
  background-color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  color: #24fe41;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid #24fe41;
}
.cta-btn.light {
  background-color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  color: #24fe41;
  font-weight: 300;
  font-size: 16px;
  border: 1px solid #24fe41;
}

.cta-btn.light:hover {
  background-color: #24fe41;
  padding: 12px 20px;
  border-radius: 5px;
  color: white;
  font-weight: 300;
  font-size: 16px;
}

header {
  background: url(../images/header.png) no-repeat center bottom / cover;
  padding: 300px 40px 400px 40px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  z-index: 4;
  position: relative;
  background-color: #240743;
  margin-top: 60px;
}

header.about-us-header {
  background: url(../images/about-us-header.png) no-repeat center bottom / cover;
  background-color: #240743;
  min-height: 80vh;
}

@media (max-width: 1920px) {
  header {

    padding: 200px 40px 400px 40px;
    color: white;
    display: block;
    justify-content: center;
    align-items: center;
    min-height: auto;
    background-color: #240743;
  }

}



.form-section {
  background-color: #240743;
  padding-top: 100px;
  padding-bottom: 100px;
  background: url('../images/body-bg.png'), #240743;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  z-index: 9999;
  position: relative;
}

.about-content:nth-of-type(1) {
  background-color: #240743;
  
  padding-bottom: 20px;
  background: url('../images/body-bg.png'), #240743;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 40%;
  z-index: 9999;
  position: relative;
}

.about-content:nth-of-type(2) {
  background-color: #240743;
  
  padding-bottom: 20px;
  background: url('../images/body-bg-3.png'), #240743;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 40%;
  z-index: 9999;
  position: relative;
}  

.form-section.thank-you-section {
  background-color: #fff;;
  padding-top: 100px;
  background-image: url('../images/body-bg-2.png');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  z-index: 9999;
  position: relative;
}


.video-container {
  background-color: #240743;
  padding-top: 0px;
  margin-top: -0;
  padding-bottom: 000px;
  background-position: center bottom;
  background-size: contain;
  text-align: center;
  background: url('../images/forward-hub-bg-full.png'), #240743;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 1400px;
}


.video-container .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.video-container .container .hub-bg {
  width: 100%;
  opacity: 0;
}
.video-container .container .hub-animation {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  margin-top: 1032px;
  max-width: 665px;
}
.vid-container {
  position: absolute;
  margin: auto;
  text-align: center;
  left: 0;
  right: 0;
  margin-top: 125px;
  z-index: 999;
}

.vid-container {
  display: flex;
  justify-content: center;
}

.vid-container a {
    display: block;
    position: absolute;
    bottom: -55px;
}
  
video {
  aspect-ratio: 16 / 9;
  width: 85% !important;
  max-width: 1100px;
  padding: 20px;
}


.hub-container {
  background-color: #240743;
  padding: 120px 0;
  text-align: center;
  
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;

}

.about-container {
  background-color: #240743;
  padding-top: 100px;
  background: url('../images/body-bg.png'), #240743;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 800px;
 
}

.mission-vision {
  padding: 80px;
  background-color: #26074c;
  border-radius: 16px;
  max-width: 1366px;
  margin: 120px auto 0;
}

.mission-vision h3 {
  margin-bottom: 40px;
}

.mission-vision p {
  text-align: center;
  color: #fff !important;
  font-size: 20px;
}

.footer-container {
  background-color: #fff;
}

.footer-container a {
  color: #260846
}

.footer-container hr {
  margin: 40px 0;
  color: #260846
}

.footer-container p {
  text-align: center;
  color: #000
}

@media (max-width: 1940px) {
  /*
  .video-container .container .hub-bg {
    width: auto;
    max-width: 100%;
    display: block;
  }  
  .video-container .container .hub-animation {
    position: relative;
    margin: 0 auto;
    left: 0;
    right: 0;
    margin-top: calc(100% - 6000px);
    width: 46%;
    top: calc(-361px + 2vw);
  }
    */
}

.align-right {
  text-align: right;
}

header.form-header {
  background: url('../images/assets/form-header.png') no-repeat center center/cover;
  padding: 200px 40px 200px 40px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
}


header.thank-you-header {
  
  
  
}


.bg-skew {
  background: #c1a9da;
  -webkit-transform: skew(0deg, -10deg);
  transform: skew(0deg, -10deg);

  padding: 350px 0 0;
  margin-top: -350px;
  display: block;
  min-height: auto;
  margin-bottom: 234px;
}

header.thank-you-header .container {
  width: 60%;
  -webkit-transform: skew(0deg, 10deg);
  transform: skew(0deg, 10deg);
  padding: 260px 0;
  max-width: 80%;
  margin: 0 auto;
}

.menu {
    z-index: 999;
    position: relative;
    max-width: 1200px;
    margin: auto;  
}

.logo-container {
  text-align: left;
  position: absolute;
  top: 40px;
  margin: auto;
}

.menu-container {
  text-align: center;
  position: absolute;
  top: 40px;
  margin: auto;
  left: 0;
  right: 0;
}

.menu-container a {
  padding: 15px;
}

.form-header .logo-container {
  text-align: center;
  position: absolute;
  top: 40px;
  margin: auto;
  left: auto;
  transform: none;  
  
}

.form-body {
  padding: 60px 20px;
  margin-top: -140px;
  max-width: 1200px;
  margin: -170px auto 0;
 
}

.form-body form {
  max-width: 600px;
  margin: 40px auto;
}

.form-thank-you {
  padding: 60px 140px;
  margin-top: -140px;
  background: #fff;  
  box-shadow: 0 0 5px #ccc;
}

.form-section.thank-you-section .form-body {
  max-width: 800px;
}

.form-section.thank-you-section .form-body p, .form-section.thank-you-section .form-body li {
  color: #7f768b;
  font-size: 18px;
  margin-bottom: 24px;
}

.form-section.thank-you-section .form-body li{
  margin-left: 20px;
}

.logo-container img {
  height: 40px;
}

.header-content {
  text-align: center;
  width: 1200px;
  max-width: 100%;
  margin: auto;
  position: relative;
}

.header-content h1 {
  font-size: 70px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2em;
  margin-bottom: 30px;
  font-family: "Orbitron", serif;
  letter-spacing: 4px;
  text-align: center;
  color: #24fe41

}

.header-content h2 {
  font-size: 45px;
  font-weight: 900;
  color: #24fe41;
  text-align: center;
  text-transform: none;
  margin-bottom: 40px;
  font-family: "Orbitron", serif;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.header-content h3 {
  font-size: 35px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-transform: none;
  margin-bottom: 40px;
  font-family: "Orbitron", serif;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.form-header .header-content h3 {
  font-size: 36px;
  font-weight: normal;
  color: #fff;
  text-align: center;
  text-transform: none;
  margin-bottom: 40px;
  letter-spacing: 3px;
}

.header-content p {
  font-size: 16px;
  margin-bottom: 4px;
  line-height: 1.6;
  color: #fff
}

.form-header .header-content p {
  font-size: 18px;
  margin-bottom: 4px;
  line-height: 1.6;
  color: #fff
}

.header-content p img {
  margin-bottom: -4px;
}

/* Container for max width */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.two-column-list {
  text-align: left;
}

.two-column-list h2 {
  margin-bottom: 20px;
}

ul {
  list-style: none;
}

.two-column-list ul li {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.two-column-list ul li .icon {
  color: #007BFF;
  margin-right: 10px;
}

.image-text-left-right, .image-text-right-left {
  padding: 40px;
}

.image-text-left-right h2, .image-text-right-left h2 {
  text-align: center;
  margin-bottom: 20px;
}

.cta-container {
  display: block;
  margin: 40px auto;
  max-width: 580px;
}

.cta-container .column-right {
  text-align: left;
}
.icon-containers {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.icon-containers .columns {
  flex-basis: 25%; /* Ensure columns take up only 48% of the available width */
  flex-direction: column;
}

.icon-containers .columns .icon {
  background-color: #eff0f1;
  padding:30px 20px;
  width: 100%;
  text-align: center;
  border-radius: 8px;
}

.icon-containers .columns .icon img {
  height: 70px;
}

.icon-containers .columns p {
  text-align: center;
}

.columns {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.columns .column-left, 
.columns .column-right {
    flex-basis: 50%; /* Ensure columns take up only 48% of the available width */
}

.columns .column-left img, 
.columns .column-right img {
  max-width: 100%;
}

.columns .image img {
  max-width: 100%;
}

.image-text-left-right .image {
  order: 1;
}

.image-text-right-left .image {
  order: 2;
}

.light-brown-section {
  background-color: #24fe41;
  color: white;
  padding: 40px;
  text-align: center;
}

.light-brown-section h2 {
  margin-bottom: 20px;
  color: #fff;
}

.light-brown-section h3 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 20px;
  max-width: 900px;
}

.light-brown-section p {
  font-size: 16px;
  color: #fff;
}

.light-brown-section p {
  margin-bottom: 20px;
}

.light-brown-section .cta-btn {
  background-color: #24fe41;
  border: 1px solid white;
}

h2 {
  font-size: 24px;
  color: #24fe41;
  text-align: left;
  line-height: 1.2em;
  text-transform: uppercase;

}

h3 {
  font-size: 35px;
  color: #24fe41;
  text-align: center;
  line-height: 1.2em;
  text-transform: uppercase;
  font-family: "Orbitron", serif;
  letter-spacing: 3px;
}

.image-text-right-left h2 {
  font-size: 24px;
  color: #24fe41;
  text-align: left;
  line-height: 1.2em;
  text-transform: uppercase;
  max-width: 380px;
}





p.medium-text {
  font-size: 16px;
}

.padded-20 {
  padding: 20px;
}

.padded-40 {
  padding: 40px;
}

.padded-right-20 {
  padding-right: 20px;
}
.padded-right-40 {
  padding-right: 40px;
}
.padded-left-40 {
  padding-left: 40px;
}

p.find-home-list {
  font-size: 12px;
  color: #636f77;
}

p.find-home-list span{
  font-size: 18px;
  color: #24fe41;
}

.find-home-list-container li {
  border-bottom: 1px solid #b0b0b0;
  margin: 0 !important;
  padding: 20px 0;
}

.find-home-list-container li:first-of-type {
  border-top: 1px solid #b0b0b0;
}

.bordered {
  border-top: 1px solid #b0b0b0;
  border-bottom: 1px solid #b0b0b0;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


li {
  color: #fff;
  margin-left: 10px;
}
p {
  color: #fff
}

.padded-top-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
}

.small-check {
  width: 18px;
  margin-right: 4px;
  margin-bottom: -4px;
  color: #fff;
  background-color: #24fe41;
  border-radius: 20px;
  padding: 3px;
  font-size: 12px;
}
.checked-li li {
  margin-left: 24px;
  margin-bottom: 8px;
}
.checked-li li:before {
  content: "\f00c";
  font: normal normal normal 14px / 1 FontAwesome;
  color: #fff;
  background-color: #24fe41;
  border-radius: 20px;
  padding: 3px;
  font-size: 12px;
  margin-right: 5px;
  display: table-cell;
  position: absolute;
  margin-left: -24px;
  margin-top: 3px;
}

.footer { 
  text-align: center;
}
.footer p.bold { 
  font-weight: 500;
}
.footer p { 
  margin-bottom: 14px;
  font-size: 14px;
  color:#636f77;
  font-weight: 300;
}

/* from old css */
span.form-error {
  font-size: 14px;
  font-weight: 400;
  top: 0;
  margin-top: 10px;
  margin-bottom: 0;
}

.second-callout p {
  text-align: center;
  margin: 10px auto;
  font-weight: 600;
  font-size: 16px;
  color: #ec5840;
}

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #ec5840; }
  .form-error.is-visible {
    display: block; }

    .question-contains_form {
      display: grid;
    }

    .question-contains_form .question label {
      font-size: 1.2em;
      color: #838383;
      margin-bottom: 5px;
  }
  
  .question-contains_form .question label {
      font-size: 1.2em;
      color: #838383;
      margin-bottom: 5px;
  }
  
  .question-contains_form .barrier-form .question input {
      margin-bottom: 0;
      border-radius: 10px;
      padding: 20px 30px;
      font-size: 1.1em;
  }
  
  .question-contains_form .right-radio {
      border: 1px solid #b8b8b8;
      background: #fff;
      color: #444;
      border-radius: 4px;
      width: 50%;
      height: 50px;
      line-height: 30px;
      text-align: center;
      float: left;
      margin: 0;
      font-size: inherit;
      display: inline-block;     
      padding: .55em 1em; 
  }
  
  .question-contains_form .button-group .button:not(:last-child) {
      border-right: 1px solid #fefefe;
  }
  
  .question-contains_form .button-group input:checked+label,
  .question-contains_form .button-group input:checked+label:active {
      background-color: #52257d;
      color: #fff;
  }
  
  .question-contains_form .left-radio {
      border: 1px solid #b8b8b8;
      background: #fff;
      color: #444;
      border-radius: 4px;
      width: 50%;
      height: 50px;
      line-height: 30px;
      text-align: center;
      float: left;
      margin: 0;
      font-size: inherit;
      display: inline-block;
      padding:.55em 1em;
  }
  
  .question-contains_form .button-group input {
      display: none;
  }
  
  .question-contains_form .button-group {
      margin-top: 0px;
  }
  
  .question-contains_form .left-radio:hover,
  .question-contains_form .right-radio:hover {
      background: #ecf5fb;
  }
  

  form label {
    font-size: 16px;
    color: #636f77;
    width: 100%;
    display: block;
    margin-top: 20px;
  }

  .form-body select {
    font-size: 15px;
    color: #636f77;
    width: 100%;
    display: block;
    padding: 14px;
    font-family: "Poppins", sans-serif;
    border: 1px solid #c4c4c4;
    border-radius: 8px;
  }

  .form-body input {
    font-size: 15px;
    color: #363636;
    width: 100%;
    display: block;
    padding: 14px;
    font-family: "Poppins", sans-serif;
    border: 1px solid #c4c4c4;
    border-radius: 8px;
  }

/* Customize the label (the container) */
.chkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fff;
  font-size: 15px;
}

/* Hide the browser's default checkbox */
.chkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 40px;
    border: 2px solid #24fe41;
  background-color: #eee;;
}

/* On mouse-over, add a grey background color */
.chkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.chkbox-container input:checked ~ .checkmark {
  background-color: #24fe41;
  border: none;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.chkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.chkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  /* Header */
  header {
      height: 300px;
  }

  .hero-logo img {
    height: 100px;
  }

  .header-content p {
      font-size: 1.2rem;
  }

  /* Two Column List */
  .two-column-list ul li {
      font-size: 1rem;
  }



  .columns.column-reverse {
    flex-direction: column-reverse;
    text-align: center !important;
    display: block;

  }

  .columns.column-reverse .align-right {
    text-align: center !important;
    margin-top: 20px
  }
 

  .columns .image {
      margin-bottom: 20px;
  }

  .image-text-left-right h2, .image-text-right-left h2 {
      font-size: 2em;
      text-align: center;
  }

  .padded-right-40, .padded-left-40 {
      padding-right: 20px;
      padding-left: 20px;
  }

  p.medium-text{
    text-align: center;
  }

  /* Padding adjustments */
  .two-column-list,
  .image-text-left-right,
  .image-text-right-left,
  .light-brown-section {
      padding: 20px;
  }

  .form-header .header-content h3 {
    font-size: 24px;
    font-weight: normal;
    color: #fff;
    text-align: center;
    text-transform: none;
    margin-bottom: 10px;
    text-shadow: 0 0 8px #000;
  }

  header.form-header {
    padding: 250px 40px 200px 40px;
  }

  .form-body {
    padding: 60px 40px;
    margin-top: -60px;

  } 

  form label {
    font-size: 18px;
  }

  .chkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 1.2em;
  }

  .form-header .header-content p {
    font-size: 20px; 
  }

  .form-thank-you {
    padding: 60px 140px;
    margin-top: -60px;
  }

  .form-thank-you {
    padding: 60px 20px;
    margin-top: -60px;
  } 

  .icon-containers .columns p {
    text-align: center;
    font-size: 14px;
  }  

  .icon-containers .columns {
    flex-basis: 50%;
    flex-direction: column;
  } 
}

@media (max-width: 480px) {
  /* Header */
  header {
      height: 250px;
      padding: 150px 20px 100px 20px;
  }

  .hero-logo img {
    height: 80px;
  }

  .hero-logo {
    margin-bottom: 40px;
  }

  .hero-buttons-group {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary, .btn-secondary {
    font-size: 20px;
    padding: 12px 30px;
    min-width: 180px;
  }

  .header-content h1 {
      font-size: 1.5rem;
  }

  p.medium-text {
    font-size: 18px;
  }
  
  .padded-40 {
    padding: 20px;
  }  

  .padded-right-40 {
    padding-right: 0;
  }
  
  .padded-left-40 {
    padding-left: 0;
  }

  .image-text-right-left h2 {
    text-align: center;
  }

  .header-content h3 {
    font-size: 32px;
  }

  .header-content p {
      font-size: 1rem;
  }

  /* Smaller text for lists */
  .two-column-list ul li {
      font-size: 0.9rem;
  }

  /* CTA button adjustments */
  .cta-btn {
      padding: 8px 16px;
      font-size: 0.9rem;
  }

  /* Further reduce padding for small screens */
  .two-column-list,
  .image-text-left-right,
  .image-text-right-left,
  .light-brown-section {
      padding: 15px;
  }

  .light-brown-section h3 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 24px;
    max-width: 900px;
  }  

  .light-brown-section p {
    font-size: 20px;
    color: #fff;
    line-height: 1.2em;
  }  

  .form-body {
    padding: 60px 40px;
    margin-top: -60px;

  }

  .icon-containers {
    display: block;
  }

  .icon-containers .columns {
    flex-basis: 50%;
    flex-direction: column;
    max-width: 200px;
    margin: auto;
    margin-bottom: 40px;
  }  
}

.table {
  display: table;
  width: 100%;
  height: 100%;
}
.overlay-mb-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99999999999999;
  background: rgba(0, 0, 0, 0.8); }

.overlay-table {
  display: table;
  text-align: center;
  width: 100%;
  height: 100%; }

.overlay-table-cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center; }
  .overlay-table-cell p {
    display: block;
    width: 100%;
    padding-top: 10px;
    color: #fff;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 1.5em;
    font-weight: bold; }
  .overlay-table-cell img {
    display: block;
    width: 200px;
    height: 200px;
    margin: 0 auto; }




    /* Calendar Dropdown */

    .datepicker-container {
      position: relative;
      display: inline-block;
    }
    .datepicker-container input {
        width: 100%;
        padding: 10px;
        font-size: 16px;
        border: 2px solid #007bff;
        border-radius: 5px;
        text-align: left;
        cursor: pointer;
    }
    .datepicker-container .datepicker {
        position: absolute;
        top: 45px;
        left: 0;
        background: #fff;
        border: 1px solid #ccc;
        padding: 10px;
        display: none;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .datepicker-container select {
        width: 100%;
        padding: 5px;
        margin-bottom: 5px;
    }
    .datepicker-container .days {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 5px;
        margin-top: 10px;
    }
    .datepicker-container .day {
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        cursor: pointer;
        border-radius: 5px;
        font-size: 14px;
    }
    .datepicker-container .day:hover {
        background: #007bff;
        color: #fff;
    }
    .datepicker-container .selected {
        background: #007bff;
        color: #fff;
    }

    /* Calendar Dropdown */

  .top-padded-20 {
    margin-top: 20px;
  }

  .accordion {
    background-color: transparent;
    color: #24cb42;
    cursor: pointer;
    padding: 18px 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border-bottom: 1px solid #66527c;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Poppins';
  }
  
  .active, .accordion:hover {
    
  }
  
  .accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2212";
  }
  
  .panel {
    padding: 0 0;
    
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  .panel p {
    padding: 20px 0;
    color :#fff
  }
  
  @media (max-width: 1920px) {

    .video-container {
      
      position: relative;
      z-index: 99999;
      margin-top: 0;
    }
    .video-container .container .hub-animation {
      max-width: 665px;
    }  
  }

  @media (max-width: 1366px) {

    .video-container {
      background-size: 100%;
      position: relative;
      z-index: 99999;
      margin-top: -55px;
    }
    .video-container .container .hub-animation {

      margin-top: 74.5%;
      width: 46%;
    }  
  }  
/*
  @media (max-width: 1880px) {
    .video-container .container .hub-animation {
      margin-top: calc(100% - 412px);
      width: 46%;
    }  
  }

  @media (max-width: 1840px) {
    .video-container .container .hub-animation {
      margin-top: calc(100% - 408px);
      width: 46%;
    }  
  }
  @media (max-width: 1820px) {
    .video-container .container .hub-animation {
      margin-top: calc(100% - 400px);
      width: 46%;
    }  
  }

  @media (max-width: 1820px) {
    .video-container .container .hub-animation {
      width: 47%;
    }  
  }

  @media (max-width: 1780px) {
    .video-container .container .hub-animation {
      margin-top: calc(100% - 396px);
      width: 47%;
   }
  }  

  @media (max-width: 1760px) {
    .video-container .container .hub-animation {
      margin-top: calc(100% - 390px);
      width: 47%;
   }
  }    

  @media (max-width: 1720px) {
    .video-container .container .hub-animation {
      margin-top: calc(100% - 382px);
      width: 47%;
   }
  }    

  @media (max-width: 1700px) {
    .video-container .container .hub-animation {
      margin-top: calc(100% - 378x);
      width: 47%;
   }
  } */

  .about-us-header.header h1 {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2em;
    margin-bottom: 30px;
    font-family: "Orbitron", serif;
    letter-spacing: 4px;
    text-align: center;
    color: #24fe41;
  }

  .badge {
    display: block; width: 120px; margin: auto auto -120px auto  
  }

@media (max-width: 1366px) {
  .vid-container {
    position: absolute;
    margin: auto;
    text-align: center;
    left: 0;
    right: 0;
    margin-top: 0px;
  }
}
@media (max-width: 1024px) {
  .header-content h1 {
    font-size: 64px;
  }
  .header-content h2 {
    font-size: 48px;
  }
  .header-content h3 {
    font-size: 32px;
  }
  h3 {
    font-size: 36px;
  }
}
@media (max-width: 980px) {
  .vid-container {
    position: absolute;
    margin: auto;
    text-align: center;
    left: 0;
    right: 0;
    margin-top: 0;
  }
  .video-container .container .hub-animation {
    margin-top: 73.0%;
  }
}


@media (max-width: 768px) {
  .about-us-header.header h1 {
    font-size: 24px;
  }
  .header-content h1 {
    font-size: 54px;
  }
  .header-content h2 {
    font-size: 40px;
  }
  .header-content h3 {
    font-size: 26px;
  }
  h3 {
    font-size: 34px;
  }
    .video-container .container .hub-animation {
    margin-top: 71.5%;
  }
  .center-mobile {
    margin: auto;
  }
}
@media (max-width: 600px) {
  header {
    padding: 200px 40px 550px 40px;
  }
  .header-content h1 {
    font-size: 42px;
  }
  .header-content h2 {
    font-size: 28px;
  }
  .header-content h3 {
    font-size: 20px;
  }
  .mission-vision p {
    text-align: center;
    color: #fff;
    font-size: 16px;
  }  
  .badge {
    padding-left: 10px;
    margin: auto auto -114px auto
  }
    .video-container .container .hub-animation {
    margin-top: 69.5%;
  }  
}

@media (max-width: 510px) {  
}
.about-content .container {
  max-width: 650px;
}
.about-content h2 {
  font-size: 18px;
  color: #24af42;
  margin-bottom: 20px;
}

.green.underlined {
  color: #24fe41;
  opacity: .7;
  border-bottom: 1px solid #24fe41;
  font-size: 16px;
  display: inline;
}


.mission-and-vision {
  margin-top: 60px;
  padding: 40px;
  border: 1px solid #24fe41;
  text-align: center;
  margin-bottom: 60px;
}
.mission-and-vision h2 {
  text-align: center;
}

.about-content:nth-of-type(2) .accordion {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
  opacity: 7;
}

.about-content p, .about-content li {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 30px;
  opacity: .7;
  
}



.about-content ul {
  list-style: disc;
  padding-left: 20px
}

.about-content a {
  color: #24fe41 !important;
}

.about-content li::marker {
  color: #24fe41 !important;
  font-size: 20px;
}

.grecaptcha-badge {
  z-index: 99999999 !important;
}

.hide {
  display: none;
}


.btn-primary {
    background-color: #24fe41;
    color: #240743;
    border: 0;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: bold;
    min-width: 150px;
    border-radius: 0.375em;
    line-height: 1.5;
}

/* Button primary color */
.btn-primary, .btn-danger {
    border-radius: 8px !important;
}

.btn-primary:hover {
    background-color: #005f3f;
    border-color: #005f3f;
    color:#fff;
}

.btn-secondary {
    background-color: transparent;
    color: #24fe41;
    border: 2px solid #24fe41;
    padding: 8px 24px;
    font-size: 16px;
    font-weight: bold;
    min-width: 150px;
    border-radius: 0.375em;
    line-height: 1.5;
}

.btn-secondary:hover {
    background-color: #24fe41;
    color: #240743;
    border-color: #24fe41;
}

.hero-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Hero Logo Animation */
.hero-logo {
  opacity: 0;
  transform: scale(0.3);
  animation: logoFadeIn 2s ease-out forwards;
  margin-bottom: 60px;
}

.hero-logo img {
  max-height: 100px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hero Text Animation */
.hero-text {
  opacity: 0;
  transform: translateY(30px);
  animation: textFadeIn 1.5s ease-out 2.2s forwards;
}

@keyframes textFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Button Animation */
.hero-button {
  opacity: 0;
  transform: translateY(20px);
  animation: buttonFadeIn 1s ease-out 3.5s forwards;
  padding: 0 15px;
}

.hero-button .btn {
  width: 100%;
  max-width: 300px;
  white-space: normal;
  word-wrap: break-word;
  padding: 12px 20px;
  font-size: 16px;
}

@media (max-width: 480px) {
  .hero-button .btn {
    font-size: 14px;
    padding: 10px 15px;
  }
}

@keyframes buttonFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Level Selection & Summary Pages */
.level-selection-container,
.level-summary-container {
  background: linear-gradient(135deg, #240743 0%, #1a0533 50%, #2d0a56 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

.level-selection-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(36, 254, 65, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(36, 254, 65, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.level-selection-content,
.level-summary-content {
  position: relative;
  z-index: 10;
  padding: 120px 20px 80px 20px;
  text-align: center;
  margin-top: 0;
}

/* Hero Section - Levels Page */
.level-selection-container .hero-section {
  margin-bottom: 80px;
}

.level-selection-container .hero-title {
  color: #24fe41;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "Orbitron", serif;
  letter-spacing: 6px;
  text-shadow: 0 0 30px rgba(36, 254, 65, 0.3);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 30px rgba(36, 254, 65, 0.3), 0 0 60px rgba(36, 254, 65, 0.1); }
  100% { text-shadow: 0 0 40px rgba(36, 254, 65, 0.5), 0 0 80px rgba(36, 254, 65, 0.2); }
}

.hero-subtitle {
  color: #fff;
  font-size: 18px;
  margin-bottom: 60px;
  opacity: 0.9;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Progress Indicator */
.progress-container {
  margin: 60px 0;
}

.progress-track {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
  max-width: 600px;
  margin: 0 auto;
}

.progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(36, 254, 65, 0.2);
  transform: translateY(-50%);
  z-index: 1;
}

.progress-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(36, 254, 65, 0.1);
  border: 3px solid rgba(36, 254, 65, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: #24fe41;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.step-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  white-space: nowrap;
}

.progress-step.active .step-number {
  background: #24fe41;
  color: #240743;
  box-shadow: 0 0 20px rgba(36, 254, 65, 0.4);
  animation: pulse 2s infinite;
}

.progress-step.active .step-label {
  color: #24fe41;
}

@keyframes pulse {
  0% { box-shadow: 0 0 20px rgba(36, 254, 65, 0.4); }
  50% { box-shadow: 0 0 30px rgba(36, 254, 65, 0.6); }
  100% { box-shadow: 0 0 20px rgba(36, 254, 65, 0.4); }
}

.logo-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.1;
  pointer-events: none;
}

.logo-watermark img {
  width: 80vw;
  height: auto;
  max-width: 1200px;
}

.level-selection-content h1,
.level-summary-content h1 {
  color: #24fe41;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "Orbitron", serif;
  letter-spacing: 4px;
}

.intro-text {
  color: #fff;
  font-size: 16px;
  margin-bottom: 40px;
  opacity: 0.8;
}

.dashboard-link {
  margin-bottom: 60px;
}

.dashboard-link .btn-secondary {
  background: transparent;
  color: #24fe41;
  border: 2px solid #24fe41;
  padding: 12px 30px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

.dashboard-link .btn-secondary:hover {
  background: #24fe41;
  color: #240743;
  transform: translateY(-2px);
}

.levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 60px;
  max-width: 1400px;
  margin: 80px auto 0;
}

/* Enhanced Level Cards */
.level-card {
  background: linear-gradient(145deg, rgba(36, 7, 67, 0.95), rgba(26, 5, 51, 0.95));
  border: 1px solid rgba(36, 254, 65, 0.3);
  border-radius: 24px;
  padding: 0;
  text-align: left;
  position: relative;
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  min-height: 500px;
}

.level-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(36, 254, 65, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.level-card:hover::before {
  opacity: 1;
}

.level-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  border-color: #24fe41;
  box-shadow:
    0 20px 40px rgba(36, 254, 65, 0.2),
    0 0 50px rgba(36, 254, 65, 0.1);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(36, 254, 65, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: rotate 10s linear infinite;
}

.level-card:hover .card-glow {
  opacity: 1;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.level-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  gap: 6px;
}

.level-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, #24fe41, #1ed639);
  color: #240743;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
  box-shadow: 0 4px 15px rgba(36, 254, 65, 0.3);
}

.level-status {
  font-size: 9px;
  color: #24fe41;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(36, 254, 65, 0.1);
  padding: 3px 6px;
  border-radius: 8px;
  border: 1px solid rgba(36, 254, 65, 0.3);
  white-space: nowrap;
  text-align: center;
  min-width: 60px;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-content {
  padding: 40px;
  padding-top: 80px;
  padding-right: 100px;
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.level-card h2 {
  color: #24fe41;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.level-card h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.9;
  text-transform: none;
  letter-spacing: 0;
  text-align: left;
}

.level-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.feature-list li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.feature-list li i {
  color: #24fe41;
  margin-right: 12px;
  font-size: 12px;
}

.test-card {
  background: rgba(36, 7, 67, 0.8);
  border: 2px solid #24fe41;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.test-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(36, 254, 65, 0.2);
}

.level-number {
  background: #24fe41;
  color: #240743;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 900;
  margin: 0 auto 20px;
}

.level-card h2,
.test-card h2 {
  color: #24fe41;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.level-card p,
.test-card p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.9;
}

.btn-level {
  background: linear-gradient(145deg, #24fe41, #1ed639);
  color: #240743;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(36, 254, 65, 0.2);
  margin-top: auto;
}

.btn-level:hover {
  background: linear-gradient(145deg, #fff, #f0f0f0);
  color: #240743;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(36, 254, 65, 0.4);
}

.btn-level i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.btn-level:hover i {
  transform: translateX(4px);
}

.btn-unlock {
  background: #24fe41;
  color: #240743;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  min-width: 250px;
}

.btn-unlock:hover {
  background: #fff;
  color: #240743;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(36, 254, 65, 0.3);
}

/* Bottom CTA Section */
.bottom-cta {
  margin-top: 120px;
}

.cta-card {
  background: linear-gradient(145deg, rgba(36, 254, 65, 0.1), rgba(36, 254, 65, 0.05));
  border: 1px solid rgba(36, 254, 65, 0.3);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(20px);
}

.cta-card h3 {
  color: #24fe41;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.btn-primary-lg {
  background: linear-gradient(145deg, #24fe41, #1ed639);
  color: #240743;
  border: none;
  padding: 20px 40px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(36, 254, 65, 0.3);
  letter-spacing: 1px;
}

.btn-primary-lg:hover {
  background: linear-gradient(145deg, #fff, #f0f0f0);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(36, 254, 65, 0.4);
}

.btn-primary-lg i {
  font-size: 16px;
}

.level-tests {
  display: grid;
  gap: 40px;
  max-width: 800px;
  margin: 60px auto 0;
}

.back-navigation {
  margin-top: 60px;
}

.back-navigation .btn-secondary {
  background: transparent;
  color: #24fe41;
  border: 2px solid #24fe41;
  padding: 12px 30px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.back-navigation .btn-secondary:hover {
  background: #24fe41;
  color: #240743;
}

/* Mobile Responsiveness for Level Pages */
@media (max-width: 768px) {
  .level-selection-container,
  .level-summary-container {
    padding-top: 80px;
  }

  .level-selection-content,
  .level-summary-content {
    padding: 160px 20px 60px 20px;
  }

  .progress-track {
    gap: 60px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .step-label {
    font-size: 11px;
  }

  .level-selection-content h1,
  .level-summary-content h1 {
    font-size: 24px;
  }

  .levels-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .level-card,
  .test-card {
    padding: 30px 20px;
  }

  .intro-text {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .logo-watermark img {
    width: 90vw;
  }
}

@media (max-width: 480px) {
  .level-selection-container,
  .level-summary-container {
    padding-top: 60px;
  }

  .level-selection-content,
  .level-summary-content {
    padding: 140px 15px 60px 15px;
  }

  .level-selection-content h1,
  .level-summary-content h1 {
    font-size: 20px;
  }

  .level-card h2,
  .test-card h2 {
    font-size: 18px;
  }

  .level-card p,
  .test-card p {
    font-size: 14px;
  }

  .btn-level,
  .btn-unlock {
    padding: 12px 20px;
    font-size: 14px;
    min-width: 200px;
  }
}

/* Enhanced Typography and Spacing */
.hero-title {
  letter-spacing: 3px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.4;
}

.level-card h2 {
  letter-spacing: 2px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.level-card h3 {
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.level-card p {
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-list li {
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: 500;
}

.progress-step .step-label {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.bottom-cta h3 {
  letter-spacing: 1px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.bottom-cta p {
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Enhanced Spacing */
.progress-container {
  margin: 48px 0 64px 0;
}

.levels-grid {
  margin-bottom: 80px;
}

.level-card {
  margin-bottom: 32px;
}

.feature-list {
  margin: 32px 0;
  padding-left: 0;
}

.bottom-cta {
  margin-top: 80px;
}

.dashboard-link {
  margin-bottom: 64px;
}

/* Dashboard Styles */
.dashboard-container {
  background: linear-gradient(135deg, #240743 0%, #1a0530 50%, #0d0218 100%);
  min-height: 100vh;
  padding: 100px 0 60px 0;
  position: relative;
}

.dashboard-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(36, 254, 65, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(36, 254, 65, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.dashboard-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 80px;
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: 28px;
  font-weight: 900;
  color: #24fe41;
  margin-bottom: 16px;
  letter-spacing: 4px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-name {
  font-family: 'Orbitron', monospace;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 2px;
  text-align: center;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Club Info Card */
.club-info-card {
  margin-top: 40px;
}

.club-button {
  background: rgba(36, 254, 65, 0.1);
  border: 2px solid rgba(36, 254, 65, 0.3);
  border-radius: 15px;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.club-button:hover {
  background: rgba(36, 254, 65, 0.2);
  border-color: #24fe41;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(36, 254, 65, 0.3);
}

.club-logo, .club-logo-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.club-logo-placeholder {
  background: #24fe41;
  color: #240743;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}

.club-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.club-name {
  font-weight: 700;
  font-size: 16px;
}

.club-short {
  font-size: 14px;
  opacity: 0.7;
}

.club-info-icon {
  font-size: 20px;
  color: #24fe41;
}

/* Section Titles */
.section-title {
  font-family: 'Orbitron', monospace;
  font-size: 24px;
  font-weight: 700;
  color: #24fe41;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Assessments Section */
.assessments-section {
  margin-bottom: 80px;
}

.assessments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.assessment-card {
  position: relative;
  background: rgba(36, 254, 65, 0.05);
  border: 2px solid rgba(36, 254, 65, 0.2);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.assessment-card:hover {
  transform: translateY(-8px);
  border-color: #24fe41;
  box-shadow: 0 15px 40px rgba(36, 254, 65, 0.3);
}

.assessment-card .card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(36, 254, 65, 0.1), transparent);
  animation: rotate 6s linear infinite;
  border-radius: 50%;
}

.assessment-card .card-icon {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #24fe41, #1bc93a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #240743;
  box-shadow: 0 8px 25px rgba(36, 254, 65, 0.4);
}

.assessment-card .card-content {
  position: relative;
  z-index: 2;
}

.assessment-card h4 {
  font-family: 'Orbitron', monospace;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.assessment-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.assessment-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px 0;
  text-align: left;
}

.assessment-features li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.assessment-features i {
  color: #24fe41;
  font-size: 12px;
}

/* Assessment Buttons */
.btn-assessment {
  background: linear-gradient(135deg, #24fe41, #1bc93a);
  color: #240743;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-assessment:hover {
  background: linear-gradient(135deg, #1bc93a, #24fe41);
  color: #240743;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(36, 254, 65, 0.4);
}

.btn-group-assessment {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary-assessment {
  background: #24fe41 !important;
  color: #240743 !important;
  border: 2px solid #24fe41 !important;
  border-radius: 8px !important;
  padding: 12px 20px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.btn-primary-assessment:hover {
  background: #1bc93a !important;
  color: #240743 !important;
  border-color: #1bc93a !important;
}

.btn-primary-assessment:visited, .btn-primary-assessment:focus {
  color: #240743 !important;
}

.btn-success-assessment {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-success-assessment:hover {
  background: linear-gradient(135deg, #20c997, #28a745);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-disabled {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: not-allowed;
}

/* No Window Alert */
.no-window-alert {
  background: rgba(255, 193, 7, 0.1);
  border: 2px solid rgba(255, 193, 7, 0.3);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(10px);
  max-width: 600px;
  margin: 0 auto;
}

.no-window-alert .alert-icon {
  font-size: 48px;
  color: #ffc107;
  margin-bottom: 24px;
}

.no-window-alert h4 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 16px;
}

.no-window-alert p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.no-window-alert .next-window {
  color: #ffc107;
  font-weight: 600;
}

/* Payment Status Section */
.payment-status-section {
  margin-bottom: 80px;
}

.status-card {
  position: relative;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(10px);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.completion-card {
  background: rgba(255, 193, 7, 0.1);
  border: 2px solid rgba(255, 193, 7, 0.3);
}

.success-card {
  background: rgba(40, 167, 69, 0.1);
  border: 2px solid rgba(40, 167, 69, 0.3);
}

.status-card .card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  animation: rotate 8s linear infinite;
}

.completion-card .card-glow {
  background: conic-gradient(from 0deg, transparent, rgba(255, 193, 7, 0.1), transparent);
}

.success-card .card-glow {
  background: conic-gradient(from 0deg, transparent, rgba(40, 167, 69, 0.1), transparent);
}

.status-icon {
  position: relative;
  z-index: 2;
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.completion-card .status-icon {
  background: linear-gradient(135deg, #ffc107, #ffed4e);
  color: #856404;
}

.success-card .status-icon {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #ffffff;
}

.status-content {
  position: relative;
  z-index: 2;
}

.status-content h3 {
  font-family: 'Orbitron', monospace;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.status-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.status-note {
  font-weight: 600;
  margin-bottom: 32px !important;
}

.btn-unlock {
  background: linear-gradient(135deg, #ffc107, #ffed4e);
  color: #856404;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-unlock:hover {
  background: linear-gradient(135deg, #ffed4e, #ffc107);
  color: #856404;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.action-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-results, .btn-levels {
  background: #28a745 !important;
  color: #ffffff !important;
  border: 2px solid #28a745 !important;
  border-radius: 8px !important;
  padding: 12px 20px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.btn-results:hover, .btn-levels:hover {
  background: #20c997 !important;
  color: #ffffff !important;
  border-color: #20c997 !important;
  transform: translateY(-2px) !important;
}

.btn-results:visited, .btn-levels:visited {
  color: #ffffff !important;
}

.btn-results:focus, .btn-levels:focus {
  background: #28a745 !important;
  color: #ffffff !important;
  border-color: #28a745 !important;
}

/* Results Section */
.results-section {
  margin-bottom: 80px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.results-card {
  background: rgba(36, 254, 65, 0.05);
  border: 2px solid rgba(36, 254, 65, 0.2);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.results-card:hover {
  border-color: rgba(36, 254, 65, 0.4);
  box-shadow: 0 8px 25px rgba(36, 254, 65, 0.2);
}

.results-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.results-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #24fe41, #1bc93a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #240743;
}

.results-header h4 {
  font-family: 'Orbitron', monospace;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 1px;
}

.empty-state, .locked-state {
  text-align: center;
  padding: 40px 20px;
}

.empty-state i, .locked-state i {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
  display: block;
}

.empty-state p, .locked-state p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin-bottom: 16px;
}

.locked-state h5 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 700;
}

.btn-payment {
  background: #24fe41;
  color: #240743;
  border: 2px solid #24fe41;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-payment:hover {
  background: #1bc93a;
  color: #240743;
  border-color: #1bc93a;
}

.results-table {
  space-y: 16px;
}

.result-row {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.result-row:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(36, 254, 65, 0.3);
}

.result-info {
  flex: 1;
}

.quarter {
  font-weight: 700;
  color: #24fe41;
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

.scores {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scores span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
}

.btn-view {
  background: #24fe41;
  color: #240743;
  border: 2px solid #24fe41;
  border-radius: 8px;
  padding: 8px 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}

.btn-view:hover {
  background: #1bc93a;
  color: #240743;
  border-color: #1bc93a;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .dashboard-content {
    padding: 40px 15px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-name {
    font-size: 20px;
  }

  .section-title {
    font-size: 18px;
  }

  .assessments-grid, .results-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .club-button {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .action-buttons {
    flex-direction: column;
  }

  .scores {
    flex-direction: column;
    gap: 8px;
  }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}