* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
  text-decoration: none;
}

:root {
  --biggest-h-size: 3.2rem;
  --bigger-h-size: 2.5rem;
  --big-h-size: 1.7rem;
  --small-h-size: 1.2rem;
  --normal-text-size: 1rem;
  --line-height: 1.7rem;
  --color-primary:#51B8E1;
  --fade-color-primary: #0095D0;
  --icon-hover-color: #E4E4E4;
  --icon-hover-color2: #0000001A;
}

body.no-scroll {
  overflow: hidden;
}

.logo {
  max-width: 100px;
}

img {
  width: 100%;
  height: 100%;
}

p {
  line-height: var(--line-height);
  font-size: 1.1rem;
}

.section {
  padding: 1rem;
}

.btn {
  border: none;
  padding: 1rem 1.5rem;
  color: #fff;
  background: var(--color-primary);
  z-index: 1;
  border-radius: 5px;
  font-size: var(--normal-text-size);
  font-weight: bold;
  display: inline-block;
}

.btn:active {
  background: var(--fade-color-primary);
}

.active {
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
  
}

a {
  --webkit-tap-highlight-color: transparent;
}



.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--color-primary);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
}

.nav-bar.shadow {
  box-shadow: 0 2px 20px #353535;
}


.nav-bar .logo {
  width: 60px;
  height: 60px;
}

.nav-bar img {
  object-fit: contain;
}

.nav-list {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 6rem 1rem 0;
}

.nav-list ul {
  list-style: none;
}

.nav-list li {
  margin-bottom: 2.5rem;
}

.nav-list a {
  font-size: 1.1rem;
  color: #000;
}
.nav-list.hide {
  display: none;
}

.close-icon,.icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
}

.close-icon:active,
.icon:active {
  background: var(--icon-hover-color);
}

.menu-icon {
  width: 30px;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
}


.menu-icon {
  width: 30px;
  height: 30px;
}

.menu-icon:active {
  background: var(--icon-hover-color2);
}

.hero-section {
  margin-top: 5rem;
}

.hero-container {
  background: url("../assets/images/mrbeast-money.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 4rem 1rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-container::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #00000078;
}

.hero-title {
  font-size: var(--biggest-h-size);
  font-weight: 400;
  width: 200px;
  color: #fff;
  margin-bottom: 2rem;
}

.hero-description {
  color: #fff;
  font-size: var(--normal-text-size);
  margin-bottom: 2rem;
  width: 300px;
}

.pop-up-notification,
.pop-up-notification2{
  background: black;
  color: #fff;
  border-top: 1px solid gold;
  border-bottom: 1px solid gold;
  border-left: 5px solid var(--color-primary);
  border-right: 5px solid var(--color-primary);
  position: fixed;
  padding: 1rem;
  display: inline-block;
  top: 100px;
  left: 20px;
  z-index: 900;
  box-shadow: 0 0 10px var(--color-primary);
  box-shadow: 0 0 12px var(--color-primary);
  box-shadow: 0 0 15px var(--color-primary);
  box-shadow: 0 0 17px var(--color-primary);
  
  transition: all .5s;
  max-width: 320px;
}

.pop-up-notification2 {
  z-index: 20000;
  transition: all 1s;
}

.pop-up-notification.hide,
.pop-up-notification2.hide {
  left: -400px;
}

.pop-up-notification .name,
.pop-up-notification2 .name {
  color: gold;
}

.pop-up-notification .country,
.pop-up-notification2 .country {
  font-style: italic;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1rem;
}

.apply-link {
  font-weight: bold;
}

.hero-title,
.hero-subhead,
.hero-description,
.apply-link {
  z-index: 1;
}


.journey-section {
  background: var(--color-primary);
  padding: 3rem 1.5rem;
}

.journey-head {
  font-size: var(--big-h-size);
  font-weight: 500;
  margin-bottom: 4rem;
}

.challenge-timeline {
  margin-bottom: 4rem;
}

.challenge-date {
  background: #54555659;
  color: #fff;
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.4rem;
}

.challenge-title {
  margin-bottom: 1rem;
  font-size: var(--small-h-size);
}

.footer-section {
  background: #fff;
  padding-top: 3rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.footer-top img {
  width: 100px;
}

.footer-top p {
  font-size: 1.1rem;
}


.footer-bottom {
  /* text-align: center; */
}




.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 4rem;
  font-weight: 700;
  color: #000;
}

/* === Benefits Section === */
.benefits-section {
  background: #EAEAEA;
  padding: 60px 20px;
}
.benefits-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
.benefit-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.benefit-box i {
  font-size: 2rem;
  margin-bottom: 15px;
}
.benefit-box h3 {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.benefit-box p {
  font-size: 0.95rem;
  /* color: #000000; */
}

/* === Testimonials Section === */
.testimonials-section {
  background: #D8D8D8;
  padding: 60px 20px;
}
.testimonials-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
.testimonial {
  background: #fff;
  border-bottom: 1rem solid var(--color-primary);
  padding: 25px;
  border-radius: 12px;
  width: 300px;
  text-align: center;
}
.testimonial img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
  object-position: top;
}
.testimonial p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 10px;
  color: #000;
}
.testimonial h4 {
  font-size: 0.9rem;
  color: #00c6ff;
}

/* === CTA Section === */
.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../assets/images/cta.jpg"); 
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  
  text-align: center;
  color: #fff;
  padding: 70px 20px;
}


.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.cta-section p {
  font-size: 1rem;
  margin-bottom: 20px;
}
.cta-btn {
  background: #fff;
  color: #0072ff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  z-index: 1;
}
.cta-btn:hover {
  background: #0f172a;
  color: #00c6ff;
}



/* Desktop blocker */
.desktop-blocker {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100vw;
  height: 100vh;
  background: black;
  color: white;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  z-index: 10000;
}

.desktop-blocker p {
  font-size: 3rem;
  line-height: 4rem;
}


/* Desktop Blocker - Extremely clean & modern */
.desktop-blocker {
  display: none;                    /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.92);   /* Deep slate overlay */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f1f5f9;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow: hidden;
}

.desktop-blocker::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.blocker-content {
  max-width: 420px;
  padding: 2.5rem 2rem;
  animation: fadeInScale 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.phone-icon {
  font-size: 4.5rem;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
  animation: float 3s ease-in-out infinite;
}

.blocker-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1rem 0;
  color: #e0f2fe;
}

.blocker-content p {
  font-size: 1.1rem;
  line-height: 1.55;
  opacity: 0.9;
  margin: 0 0 1.75rem 0;
}

.hint {
  font-size: 0.95rem;
  opacity: 0.75;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Show only on desktop / large screens */
@media (min-width: 780px) {
  .desktop-blocker {
    display: flex;
  }
}

/* Gentle animations */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

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























.audio-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  z-index: 5000;
}

.audio-popup.show {
  visibility: visible;
}


.audio-box {
  background: var(--color-primary);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  z-index: 5000;
  color: #fff;
}

.audio-box p {
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
}

.play-btn {
  background: #000;
  padding: .8rem 1.2rem;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
}

.play-btn:active {
  scale: 1.1;
}