@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --bg: #0b0d11;
  --bg2: #020b16;
  --accent: #00b4d8;
  --accent-soft: rgba(0, 180, 216, 0.12);
  --text: #fff;
  --muted: #b7c3d2;
  --card: rgba(10, 16, 26, 0.4);
  --radius: 14px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

body.fade-in {
  opacity: 1;
}

body.fade-out {
  opacity: 0;
}


body {
  background: radial-gradient(circle at top, #061a2e 0%, #020408 40%, #000 90%);
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  min-height: 100vh;
}

.logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.6px;
  text-decoration: none;
  cursor: pointer;
}

.logo:hover {
  color: #00b4d8; /* optional hover glow */
  transition: color 0.3s ease;
}

/* TOPBAR -------------------------------------------------- */
.topbar {
  width: 100%;
  background: linear-gradient(90deg, rgba(255,158,54,0.23), rgba(255, 106, 0, 0.7));
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  letter-spacing: 0.1px;
}

/* NAVBAR -------------------------------------------------- */
/* NAVBAR — logo left / links right */
.navbar {
  width: 100%;
  height: 68px;
  background: rgba(3, 6, 10, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between; /* separates logo left, nav right */
  padding: 0 54px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* logo stays on left */
.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.6px;
  color: #fff;
  text-decoration: none;
}

/* nav links pushed to the right */
.nav-links {
  margin-left: auto; /* ensures everything aligns to the right */
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: flex-end; /* right-align links */
}

.nav-links ul li {
  position: relative;
}

.nav-links ul > li > a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 0.89rem;
  display: inline-block;
  padding: 12px 0;
  transition: color 0.3s ease;
}

.nav-links ul > li > a:hover {
  color: var(--accent);
}

/* dropdowns stay positioned correctly */
.has-dropdown .dropdown {
  position: absolute;
  top: 42px;
  left: 0;
  background: rgba(10, 16, 26, 0.95);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 12px;
  min-width: 200px;
  display: none;
  flex-direction: column;
  padding: 8px 0;
  box-shadow: 0 18px 36px rgba(0,0,0,0.35);
}

.has-dropdown:hover .dropdown {
  display: flex;
  animation: fadeIn 0.2s ease-in-out;
}

.dropdown li a {
  padding: 9px 15px;
  color: #d9e2f1;
  display: block;
}

.dropdown li a:hover {
  background: rgba(0,180,216,0.06);
  color: #fff;
  border-left: 2px solid var(--accent);
}

/* mobile toggle icon */
.mobile-toggle {
  background: none;
  color: #fff;
  border: none;
  font-size: 1.4rem;
  display: none;
  cursor: pointer;
}

/* LANGUAGE DROPDOWN ----------------------------------- */
.has-dropdown.lang {
  position: relative;
}

.has-dropdown.lang > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.has-dropdown.lang > a img {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
}

/* Flag dropdown */
.has-dropdown.lang .dropdown.flags {
  min-width: 170px;
  text-align: left;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 0;
}

.dropdown.flags li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: #e3e8ef;
  transition: 0.25s;
}

.dropdown.flags li a img {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
}

.dropdown.flags li a:hover {
  background: rgba(0, 180, 216, 0.15);
  color: #00b4d8;
}

/* Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* --- EVALUATION CARDS 2x2 GRID LAYOUT --- */
.eval-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* auto-fit ensures 2x2 on large screens, 1x1 on mobile */
  gap: 40px 40px; /* horizontal and vertical spacing */
  justify-content: center;
  align-items: stretch;
  max-width: 900px; /* keeps it neat */
  margin: 0 auto;
  padding: 40px 20px;
}

/* Card styling */
.eval-card {
  background: linear-gradient(180deg, rgba(10,20,40,1), rgba(3,6,12,1));
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.eval-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,180,216,0.3);
}

/* Adjust inner content spacing */
.eval-top {
  padding: 30px 25px;
  text-align: center;
  color: #fff;
}

.eval-content {
  padding: 25px 25px 35px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Responsive fix for smaller screens */



/* === TRADING OBJECTIVES - Modern Glowing Layout === */
.trading-objectives-section {
  background: #0a0f18;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.trading-objectives-section h2 {
  color: #00b4d8;
  margin-bottom: 8px;
  font-size: 2rem;
}

.trading-objectives-section p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}

.selectors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

select {
  background: #111827;
  color: #00b4d8;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1rem;
}

.challenge-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.challenge-card {
  background: rgba(17,24,39,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease;
}

.challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0,180,216,0.4);
}

.challenge-card h3 {
  color: #00b4d8;
  margin-bottom: 12px;
  text-align: center;
}

.price {
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
  transition: all .2s ease;
}

.challenge-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.challenge-card ul li {
  margin-bottom: 6px;
  color: rgba(255,255,255,0.9);
}

/* TRADING OBJECTIVE CARD — Neon Running Gradient Border */
.challenge-card {
  position: relative;
  padding: 25px;
  border-radius: 14px;
  background: #0b0f1a;
  overflow: hidden;
  z-index: 1;
  color: #fff;
}

/* Animated gradient border */
.challenge-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px; /* border thickness */
  border-radius: 14px;

  background: linear-gradient(
      120deg,
      #00eaff,
      #007bff,
      #7a00ff,
      #00eaff,
      #007bff
  );

  background-size: 400% 400%;
  animation: objectivesNeonRun 3s linear infinite;

  z-index: -1;

  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

/* Animate border */
@keyframes objectivesNeonRun {
  0% { background-position: 0% 50%; }
  25% { background-position: 50% 50%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 50%; }
  100% { background-position: 0% 50%; }
}

/* --- TERMS ACCORDION STYLE --- */
.trading-section.terms {
  background: #02070f;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}

.trading-section.terms h2 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00b4d8, #37d2ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.trading-section.terms p {
  color: #b7c3d2;
  font-size: 1rem;
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.trading-section.terms .faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.trading-section.terms .faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: 0.3s ease;
}

.trading-section.terms .faq-item:hover {
  border-color: rgba(0,180,216,0.3);
  box-shadow: 0 0 18px rgba(0,180,216,0.1);
}

.trading-section.terms .faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.trading-section.terms .faq-question:hover {
  background: rgba(0,180,216,0.08);
}

.trading-section.terms .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  background: rgba(255,255,255,0.02);
  color: #b7c3d2;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: max-height 0.3s ease;
}

.trading-section.terms .faq-answer p {
  padding: 16px 0;
}

/* Active state when open */
.trading-section.terms .faq-item.active .faq-answer {
  max-height: 500px;
}

/* HERO -------------------------------------------------- */
.hero {
  padding-top: 90px; /* for sticky nav */
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,180,216,0.35) 0%, transparent 35%),
    radial-gradient(circle at 90% 0%, rgba(7, 87, 255, 0.45) 0%, rgba(6, 10, 15, 0) 35%),
    linear-gradient(180deg, rgba(2,6,11,1) 0%, rgba(0,0,0,1) 70%);
}

.hero-inner {
  width: min(1180px, 100%);
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 10px 54px 60px;
}

.hero-content {
  flex: 1 1 55%;
}

.hero-badge {
  display: inline-block;
  background: rgba(0,180,216,0.12);
  border: 1px solid rgba(0,180,216,0.5);
  border-radius: 9999px;
  padding: 4px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  line-height: 1.05;
  background: linear-gradient(90deg, #fff 0%, #73dfff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.hero-content p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 37rem;
  line-height: 1.6;
}

/* rating line */
.hero-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.rate-label {
  background: rgba(31, 192, 67, 0.05);
  border: 1px solid rgba(31, 192, 67, 0.4);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
}

.rate-stars {
  display: flex;
  gap: 5px;
}

.star,
.star:before {
  width: 15px;
  height: 15px;
  background: #1fc043;
  clip-path: polygon(50% 0%, 63% 38%, 100% 38%, 70% 59%, 82% 100%, 50% 75%, 18% 100%, 30% 59%, 0 38%, 37% 38%);
  display: inline-block;
}

.star.half {
  background: linear-gradient(90deg, #1fc043 50%, rgba(255,255,255,0.15) 50%);
}

.rate-link {
  color: #89cbff;
  font-size: 0.78rem;
  text-decoration: underline;
}

/* hero actions */
.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 9999px;
  padding: 12px 20px;
  font-size: 0.9rem;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(90deg, #00b4d8 0%, #37d2ff 100%);
  color: #00121d;
  box-shadow: 0 10px 30px rgba(0,180,216,0.5);
}

.btn.primary:hover {
  filter: brightness(1.04);
}

.btn.ghost {
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.1);
  color: #fff;
}

.btn.ghost:hover {
  background: rgba(255,255,255,0.05);
}

/* HERO VISUAL — enlarged and centered */
.hero-visual {
  flex: 1 1 38%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  min-height: 460px; /* more height for larger circle */
  position: relative;
  margin-top: 40px;
}

/* larger glowing circle */
.hero-circle {
  width: 360px;    /* was 200px */
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(0,180,216,0.85), rgba(0,0,0,0.15));
  border: 3px solid rgba(0,180,216,0.45);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0,180,216,0.4), 0 0 160px rgba(0,180,216,0.15);
  animation: glowPulse 5s ease-in-out infinite;
}

.hero-circle::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 3px dashed rgba(0,180,216,0.4);
  animation: spin 12s linear infinite;
}

.circle-inner {
  text-align: center;
}

.perc {
  font-size: 4.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
}

.small {
  font-size: 0.9rem;
  color: #cceaf3;
  opacity: 0.85;
}

/* info card under the circle */
.hero-panel {
  background: rgba(7, 12, 17, 0.7);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 26px 36px;
  width: 360px; /* same width as circle */
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  text-align: center;
}

.panel-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
}

.panel-text {
  font-size: 0.88rem;
  color: #b7c3d2;
  margin-top: 6px;
  line-height: 1.6;
}

/* subtle pulsing glow */
@keyframes glowPulse {
  0%,100% {
    box-shadow: 0 0 80px rgba(0,180,216,0.4), 0 0 160px rgba(0,180,216,0.1);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 120px rgba(0,180,216,0.6), 0 0 200px rgba(0,180,216,0.2);
    transform: scale(1.04);
  }
}

/* --- FIX Section Separation (Hero → How It Works) --- */

/* Smooth gradient overlay to connect hero and next section */
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px; /* slightly overlap the next section */
  left: 0;
  right: 0;
  height: 160px; /* smooth fade height */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #02070f 100%);
  z-index: 1;
  pointer-events: none;
}

/* Ensure hero has relative positioning for overlay */
.hero {
  position: relative;
  z-index: 2;
}

/* Slight fade at top of "How it works" to blend nicely */
.steps {
  background: linear-gradient(to top, #02070f 0%, rgba(0, 0, 0, 0) 100%), #02070f;
  position: relative;
  z-index: 1;
}

/* HOW IT WORKS - Full Width Match Hero Section */
.steps {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 100px 0;
  background: radial-gradient(circle at 20% 10%, rgba(0,180,216,0.12), rgba(0,0,0,1) 90%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.steps h2 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00b4d8, #37d2ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.steps-sub {
  color: #b7c3d2;
  margin-bottom: 40px;
  font-size: 1rem;
}

.steps-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  width: 100%;
  padding: 0 50px; /* add nice breathing room without boxing it */
  box-sizing: border-box;
}

.step-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  width: 320px;
  padding: 30px 24px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,180,216,0.15);
}

.step-card:hover {
  border-color: #00b4d8;
  transform: translateY(-5px);
}


/* COOKIE BAR --------------------------------------------- */
.cookie-bar {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 7, 12, 0.85);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  z-index: 999;
  backdrop-filter: blur(6px);
}

.cookie-btn {
  background: #00b4d8;
  border: none;
  border-radius: 999px;
  padding: 5px 13px;
  cursor: pointer;
  font-weight: 600;
  color: #00121d;
}

/* ANIMATIONS --------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* RESPONSIVE --------------------------------------------- */




/* GENERAL CONTAINERS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0c0c0c;
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  color: #4b5563;
  margin-bottom: 50px;
  font-size: 1rem;
}

/* EVALUATION SECTION - DARK UI */
.evaluation {
  background: radial-gradient(circle at 20% 10%, rgba(0,180,216,0.15), rgba(0,0,0,1) 90%);
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

.evaluation .section-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 2.2rem;
}

.evaluation .section-sub {
  color: #b7c3d2;
  margin-bottom: 50px;
  font-size: 1rem;
}

.eval-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 0 50px;
  justify-content: center;
}

.eval-card {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10,20,40,1), rgba(3,6,12,1));
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.eval-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,180,216,0.3);
}

.eval-top {
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}

.eval-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.eval-top h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.eval-badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  color: #00b4d8;
  background: rgba(0,180,216,0.1);
  text-transform: uppercase;
}

.eval-content {
  background: rgba(255,255,255,0.03);
  padding: 26px 20px 32px;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.eval-content h4 {
  color: #00b4d8;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.eval-content h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}

.eval-content p {
  color: #bfc9d8;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Gradient styles for each card */
.eval-card.blue .eval-top {
  background: linear-gradient(145deg, #05134b, #0830b8);
}
.eval-card.green .eval-top {
  background: linear-gradient(145deg, #013c33, #00b89f);
}
.eval-card.orange .eval-top {
  background: linear-gradient(145deg, #5c1f00, #ff6700);
}
.eval-card.purple .eval-top {
  background: linear-gradient(145deg, #300c5e, #64377e);
}

/* TRADING OBJECTIVES SECTION - MATCH DARK UI */
.objectives {
  background: linear-gradient(180deg, rgba(0,8,20,1) 0%, rgba(0,0,0,1) 100%);
  padding: 100px 0;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.objectives .section-title {
  color: #fff;
  font-weight: 700;
}

.objectives .section-sub {
  color: #b7c3d2;
  margin-bottom: 50px;
  font-size: 1rem;
}

.objectives-filter {
  margin: 0 auto 60px;
  max-width: 900px;
}

.filter-row {
  margin-bottom: 30px;
}

.filter-row h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #b7c3d2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.filter-buttons button {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.filter-buttons button img {
  width: 18px;
  height: 14px;
}

.filter-buttons button.active,
.filter-buttons button:hover {
  background: linear-gradient(90deg, #00b4d8, #37d2ff);
  color: #000;
  border-color: transparent;
  box-shadow: 0 0 12px rgba(0,180,216,0.6);
}

.objectives-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.obj-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  text-align: center;
  padding: 24px 28px;
  width: 240px;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.obj-box:hover {
  background: rgba(0,180,216,0.15);
  border-color: rgba(0,180,216,0.4);
  transform: translateY(-4px);
}

.obj-box h5 {
  color: #00b4d8;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.obj-box p {
  font-size: 0.9rem;
  color: #e2e8f0;
  font-weight: 600;
}

/* ===========================================
   FIXED + IMPROVED FOOTER LAYOUT
   =========================================== */

.site-footer {
    background: linear-gradient(180deg, rgba(0,8,20,1) 0%, rgba(0,0,0,1) 100%);
    color: #dbe7f3;
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px 80px;
    align-items: flex-start;
    text-align: left;
}

/* LEFT COLUMN */
.footer-left {
    text-align: left;
}

.footer-left h3 {
    font-size: 1.4rem;
    color: #00b4d8;
    margin-bottom: 10px;
}

.footer-left p {
    color: #b7c3d2;
    line-height: 1.6;
    max-width: 300px;
    margin-top: 10px;
}

/* LINK COLUMNS */
.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 14px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b7c3d2;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-links a:hover {
    color: #00b4d8;
}

/* BOTTOM COPYRIGHT */
.footer-bottom {
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.85rem;
    color: #8895a7;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-left,
    .footer-links {
        text-align: center;
    }

    .footer-left p {
        margin: 0 auto;
    }
}


/* SCALING PLAN PAGE ---------------------------------- */
.scaling-hero {
  background: linear-gradient(180deg, rgba(0,8,20,1) 0%, rgba(0,0,0,1) 100%);
  color: #fff;
  text-align: center;
  padding: 120px 20px 80px;
}

.scaling-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, #fff, #73dfff);
  background-clip: text;               /* ✅ standard property */
  -webkit-background-clip: text;       /* ✅ for Safari/Chrome */
  -webkit-text-fill-color: transparent;/* ✅ makes text show gradient */
}

.scaling-hero p {
  max-width: 750px;
  margin: 0 auto;
  color: #b7c3d2;
  font-size: 1rem;
  line-height: 1.6;
}

.scaling-steps {
  background: radial-gradient(circle at 20% 10%, rgba(0,180,216,0.12), rgba(0,0,0,1));
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.scaling-steps h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.scaling-steps .sub {
  color: #b7c3d2;
  margin-bottom: 60px;
}

.scaling-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.scale-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: 0.3s ease;
}

.scale-card:hover {
  background: rgba(0,180,216,0.1);
  border-color: rgba(0,180,216,0.5);
  transform: translateY(-5px);
}

.scale-card h3 {
  color: rgba(0,180,216,0.9);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.scale-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.scale-card p {
  color: #b7c3d2;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Highlight section */
.scaling-highlight {
  background: linear-gradient(180deg, rgba(0,8,20,1) 0%, rgba(0,0,0,1) 100%);
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

.highlight-box {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(0,180,216,0.08);
  border: 1px solid rgba(0,180,216,0.3);
  border-radius: 14px;
  padding: 60px 30px;
  box-shadow: 0 0 60px rgba(0,180,216,0.2);
}

.highlight-box h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.highlight-box p {
  color: #b7c3d2;
  line-height: 1.7;
}

/* FAQ PAGE */
.faq-hero {
  background: radial-gradient(circle at 20% 10%, rgba(0,180,216,0.15), rgba(0,0,0,1) 90%);
  color: #fff;
  text-align: center;
  padding: 120px 20px 60px;
}

.faq-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #fff 0%, #73dfff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.faq-hero p {
  color: #b7c3d2;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.faq-section {
  background: #02070f;
  padding: 80px 20px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.faq-question:hover {
  background: rgba(0,180,216,0.1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  background: rgba(255,255,255,0.02);
  color: #b7c3d2;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 16px 0;
}

/* TESTIMONIALS PAGE */
.testimonial-hero {
  background: radial-gradient(circle at 20% 10%, rgba(0,180,216,0.15), rgba(0,0,0,1) 90%);
  color: #fff;
  text-align: center;
  padding: 120px 20px 60px;
}

.testimonial-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  background: linear-gradient(90deg, #ffffff 0%, #00b4d8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.testimonial-hero p {
  color: #b7c3d2;
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
}

.testimonials-section {
  background: #02070f;
  padding: 80px 20px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 30px 25px;
  color: #b7c3d2;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,180,216,0.15);
}

.testimonial-quote {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 3rem;
  color: #00b4d8;
  opacity: 0.2;
}

.testimonial-card h4 {
  color: #fff;
  margin-top: 18px;
  font-weight: 600;
}

.testimonial-card span {
  font-size: 0.85rem;
  color: #82b6c9;
}

/* TRADING PAGE */
.trading-hero {
  background: radial-gradient(circle at 20% 10%, rgba(0,180,216,0.15), rgba(0,0,0,1) 90%);
  color: #fff;
  text-align: center;
  padding: 120px 20px 60px;
}

.trading-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff 0%, #00b4d8 100%);
  background-clip: text;               /* ✅ Standard property for compatibility */
  -webkit-background-clip: text;       /* ✅ WebKit support (Chrome, Safari, Edge) */
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.trading-hero p {
  color: #b7c3d2;
  max-width: 720px;
  margin: 0 auto;
}

.trading-section {
  padding: 80px 20px;
  background: #02070f;
  color: #fff;
}

.trading-section.alt {
  background: #01050b;
}

.trading-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #00b4d8, #37d2ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trading-section p {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
  color: #b7c3d2;
}

.update-card {
  max-width: 700px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 25px 30px;
  margin: 0 auto;
}

.update-card ul {
  margin-top: 10px;
  line-height: 1.6;
}

.calendar-box iframe {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,180,216,0.2);
}

.calendar-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 0 18px rgba(0,180,216,0.15);
}

.platforms {
  text-align: center;
  padding: 80px 20px;
  background: transparent;
}

.platforms .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #00b4d8;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.platforms .section-sub {
  color: #b7c3d2;
  font-size: 1rem;
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.platform-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.platform-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 40px 30px;
  max-width: 700px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 0 12px rgba(0,180,216,0.1);
}

.platform-card:hover {
  border-color: #00b4d8;
  box-shadow: 0 0 22px rgba(0,180,216,0.25);
  transform: translateY(-6px);
}

.platform-icon {
  width: 200px;
  height: 60px;
  margin-bottom: 20px;
}

.platform-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.platform-card p {
  color: #b7c3d2;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.platform-features {
  list-style: none;
  color: #9fb1c4;
  font-size: 0.9rem;
  line-height: 1.8;
  padding: 0;
  margin: 0;
}

.platform-features li {
  margin: 5px 0;
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.coach-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  text-align: center;
  padding: 25px;
}

.coach-card img {
  border-radius: 50%;
  margin-bottom: 10px;
  width: 100px;
  height: 100px;
}

/* --- About us SECTION --- */
    section {
      padding: 100px 20px;
      background: #01050b;
      color: #fff;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    section:nth-child(even) {
      background: #02070f;
    }
   h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00b4d8, #37d2ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 auto 20px;
    width: 100%;
    display: block;
   }


    p {
      max-width: 850px;
      margin: 0 auto;
      text-align: center;
      color: #b7c3d2;
      line-height: 1.7;
    }

    /* --- CONTACT --- */
    .contact-section {
      background: radial-gradient(circle at 20% 10%, rgba(0,180,216,0.15), rgba(0,0,0,1) 90%);
    }
    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 60px;
      justify-content: center;
      align-items: flex-start;
      max-width: 1100px;
      margin: 0 auto;
    }
    .contact-left, .contact-right { flex: 1; min-width: 320px; }
    .contact-left h2 { font-size: 2rem; margin-bottom: 20px; }
    .contact-form {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      padding: 35px;
    }
    .contact-form input, .contact-form textarea {
      background: #0b121a; border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px; padding: 12px 14px; color: #fff;
      width: 100%; margin-bottom: 16px;
    }
    .contact-form button {
      background: linear-gradient(90deg, #00b4d8, #37d2ff);
      border: none; border-radius: 8px; padding: 12px;
      color: #fff; font-weight: 600; cursor: pointer;
      transition: 0.3s ease;
    }
    .contact-form button:hover { transform: translateY(-2px); }

    /* --- ABOUT --- */
    .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1000px;
      margin: 40px auto 0;
    }
    .about-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px;
      padding: 30px;
      text-align: center;
    }

    /* --- CAREERS --- */
    .careers-section .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }
    .benefit-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px;
      padding: 25px;
      text-align: center;
    }
   .join-btn {
    display: block;
    margin: 40px auto 0;
    background: linear-gradient(90deg, #00b4d8, #37d2ff);
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    padding: 12px 32px;   /* slightly slimmer height */
    text-decoration: none;
    transition: 0.3s;
    width: fit-content;   /* makes button auto-size to text */
    text-align: center;
    }
   .join-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    }

    /* --- REWARDS --- */
    .awards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 900px;
      margin: 40px auto 0;
    }
    .award-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px;
      padding: 30px;
      text-align: center;
    }

    /* === ACADEMY PAGE === */
.academy-hero {
  background: radial-gradient(circle at 20% 10%, rgba(0,180,216,0.15), rgba(0,0,0,1) 90%);
  color: #fff;
  text-align: center;
  padding: 120px 20px 80px;
}
.academy-hero h1 {
  font-size: 2.6rem;
  background: linear-gradient(90deg, #00b4d8, #37d2ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.academy-hero p {
  color: #b7c3d2;
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
}

.academy-section {
  background: #02070f;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}
.academy-section.alt {
  background: #01050b;
}
.academy-section h2 {
  background: linear-gradient(90deg, #00b4d8, #37d2ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  margin-bottom: 24px;
}

.academy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
.academy-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.academy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,180,216,0.25);
}
.academy-card img {
  width: 70px;
  margin-bottom: 12px;
}
.academy-card h3 {
  color: #00b4d8;
  margin-bottom: 10px;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.academy-cta {
  text-align: center;
  padding: 80px 20px;
  background: radial-gradient(circle at 80% 20%, rgba(0,180,216,0.12), rgba(0,0,0,1));
}
.academy-cta h2 {
  font-size: 2rem;
  background: linear-gradient(90deg, #00b4d8, #37d2ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.academy-cta p {
  color: #b7c3d2;
  margin: 10px auto 20px;
  max-width: 600px;
}
.academy-cta .btn.primary {
  background: linear-gradient(90deg, #00b4d8, #37d2ff);
  color: #00121d;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.academy-cta .btn.primary:hover {
  filter: brightness(1.1);
}

/* --- PRICING SECTION --- */
.pricing-section {
  background: radial-gradient(circle at 25% 10%, rgba(0,180,216,0.12), rgba(0,0,0,1) 90%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.pricing-section h2 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00b4d8, #37d2ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.pricing-section p {
  color: #b7c3d2;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* Tabs */
.pricing-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.pricing-tabs .tab {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: #fff;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.pricing-tabs .tab.active,
.pricing-tabs .tab:hover {
  background: linear-gradient(90deg, #00b4d8, #37d2ff);
  color: #00121d;
  box-shadow: 0 0 14px rgba(0,180,216,0.4);
}

/* Grid */
.pricing-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  justify-content: center;
}

.pricing-grid.active {
  display: grid;
}

.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: left;
  transition: 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(0,180,216,0.3);
  box-shadow: 0 0 20px rgba(0,180,216,0.2);
  transform: translateY(-4px);
}

.pricing-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #00b4d8;
}

.pricing-card .price {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  color: #b7c3d2;
  font-size: 0.9rem;
  line-height: 1.6;
}

.pricing-card ul li::before {
  content: "• ";
  color: #00b4d8;
}

.pricing-card .bottom {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
  color: #b7c3d2;
}

.pricing-note .highlight {
  color: #00b4d8;
  font-weight: 600;
}

/* Pricing Card Gradient Border */
/* Pricing Card with Strong Running Gradient Border */
.pricing-card {
  position: relative;
  padding: 25px;
  border-radius: 14px;
  background: #0b0f1a; /* card background */
  overflow: hidden;
  z-index: 1;
}

/* Strong neon animated gradient border */
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px; /* border thickness */
  border-radius: 14px;

  background: linear-gradient(
      120deg,
      #00eaff,
      #007bff,
      #7a00ff,
      #00eaff,
      #007bff
  );

  background-size: 400% 400%;
  animation: neonRun 3s linear infinite;

  z-index: -1;

  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

/* Faster & more obvious animation */
@keyframes neonRun {
  0% { background-position: 0% 50%; }
  25% { background-position: 50% 50%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 50%; }
  100% { background-position: 0% 50%; }
}


/* === MOBILE FIXES === */

@media (max-width: 768px) {
.eval-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
  }

.hero-visual {
    align-items: center;
    justify-content: center;
    min-height: auto;
    margin-top: 30px;
    gap: 20px;
  }

  .hero-circle {
    width: 200px;
    height: 200px;
    box-shadow: 0 0 40px rgba(0,180,216,0.3), 0 0 80px rgba(0,180,216,0.15);
  }

  .perc {
    font-size: 2.8rem;
    line-height: 1;
  }

  .small {
    font-size: 0.8rem;
  }

  .hero-panel {
    width: 240px;
    padding: 16px 20px;
    font-size: 0.85rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

/* Topbar */
  .topbar {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  /* Navbar */
  .navbar {
    flex-wrap: wrap;
    padding: 0 14px;
    height: auto;
  }

  .nav-left {
    flex: 1 1 100%;
    justify-content: space-between;
  }

  .search-container {
    width: 100%;
    margin-top: 8px;
  }

  /* Hero Section */
  .hero {
    padding-top: 80px;
    text-align: center;
  }

  .hero-inner {
    flex-direction: column;
    padding: 0 16px 50px;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /* Hero visual adjustments */
  .hero-visual {
    margin-top: 20px;
    min-height: 300px;
  }

  .hero-circle {
    width: 260px;
    height: 260px;
  }

  .hero-panel {
    width: 260px;
    padding: 20px;
  }
}

/* ================================
   FINAL MOBILE NAVIGATION FIX
   Applies to ALL pages
   ================================ */

@media (max-width: 880px) {

  /* Show mobile menu button */
  .mobile-toggle {
      display: block !important;
      font-size: 1.9rem;
      background: none;
      border: none;
      color: #fff;
      cursor: pointer;
      z-index: 99999;
  }

  /* MAIN NAV WRAPPER — MOBILE SLIDE MENU */
  .nav-links {
      position: fixed !important;
      top: 60px !important;
      right: -100% !important;
      width: 100% !important;
      height: calc(100vh - 60px) !important;
      background: rgba(3, 6, 10, 0.98) !important;
      backdrop-filter: blur(6px) !important;
      padding: 25px !important;
      transition: right 0.35s ease !important;
      display: flex !important;
      flex-direction: column !important;
      overflow-y: auto !important;
      z-index: 9990 !important;
  }

  /* OPEN STATE */
  .nav-links.open {
      right: 0 !important;
  }

  /* Remove desktop navigation layout */
  .nav-links ul {
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 16px !important;
      width: 100% !important;
  }

  .nav-links ul li {
      width: 100% !important;
  }

  .nav-links ul li a {
      width: 100% !important;
      padding: 12px 0 !important;
      font-size: 1.15rem !important;
      color: #fff !important;
      display: block !important;
  }

  /* 🔥 DISABLE ALL DROPDOWNS ON MOBILE */
  .dropdown,
  .has-dropdown .dropdown,
  .has-dropdown:hover .dropdown {
      display: none !important;
      opacity: 1 !important;
      background: none !important;
      border: none !important;
      box-shadow: none !important;
      padding: 0 !important;
      position: static !important;
  }

  /* Remove dropdown arrow indicator */
  .has-dropdown > a::after {
      display: none !important;
  }

  /* NAVBAR FIX PROPER ALIGNMENT */
  .navbar {
      height: 60px !important;
      padding: 0 18px !important;
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
  }

  /* ENSURE LOGO + TOGGLE ARE ON SAME LINE */
  .nav-left {
      width: 100% !important;
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
  }
}

/* Ensure .nav-left works globally */
.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =======================================
   FIX DROPDOWNS FOR DESKTOP ONLY
   ======================================= */

/* Reset dropdown rules for desktop */
@media (min-width: 881px) {
    .dropdown {
        display: none !important;
        position: absolute !important;
        top: 42px !important;
        left: 0 !important;
        background: rgba(10, 16, 26, 0.95) !important;
        border: 1px solid rgba(255,255,255,0.03) !important;
        border-radius: 12px !important;
        min-width: 200px !important;
        padding: 8px 0 !important;
        box-shadow: 0 18px 36px rgba(0,0,0,0.35) !important;
        flex-direction: column !important;
    }

    .has-dropdown:hover .dropdown {
        display: flex !important;
    }

    .has-dropdown > a::after {
        content: "▾";
        margin-left: 6px;
        font-size: 0.6rem;
        color: #fff;
    }
}

/* =======================================
   MOBILE: keep dropdown disabled
   ======================================= */
@media (max-width: 880px) {
    .dropdown,
    .has-dropdown .dropdown,
    .has-dropdown:hover .dropdown {
        display: none !important;
    }

    .has-dropdown > a::after {
        display: none !important;
    }
}
/* === Neon Gradient Effect for Step Cards & Evaluation Cards === */
.step-card,
.eval-card {
  position: relative;
  padding: 25px;
  border-radius: 14px;
  background: #0b0f1a; /* Dark card background */
  overflow: hidden;
  z-index: 1;
  color: #fff;
}

/* Animated Neon Gradient Border */
.step-card::before,
.eval-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px; /* Border thickness */
  border-radius: 14px;

  background: linear-gradient(
      120deg,
      #00eaff,
      #007bff,
      #7a00ff,
      #00eaff,
      #007bff
  );

  background-size: 400% 400%;
  animation: neonRunSteps 3s linear infinite;

  z-index: -1;

  /* Punch out the center so only border shows */
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

/* Animation */
@keyframes neonRunSteps {
  0% { background-position: 0% 50%; }
  25% { background-position: 50% 50%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 50%; }
  100% { background-position: 0% 50%; }
}
