:root {
  --bg-dark: #050814;
  --bg-section: #0b1624;
  --accent: #16d1ff;
  --accent-soft: #0b99ff;
  --text-main: #ffffff;
  --text-muted: #b7c0d6;
  --card-bg: #111c2b;
  --gold: #f3b533;
  --radius: 10px;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  line-height: 1.5;
  background-color: #05070b;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page > main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

#sectionsContainer {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

/* Sections animation: hidden by default; add .show to fade/slide in */
.section-wrapper {
  display: none;
  flex: 1 0 auto;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 320ms ease, transform 320ms ease;
  will-change: opacity, transform;
}

.section-wrapper.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
} 

/* Navbar */
.navbar {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar-dark .navbar-toggler {
  border: none;
  padding: 0;
}
.navbar-dark .navbar-toggler:focus {
  box-shadow: none;
}

.main-navbar {
  background-color: transparent;

  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}


.main-navbar.scrolled {
  background-color: rgba(5, 8, 20, 0.95);
  /* box-shadow: 0 2px 10px rgba(0,0,0,0.5); */
}

/* fixed state when navbar becomes fixed on scroll */
.main-navbar.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1060;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.navbar-dark .navbar-nav .nav-link {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
}

.navbar-dark .navbar-nav .nav-link.active {
  color: #00bfff;
  font-weight: bold;
}

.quiz-footer-nav a.active {
  color: var(--accent-soft);
}

.logo-text {
  display: flex;
  gap: 6px;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.cta-btn {
  padding: 9px 18px;
  border-radius: 5px;
  background: linear-gradient(90deg, #122649, #00bcff);

  /* background: linear-gradient(135deg, var(--accent), var(--accent-soft)); */
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  /* box-shadow: 0 0 18px rgba(15, 208, 255, 0.45); */
  align-items: center;
  gap: 6px;
  width: 130px;
  color: white;
  display: inline-flex;
  justify-content: center;
}

.top-hero-wrapper {
  position: relative;
  background-image: url("../assets/footer.png");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  color: #ffffff;
}

.top-hero-wrapper.no-hero-bg {
  background-image: none;
}

.top-hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.top-hero-wrapper > * {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100vh;
  padding: 7.5rem 0 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;

  /* animation (initially hidden; make visible with .show) */
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 420ms ease, transform 420ms ease;
  will-change: opacity, transform;
}

.hero.show {
  opacity: 1;
  transform: translateY(0);
} 

.hero-orb-wrap {
  width: 480px;
  max-width: 90vw;
  margin: 0 auto 12px;
  transform: translateY(-40px);
}

.hero-orb-core {
  width: 100%;
}

.hero-orb-core img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 6px;
}

.hero-sub {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #ffffff;
  margin-bottom: 10px;
}

.hero-scroll {
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.hero-scroll-dot {
  width: 16px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}
.hero-scroll-dot::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
  animation: bounce 1.6s infinite;
}

.hero-scroll-arrow {
  font-size: 20px;
  color: #ffffff;
  opacity: 0.9;
  animation: arrow-bounce 1.6s infinite;
}

.custom-toggler .navbar-toggler-icon {
  width: 24px;
  height: 2px;
  background-color: #fff;
  position: relative;
  display: inline-block;
  transition: background-color 0.2s ease;
}
.custom-toggler .navbar-toggler-icon::before,
.custom-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}
.custom-toggler .navbar-toggler-icon::before {
  top: -7px;
}
.custom-toggler .navbar-toggler-icon::after {
  bottom: -7px;
}

.custom-toggler.open .navbar-toggler-icon {
  background-color: transparent;
}
.custom-toggler.open .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.custom-toggler.open .navbar-toggler-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    transform: translateY(8px);
    opacity: 0.1;
  }
}
@keyframes arrow-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

section {
  padding: 40px 0;
}

.section-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.section-heading {
  font-size: 1.25rem;
  margin-bottom: 24px;
  font-weight: 700;
}

/* PLANS */
#plans {
  background: linear-gradient(90deg, #050814 0%, #0b1624 100%);
}

.plan-card {
  background: rgba(9, 20, 35, 0.95);
  border-radius: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: flex-start;
}

.plan-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.plan-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 4px;
}

.plan-text {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
}

.plans-bottom-text {
  text-align: center;
  margin-top: 28px;
  font-size: 24px;
  line-height: normal;
}

.plans-bottom-text .middle {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
}

.plans-bottom-text .link {
  color: #1fd1ff;
  font-weight: 600;
}

/* Mission */
.mission-section {
  padding: 0;
}

.mission-bar {
  width: 100%;
  background: rgba(0, 191, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mission-inner {
  padding-top: 18px;
  padding-bottom: 18px;
}

.mission-left {
  color: #fff;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 36px;
  font-weight: 700;
}

.mission-right {
  color: #fff;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 400;
}

/* Figures */
#figures {
  background-color: rgba(255, 255, 255, 0.03);
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 6px;
}

.chart-title {
  font-size: 0.8rem;
  color: var(--text-main);
  text-align: center;
  background: rgba(0, 191, 255, 0.1);
  width: 100%;
  padding: 5px;
}

.chart-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  overflow: hidden;
}

.chart-columns {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 260px;
}

.chart-columns img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Accelerators */
#accelerators {
  background: linear-gradient(90deg, #050814 0%, #02030a 100%);
  padding-top: 40px;
  padding-bottom: 60px;
}

.accelerators-grid .card-beyond {
  background: #071820;
  border-radius: 6px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  height: 100%;
  color: #ffffff;
}

.card-beyond .card-label {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  opacity: 0.9;
}

.card-beyond .card-list {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  font-size: 0.85rem;
  color: #d2d8e6;
}

.card-beyond .card-list li {
  margin-bottom: 4px;
}

/* Awards */
.awards-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.awards-row {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.awards-row img {
  width: 200px;
  height: auto;
}

/* Communication plan */
#communication {
  background: radial-gradient(
    circle at left,
    #121821 0,
    #05070b 55%,
    #020308 100%
  );
  padding: 60px 0 70px;
}

#communication .section-heading {
  margin-bottom: 12px;
}

.comm-intro {
  text-align: center;
  font-size: 0.8rem;
  color: #b7c0d6;
  margin-bottom: 28px;
}

.comm-main {
  max-width: 660px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

#communication ul {
  list-style-position: outside;
  margin: 0;
}

.kpi-card {
  padding: 20px 22px;
  font-size: 0.85rem;
  color: #d2d8e6;
}

.kpi-card-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.kpi-card ul {
  margin: 0;
  padding-left: 18px;
}
.kpi-card li {
  margin-bottom: 4px;
}

.pills-card {
  padding: 16px 18px;
}

.comm-pill {
  background: #071820;
  border-radius: 4px;
  padding: 10px 14px;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comm-pill::before {
  content: url("../assets/check-icon.svg");
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.75rem;
  margin-right: 20px;
}

.comm-columns-bottom {
  margin-top: 26px;
}

.comm-columns-bottom .comm-box {
  background: #071820;
  border-radius: 4px;
  padding: 16px 18px;
  font-size: 0.8rem;
  color: #d2d8e6;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.comm-columns-bottom ul {
  padding-left: 18px;
  margin: 0;
}

.comm-columns-bottom li {
  margin-bottom: 4px;
}

/* Team */
#team {
  padding: 60px 0;
  background: #05070b;
  color: #fff;
}

#team .section-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #b3becf;
  margin-bottom: 4px;
}

#team .section-heading {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

#team .team-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

#team .member {
  background: #02252d;
  border-radius: 999px;
  padding: 10px 20px 10px 10px;
  display: flex;
  align-items: center;
  max-width: 260px;
  min-width: 220px;
}

#team .avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb473, #f86b6b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin-right: 12px;
  flex-shrink: 0;
  overflow: hidden;
}

#team .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#team .member-name {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
}

/* Footer (quiz) */
footer {
  padding: 0;
  background: none;
  border-top: none;
  flex-shrink: 0;
}

.quiz-footer {
  position: relative;
  padding: 80px 0 40px;
  background-image: url("../assets/footer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.quiz-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.quiz-footer > .container {
  position: relative;
  z-index: 1;
}

.quiz-footer-small {
  font-size: 0.8rem;
  color: #b7c0d6;
  margin-bottom: 8px;
}

.quiz-footer-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.quiz-footer-btn {
  padding: 10px 30px;
  border-radius: 8px;
  border: none;

  margin-bottom: 26px;
}

.quiz-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.quiz-footer-nav a {
  color: #d2d8e6;
  cursor: pointer;
}
.quiz-footer-nav a:hover {
  color: #ffffff;
}

.quiz-footer-copy {
  font-size: 0.7rem;
  color: #8f9abc;
  margin: 0;
}

/* Responsive */
/* @media (max-width: 767.98px) {
      
    } */
.beyond-horizon-img-section {
  background: rgba(255, 255, 255, 0.03);
  padding: 60px 0;
}

.bh-full-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.custom-toggler {
  position: relative;
  z-index: 1050; 
}


@media (max-width: 991.98px) {
  .main-navbar {
    background: linear-gradient(270deg, #010b0d 0%, #182227 100%);
  }
  #mainNav {
    /* background-color: rgba(5, 8, 20, 0.97);   */
    background: linear-gradient(
      270deg,
      #010b0d 0%,
      #182227 100%
    ); 
    padding: 12px 16px 16px;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%; 
    left: 0;
    right: 0;
    z-index: 1070;
    pointer-events: auto;
  }

  /* When navbar is fixed ensure collapse still appears above content */
  .main-navbar.is-fixed .navbar-collapse {
    z-index: 1080;
  }

  .navbar-collapse.show {
    z-index: 1070;
    pointer-events: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 0 2.5rem;
  }
  .hero-orb-wrap {
    width: 320px;
    max-width: 80vw;
    /* margin: 0 auto 16px; */
    transform: translateY(0);
    margin-top: 97px;
    /* margin-left: 10px; */
  }
  .mission-section {
    padding: 20px 0;
  }
  .mission-bar {
    background: radial-gradient(circle at top left, #0b1624 0, #050814 70%);
    border-bottom: none;
  }
  .mission-inner {
    border-radius: 10px;
    padding-inline: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .mission-right {
    font-size: 24px;
  }

  .comm-main {
    grid-template-columns: 1fr;
  }
  .kpi-card,
  .pills-card {
    padding: 16px 16px;
  }
  .comm-columns-bottom {
    margin-top: 20px;
  }
  .comm-columns-bottom .comm-box {
    margin-bottom: 10px;
  }
  .top-hero-wrapper {
    background-image: url(../assets/hero-mobile.png);
    background-size: cover;
  }
  #team .team-row {
    justify-content: center;
  }
  #team .member {
    width: 100%;
    max-width: 100%;
  }
  #team .col-sm-6,
  #team .col-md-4,
  #team .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .quiz-footer-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .quiz-footer-nav a {
    display: block;
    width: 100%;
    text-align: center;
  }

  .quiz-footer-title {
    font-size: 1.3rem;
  }

  .awards-row {
    flex-direction: column;
    align-items: center;
  }
  .awards-row img {
    width: 80%;
  }
}

@media (min-width: 992px) {
  .hero {
    padding-top: 6.5rem;
    padding-bottom: 3rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .section-heading {
    font-size: 1.4rem;
  }
}

@media (max-width: 991.98px) {
  .navbar .d-flex.align-items-center {
    gap: 26px;
  }
   /* .logo-text img{
    width: 70%;
  } */
}

@media (min-width: 992px) {
  .navbar-nav {
    gap: 18px;
  }

  .navbar-dark .navbar-nav .nav-link {
    font-size: 0.75rem;
    padding-inline: 0;
   
  }
  .main-navbar .navbar-nav .nav-link {
    font-size: 13px !important;
}
  
}

@media (max-width: 370px) {
  .main-navbar .cta-btn.d-inline-flex.d-lg-none {
    padding: 6px 12px;
    width: auto;
    font-size: 0.7rem;
  }
 
}

.top-hero-wrapper::before {
  pointer-events: none;   
}


@media (max-width: 991.98px) {
  .navbar-collapse.show {
    position: fixed;
    top: 56px;        
    left: 0;
    right: 0;
    z-index: 2000;       
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }


  .main-navbar,
  .main-navbar.is-fixed {
    z-index: 2100;
  }
}
@media (min-width: 992px) {

  .main-navbar {
    width: 100%;
  }

  .main-navbar > .container {
    max-width: 100%;
    width: 100%;
    padding-inline: 24px;  
  }

  .main-navbar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .main-navbar .navbar-collapse {
    flex-grow: 1;
  }

  .main-navbar .navbar-nav {
    flex-wrap: nowrap;       
    gap:10px;
  }

  .main-navbar .navbar-nav .nav-link {
    white-space: nowrap;     
    padding-inline: 0;
    /* font-size: 0.8rem !important; */
  }

  
  .main-navbar .navbar-nav .nav-link {
    font-size: 13px !important;
}
.cta-btn {
    padding: 9px 9px;
  }
}
 

.logo-text img {
  height: 40px;        
  width: auto;
}

@media (max-width: 991.98px) {
  .logo-text img {
    height: 32px;
    width: auto;
  }
}

@media (min-width: 992px) {

  .main-navbar {
    width: 100%;
  }

  .main-navbar > .container {
    max-width: 100%;
    width: 100%;
    padding-inline: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .main-navbar .d-flex.align-items-center {
    flex: 0 0 auto;            
  }

  .main-navbar .navbar-collapse {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;   
  }

  .main-navbar .navbar-nav {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .main-navbar .navbar-nav .nav-link {
    white-space: nowrap;
    padding-inline: 0;
    font-size: 13px !important;
  }

  .main-navbar .cta-btn.d-none.d-lg-inline-flex {
    /* margin-left: 24px; */
    padding: 9px 18px;
    width: auto;
  }
}
