* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: radial-gradient(circle at top, #1a1f2b, #0b0e14);
  color: #fff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}

.logo span {
  color: #ffb347;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  font-size: 14px;
  opacity: 0.85;
}
.gif-card {
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border-radius: 20px;
}



.btn-primary {
  background: linear-gradient(135deg, #ffb347, #ff6a00);
  border: none;
  padding: 12px 22px;
  border-radius: 30px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #ffb347;
  padding: 12px 22px;
  border-radius: 30px;
  color: #ffb347;
  cursor: pointer;
}



/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  padding: 80px 60px;
  align-items: center;
}

.hero-left h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero-left span {
  color: #ffb347;
}

.hero-left p {
  margin: 25px 0;
  opacity: 0.85;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* STATS */
.stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stats h3 {
  font-size: 28px;
  color: #ffb347;
}

.stats span {
  font-size: 13px;
  opacity: 0.7;
}

/* RIGHT SIDE GIF */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}
.lottie-hero {
  width: 320px !important;
  height: 320px !important;
}

.gif-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 20px;
}

.gif-card img {
  width: 320px;
  border-radius: 12px;
}

/* FLOATING CARDS */
.floating-card {
  position: absolute;
  background: rgba(0,0,0,0.6);
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.floating-card.top {
  top: 20px;
  right: 0;
}

.floating-card.bottom {
  bottom: 30px;
  left: 0;
}

/* CATEGORIES */
.categories {
  padding: 45px;
}

.categories h2 {
  margin-bottom: 30px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.category {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;

  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: 18px;
  padding: 28px;
  font-weight: 600;

  background: linear-gradient(135deg, #1b2030, #121620);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.cat-icon {
  font-size: 22px;
}

.cat-title {
  flex: 1;
  margin-left: 14px;
}

.cat-arrow {
  opacity: 0;
  transform: translateX(-6px);
  transition: 0.3s;
}

.category:hover .cat-arrow {
  opacity: 1;
  transform: translateX(6px);
}

.category:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 179, 71, 0.7);
}

/* CYBER */
.category.cyber:hover {
  box-shadow: 0 0 30px rgba(255, 46, 121, 0.55);
}

/* DEVOPS */
.category.devops:hover {
  box-shadow: 0 0 30px rgba(75, 36, 255, 0.55);
}

/* CLOUD */
.category.cloud:hover {
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.55);
}

/* SRE */
.category.sre:hover {
  box-shadow: 0 0 30px rgb(106, 255, 143);
}

/* Full Stack */
.category.fullstack:hover {
  box-shadow: 0 0 30px rgb(255, 179, 71);
}

.category:hover {
  transform: translateY(-6px);
}

.category.cyber {
  border-top: 3px solid #ff2e79;
}
.category.devops { border-top: 3px solid #4b24ff; }
.category.cloud { border-top: 3px solid #00d4ff; }
.category.sre { border-top: 3px solid #6aff8f; }
.category.fullstack { border-top: 3px solid #ffb347; }


.track-page {
  background: #0b0e14;
  color: #fff;
}

/* HERO */
.track-hero {
  padding: 50px 60px;
  background: radial-gradient(circle at top, #1f2333, #0b0e14);
}
.track-hero-content {
  max-width: 700px;   /* prevents text overflow */
}
.track-buttons {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;   /* prevents overlap on small screens */
}
.track-buttons a {
  text-decoration: none;   /* removes underline */
}
.track-hero.cyber {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.track-badge {
  color: #ffb347;
  font-size: 14px;
}

.track-hero h1 {
  font-size: 52px;
  margin: 15px 0;
}

.track-hero p {
  max-width: 600px;
  opacity: 0.85;
}

/* SECTIONS */
.track-section {
  padding: 60px 60px;
}

.track-section.dark {
  background: #0f1320;
}

.track-section.center {
  text-align: center;
}

/* ROLES */
.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
}

.role-card {
  padding: 25px;
  border-radius: 18px;
  background: linear-gradient(135deg,#1c2030,#121620);
  max-width: 420px;
}

/* SKILLS */
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-tags span {
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
}

/* LABS */
.lab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-content: center;
}

.lab-card {
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(135deg,#1b2030,#141826);
  max-width: 420px;
}


.site-footer {
  background: #0b0e14;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 60px;
  margin-top: 80px;
}

/* Footer */
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 0 60px 40px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col h3 span {
  color: #ffb347;
}

.footer-col p {
  opacity: 0.75;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  text-decoration: none;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-col ul li a:hover {
  opacity: 1;
}

.social-icons {
  display: flex;
  flex-direction: row;   /* force horizontal */
  gap: 14px;
  margin-top: 18px;
}

/* SOCIAL ICONS */
.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Brand hover colors */
.social-icons a:hover {
  transform: translateY(-4px);
}

.social-icons a:hover .fa-linkedin-in {
  color: #0a66c2;
}

.social-icons a:hover .fa-youtube {
  color: #ff0000;
}

.social-icons a:hover .fa-instagram {
  color: #e1306c;
}

.social-icons a:hover .fa-facebook-f {
  color: #1877f2;
}


/* BOTTOM BAR */
.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 13px;
  opacity: 0.6;
  border-top: 1px solid rgba(255,255,255,0.06);
}


/* Track Page Style starts from here  */

/* TIMELINE */
.timeline {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.timeline span {
  padding: 14px 22px;
  border-radius: 30px;
  background: rgba(255,255,255,0.07);
}

/* MODES */
.mode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
}

.mode-card {
  padding: 30px;
  border-radius: 18px;
  background: linear-gradient(135deg,#1f2435,#141826);
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  background: #0b0e14;
  position: sticky;
  top: 0;
  z-index: 1000;

  border: none;
  box-shadow: none;
}


.logo a {
  text-decoration: none;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.logo span {
  color: #ffb347;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  opacity: 0.8;
}

.nav-links a:hover {
  opacity: 1;
}

/* BREADCRUMB */
.breadcrumb {
  padding: 12px 60px;
  font-size: 13px;
  background: #0b0e14;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
  color: #ffb347;
}

.breadcrumb span {
  margin: 0 6px;
}

.breadcrumb .current {
  color: #fff;
  font-weight: 500;
}

.track-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.track-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.track-hero-visual img {
  max-width: 420px;
  width: 100%;
  border-radius: 20px;

  /* subtle futuristic glow */
  box-shadow: 0 0 40px rgba(255, 46, 121, 0.25);
}

@media (max-width: 900px) {
  .track-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .track-hero-visual {
    margin-top: 40px;
  }

  .track-buttons {
    justify-content: center;
  }
}
/* WHY TRACK */
.why-track {
  text-align: center;
}

.section-subtitle {
  max-width: 700px;
  margin: 10px auto 50px;
  opacity: 0.75;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.why-card {
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1b2030, #121620);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(255, 46, 121, 0.25);
}

.why-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

/* ENHANCED ROLES */
.roles-enhanced {
  text-align: center;
}

.role-desc {
  opacity: 0.85;
  font-size: 14px;
  margin: 10px 0 15px;
}

.role-labs {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}

.role-labs li {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.role-labs li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff2e79;
}

/* ROLE CTA BUTTON */
.role-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  text-decoration: none;
  color: #ffb347;
  border: 1px solid #ffb347;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.role-cta:hover {
  background: #ffb347;
  color: #000;
  box-shadow: 0 0 20px rgba(255,179,71,0.4);
}

/* SKILLS & TOOLS */
.skills-enhanced {
  text-align: center;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.skill-card {
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1b2030, #121620);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.skill-card h3 {
  margin-bottom: 15px;
}

.skill-list {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.skill-list li {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.skill-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00d4ff;
}

/* TOOL TAGS */
.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-tags span {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
}

/* CTA */
.skills-cta {
  margin-top: 50px;
}

.skills-cta a {
  text-decoration: none;   /* removes underline */
}

/* LABS ENHANCED */
.labs-enhanced {
  text-align: center;
}

.labs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.lab-card.enhanced {
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(135deg, #1b2030, #121620);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lab-card.enhanced:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(255, 46, 121, 0.25);
}

.lab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.lab-header h3 {
  margin: 0;
}

/* DIFFICULTY BADGES */
.lab-level {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.lab-level.beginner {
  background: rgba(106, 255, 143, 0.15);
  color: #6aff8f;
}

.lab-level.intermediate {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
}

.lab-level.advanced {
  background: rgba(255, 46, 121, 0.15);
  color: #ff2e79;
}

.lab-points {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.lab-points li {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.lab-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffb347;
  font-size: 18px;
}

/* LAB CTA */
.labs-cta {
  margin-top: 50px;
}

.labs-cta a {
  text-decoration: none;
}

/* LEARNING PATH */
.learning-path {
  text-align: center;
}

.path-container {
  margin-top: 60px;
  position: relative;
}

/* Vertical path line – EXACT CENTER */
.path-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #ffb347, #ff2e79);
  opacity: 0.5;
}

/* Path step grid */
.path-step {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: flex-start;
  margin-bottom: 70px;
}

/* Alternate sides */
.path-step:nth-child(even) .path-content {
  grid-column: 1 / 2;
  text-align: right;
}

.path-step:nth-child(odd) .path-content {
  grid-column: 3 / 4;
  text-align: left;
}

/* Path node – EXACTLY CENTERED */
.path-node {
  grid-column: 2 / 3;
  width: 52px;
  height: 52px;
  margin: 0 auto; /* THIS is key */
  border-radius: 50%;
  background: #ffb347;
  color: #000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 16px;
}

.path-node.final {
  background: #ff2e79;
  color: #fff;
}

/* Content card */
.path-content {
  background: linear-gradient(135deg, #1b2030, #121620);
  padding: 28px;
  border-radius: 20px;
  max-width: 420px;
}

.path-content h3 {
  margin-bottom: 10px;
}

.path-content p {
  opacity: 0.85;
  font-size: 14px;
  margin-bottom: 12px;
}

.path-content ul {
  list-style: none;
  padding: 0;
}

.path-content li {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 6px;
}

/* MOBILE */
@media (max-width: 900px) {
  .path-container::before {
    left: 24px;
  }

  .path-step {
    grid-template-columns: 60px 1fr;
  }

  .path-node {
    grid-column: 1 / 2;
  }

  .path-content {
    grid-column: 2 / 3 !important;
    text-align: left !important;
  }
}

/* PATH END FLAG */
.path-end {
  text-align: center;
  margin-top: 40px;
  position: relative;
}

.path-trophy {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffb347, #ff2e79);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 0 30px rgba(255, 179, 71, 0.55);
}


.path-end h3 {
  margin-bottom: 8px;
}

.path-end p {
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .path-container::before {
    left: 26px;
  }

  .path-step {
    grid-template-columns: 60px 1fr;
  }

  .path-node {
    grid-column: 1 / 2;
  }
}

/* TRAINING MODULES */
.training-modules {
  text-align: center;
}

.mode-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 20px;
  text-align: left;
}

.mode-card ul li {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.mode-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00d4ff;
}

.mode-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* CTA */
.mode-cta {
  display: inline-block;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  color: #ffb347;
  border: 1px solid #ffb347;
  transition: background 0.3s ease, color 0.3s ease;
}

.mode-cta:hover {
  background: #ffb347;
  color: #000;
}

.who-for {
  text-align: center;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 30px;
  margin-top: 40px;
}

.who-card {
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(135deg,#1b2030,#121620);
}
/* .who-card {
  padding: 26px;
  background: none;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
} */

.outcomes {
  text-align: center;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
  margin-top: 40px;
}

.outcome-card {
  padding: 25px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
}

.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px 18px;
    background: #0b0e14;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
  }

  .sticky-cta a {
    background: #ffb347;
    color: #000;
    padding: 10px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
  }
}
/* FAQ ACCORDION */
.faq {
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

.faq-item {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 16px;
  cursor: pointer;
}

/* Remove default marker */
.faq-item summary {
  list-style: none;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 24px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Arrow icon */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  color: #ffb347;
  transition: transform 0.3s ease;
}

/* When open */
.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.6;
}

/* VALUE STRIP */
.value-strip {
  padding: 40px 60px;
  background: linear-gradient(135deg, #0f1320, #0b0e14);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.value-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.value-item span {
  font-size: 13px;
  opacity: 0.7;
}

.home-value-strip {
  padding: 30px 30px;
  background: linear-gradient(135deg, #0f1320, #0b0e14);
}

.home-value-strip .value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 30px;
  text-align: center;
}

.home-value-strip strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.home-value-strip span {
  font-size: 13px;
  opacity: 0.7;
}

/* HOW EDUVOXY WORKS */
.home-how-it-works {
  padding: 80px 60px;
  text-align: center;
}

.home-how-it-works h2 {
  margin-bottom: 10px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.how-card {
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1b2030, #121620);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.how-step {
  font-size: 28px;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 10px;
}

.how-card h3 {
  margin-bottom: 8px;
}

.how-card p {
  font-size: 14px;
  opacity: 0.85;
}

/* WHAT MAKES EDUVOXY DIFFERENT */
.home-differentiators {
  padding: 90px 60px;
  background: radial-gradient(circle at top, #121620, #0b0e14);
}

.home-differentiators h2 {
  text-align: center;
}

.home-differentiators .section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.diff-item {
  padding: 35px;
  border-radius: 22px;
  background: linear-gradient(135deg, #1c2030, #121620);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.diff-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.15);
}

.diff-item h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.diff-item p {
  font-size: 14px;
  opacity: 0.85;
}
/* LABS PREVIEW */
.home-labs-preview {
  padding: 60px 60px;
  text-align: center;
}

.home-labs-preview .section-subtitle {
  max-width: 720px;
  margin: 0 auto 60px;
}

.labs-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.lab-preview-card {
  padding: 35px;
  border-radius: 22px;
  background: linear-gradient(135deg, #1b2030, #121620);
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lab-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 212, 255, 0.15);
}

.lab-preview-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.lab-preview-card p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 12px;
}

.lab-preview-card ul {
  padding-left: 18px;
  font-size: 13px;
  opacity: 0.8;
}

.labs-preview-cta {
  margin-top: 50px;
}

.labs-preview-cta a {
  text-decoration: none;
}

/* WHO WE TRAIN */
.home-who-we-train {
  padding: 90px 60px;
  background: linear-gradient(135deg, #0f1320, #0b0e14);
}

.home-who-we-train h2,
.home-who-we-train .section-subtitle {
  text-align: center;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 30px;
  margin-top: 50px;
}

.who-card {
  padding: 35px;
  border-radius: 22px;
  background: linear-gradient(135deg, #1c2030, #121620);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.who-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 212, 255, 0.15);
}

.who-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.who-card h3 {
  margin-bottom: 8px;
}

.who-card p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 12px;
}

.who-card ul {
  padding-left: 18px;
  font-size: 13px;
  opacity: 0.8;
}

/* CORPORATE & HIRE FROM US */
.home-corporate {
  padding: 100px 60px;
  background: radial-gradient(circle at top, #121620, #0b0e14);
  text-align: center;
}

.home-corporate .section-subtitle {
  max-width: 760px;
  margin: 0 auto 60px;
}

.corporate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.corporate-card {
  padding: 45px;
  border-radius: 24px;
  background: linear-gradient(135deg, #1c2030, #121620);
  border: 1px solid rgba(255,255,255,0.05);
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.corporate-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 212, 255, 0.18);
}

.corp-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.corporate-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.corporate-card p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 15px;
}

.corporate-card ul {
  padding-left: 18px;
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 25px;
}

.corp-cta {
  display: inline-block;
  color: #00d4ff;
  font-weight: 600;
  text-decoration: none;
}

.corp-cta:hover {
  text-decoration: underline;
}

/* FINAL CTA */
.home-final-cta {
  padding: 100px 60px;
  background: linear-gradient(135deg, #4b24ff, #ff2e79, #ffb347);
  background-size: 300% 300%;
  animation: gradientMove 8s ease infinite;
  text-align: center;
}

.home-final-cta h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.home-final-cta p {
  max-width: 720px;
  margin: 0 auto 35px;
  font-size: 16px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-buttons a {
  text-decoration: none;
}

.home-final-cta .btn-primary {
  background: #0b0e14;
  color: #fff;
}

.home-final-cta .btn-secondary {
  border-color: #0b0e14;
  color: #0b0e14;
}

.home-final-cta .btn-secondary:hover {
  background: #0b0e14;
  color: #fff;
}

@media (max-width: 768px) {

  section {
    padding: 60px 24px !important;
  }

  .home-final-cta {
    padding: 70px 24px !important;
  }

}
@media (max-width: 768px) {

  .track-hero-inner,
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .track-hero-visual img {
    max-width: 260px;
    margin-top: 30px;
  }

}
@media (max-width: 768px) {

  .track-hero-inner,
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .track-hero-visual img {
    max-width: 260px;
    margin-top: 30px;
  }

}
@media (max-width: 768px) {

  .diff-grid,
  .labs-preview-grid,
  .who-grid,
  .corporate-grid,
  .how-grid {
    gap: 20px;
  }

  .diff-item,
  .lab-preview-card,
  .who-card,
  .corporate-card {
    padding: 28px;
  }

}
@media (max-width: 480px) {

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons a {
    width: 100%;
    text-align: center;
  }

}


/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}


@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0b0e14;
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    display: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
  }

  .nav-links li {
    padding: 14px 24px;
    width: 100%;
  }

  .nav-links li a {
    display: block;
    width: 100%;
  }

  .nav-links.active {
    display: flex;
  }

}

/* Animate hamburger to X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


/* HOW EDUVOXY WORKS – ENHANCED */
.home-how-it-works.enhanced {
  padding: 100px 60px;
  position: relative;
}

.how-flow {
  max-width: 900px;
  margin: 70px auto 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

/* Vertical line */
.how-flow::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(0,212,255,0.2),
    rgba(255,46,121,0.2)
  );
}

/* Tick list inside How Eduvoxy Works */
.step-points {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.step-points li {
  position: relative;
  padding-left: 26px;
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 6px;
}

/* Tick icon */
.step-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #00d4ff;
  font-weight: 700;
}




/* Step Card */
.how-step-card {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  position: relative;
}

.step-indicator {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4ff, #ff2e79);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0b0e14;
  z-index: 2;
  flex-shrink: 0;
}

.step-indicator span {
  font-size: 16px;
}

.step-content {
  background: linear-gradient(135deg, #1b2030, #121620);
  padding: 30px;
  border-radius: 20px;
  flex: 1;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.how-step-card:hover .step-content {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,212,255,0.15);
}

.step-content h3 {
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 10px;
}

.step-content ul {
  padding-left: 18px;
  font-size: 13px;
  opacity: 0.8;
}

/* Final step highlight */
.how-step-card.final .step-indicator {
  background: linear-gradient(135deg, #ffb347, #ff2e79);
}

/* Mobile */
@media (max-width: 768px) {
  .how-flow::before {
    left: 24px;
  }

  .step-indicator {
    width: 52px;
    height: 52px;
  }

  .step-content {
    padding: 24px;
  }
}


/* HOW EDUVOXY WORKS – COMPACT */
.home-how-it-works.compact {
  padding: 70px 60px;
  text-align: center;
}

.how-compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.how-compact-card {
  background: linear-gradient(135deg, #1b2030, #121620);
  border-radius: 18px;
  padding: 24px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-compact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,212,255,0.15);
}

.how-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.how-num {
  font-size: 14px;
  font-weight: 700;
  color: #00d4ff;
  background: rgba(0,212,255,0.12);
  padding: 4px 10px;
  border-radius: 20px;
}

.how-head h3 {
  font-size: 16px;
  margin: 0;
}

.how-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.how-points li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 6px;
}

.how-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffb347;
  font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
  .home-how-it-works.compact {
    padding: 60px 24px;
  }
}

/* WHAT MAKES EDUVOXY DIFFERENT – REDESIGNED */
.home-differentiators.redesigned {
  padding: 80px 60px;
  background: radial-gradient(circle at top, #121620, #0b0e14);
  text-align: center;
}

.diff-compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  margin-top: 50px;
}

.diff-compact-item {
  padding: 26px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1b2030, #121620);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-compact-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,212,255,0.15);
}

.diff-icon {
  display: inline-block;
  font-size: 26px;
  margin-bottom: 8px;
}

.diff-compact-item h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.diff-compact-item p {
  font-size: 13px;
  opacity: 0.75;
}

/* Mobile */
@media (max-width: 768px) {
  .home-differentiators.redesigned {
    padding: 60px 24px;
  }
}

/* SVG ICON BASE */
.diff-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diff-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
  color: #9aa4b2;
  transition: color 0.3s ease;
}
/* Category colors */
.diff-icon.lab svg { color: #ffb347; }
.diff-icon.role svg { color: #00d4ff; }
.diff-icon.tools svg { color: #7cf4c9; }
.diff-icon.prod svg { color: #ff2e79; }
.diff-icon.corp svg { color: #b084ff; }
.diff-icon.outcome svg { color: #4be3ff; }

/* Hover glow per card */
.diff-compact-item:hover {
  transform: translateY(-6px);
}

/* Glow based on icon type */
.diff-compact-item:hover .diff-icon.lab ~ h3 {
  text-shadow: 0 0 12px rgba(255,179,71,0.4);
}

.diff-compact-item:hover .diff-icon.role ~ h3 {
  text-shadow: 0 0 12px rgba(0,212,255,0.4);
}

.diff-compact-item:hover .diff-icon.prod ~ h3 {
  text-shadow: 0 0 12px rgba(255,46,121,0.4);
}

/* =========================
   GLOBAL MOBILE FIXES
========================= */

@media (max-width: 768px) {

  /* Reduce side padding everywhere */
  .navbar,
  .breadcrumb,
  .hero,
  .categories,
  .track-hero,
  .track-section,
  .home-how-it-works,
  .home-differentiators,
  .home-labs-preview,
  .home-who-we-train,
  .home-corporate,
  .home-final-cta,
  .footer-container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

}
@media (max-width: 768px) {

  .hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-left p {
    font-size: 14px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

}
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 420px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category {
    padding: 20px;
    font-size: 14px;
  }

  .cat-icon {
    font-size: 18px;
  }

  .cat-title {
    margin-left: 10px;
  }
}


@media (max-width: 768px) {

  .navbar {
    padding: 18px 24px;
  }

  .btn-primary {
    padding: 10px 18px;
    font-size: 13px;
  }

}
@media (max-width: 768px) {

  .track-hero h1 {
    font-size: 34px;
  }

  .track-hero p {
    font-size: 14px;
  }

  .track-hero {
    padding-top: 70px;
    padding-bottom: 70px;
  }

}

@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-col p {
    max-width: none;
  }

  .social-icons {
    justify-content: center;
  }

}
@media (max-width: 768px) {

  .path-content {
    padding: 22px;
  }

  .path-node {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

}

.lab-loader {
  margin-top: 50px;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255,255,255,0.15);
  border-top-color: #ffb347;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-text {
  font-size: 14px;
  opacity: 0.8;
}

.lab-status {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.lab-status.completed {
  background: rgba(106,255,143,0.15);
  color: #6aff8f;
}

.lab-status.progress {
  background: rgba(255,179,71,0.15);
  color: #ffb347;
}

.lab-status.locked {
  background: rgba(255,46,121,0.15);
  color: #ff2e79;
}
.timeline-note {
  margin-top: 30px;
  font-size: 13px;
  opacity: 0.7;
  text-align: center;
}
.eduvoxy-difference {
  background: #0b0e14;
}

.difference-flow {
  max-width: 900px;
  margin: 70px auto 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.difference-row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.diff-index {
  font-size: 28px;
  font-weight: 700;
  color: #ffb347;
  flex-shrink: 0;
}

.diff-text h3 {
  margin-bottom: 6px;
}

.diff-text p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
}

/* Mobile */
@media (max-width: 768px) {
  .difference-row {
    gap: 18px;
  }

  .diff-index {
    font-size: 22px;
  }
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-intro h2 {
  margin-bottom: 12px;
}

.section-intro p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.8;
}
.section-intro p {
  letter-spacing: 0.2px;
}
.proof-grid {
  max-width: 800px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
  text-align: center;
}

.proof-grid div {
  font-size: 15px;
  opacity: 0.9;
}

.mode-desc {
  font-size: 14px;
  opacity: 0.8;
  margin: 10px 0 14px;
}

.mode-note {
  margin-top: 14px;
  font-size: 13px;
  opacity: 0.7;
  font-style: italic;
}

.timeline-note {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  opacity: 0.75;
}
/* MSME / Udyam Badge */
.footer-msme {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 10px;
  font-size: 12px;
  opacity: 0.8;
}

.footer-msme img {
  height: 75px;
  width: 100px;
}

/* Mobile alignment */
@media (max-width: 768px) {
  .footer-msme {
    justify-content: center;
  }
}
/* REVEAL BASE */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional variations */
.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

/* TERMINAL CONTAINER */
.terminal-demo {
  background: #0d1117;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  max-width: 460px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 30px 80px rgba(0,0,0,0.7);
  font-family: "JetBrains Mono", "Fira Code", monospace;
}

/* HEADER (MAC STYLE) */
.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #9fb1c9;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.terminal-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-title {
  margin-left: 10px;
  font-size: 12px;
  color: #8b949e;
}

/* TERMINAL CONTAINER */
.terminal {
  width: 100%;
  max-width: 520px;
  background: #0d1117;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  font-family: "JetBrains Mono", monospace;
}

/* HEADER */
.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #161b22;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-title {
  margin-left: auto;
  font-size: 12px;
  color: #8b949e;
}

/* BODY */
.terminal-body {
  padding: 18px;
  font-size: 13px;
  color: #c9d1d9;
  height: 320px;
  overflow-y: auto;
}

/* TERMINAL LINE */
.terminal-line {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

/* PROMPT */
.prompt {
  color: #7ee787;
}

.path {
  color: #58a6ff;
}

/* COMMAND */
.cmd {
  color: #e6edf3;
}

/* OUTPUT */
.terminal-output {
  color: #8b949e;
  margin: 6px 0 14px 0;
  white-space: pre-wrap;
}

/* COPY BUTTON */
.copy-btn {
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #8b949e;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 10px;
  cursor: pointer;
}

.copy-btn:hover {
  color: #fff;
  border-color: #58a6ff;
}

/* CURSOR */
.cursor {
  display: inline-block;
  width: 8px;
  background: #c9d1d9;
  margin-left: 2px;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}
/* LAB FILTER */
.lab-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #ffb347;
  color: #ffb347;
}

.filter-btn.active {
  background: #ffb347;
  color: #000;
  border-color: #ffb347;
}

/* Hide animation */
.lab-card.hidden {
  display: none;
}

@media (max-width: 768px) {
  .lab-filter {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
  }

  .filter-btn {
    flex-shrink: 0;
  }
}
.lab-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.lab-checks li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 8px;
}

.lab-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #00d4ff; /* cyber / tech accent */
  font-weight: 700;
}
.lab-level-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* Level colors */
.lab-level-badge.beginner {
  background: rgba(106,255,143,0.15);
  color: #6aff8f;
}

.lab-level-badge.intermediate {
  background: rgba(0,212,255,0.15);
  color: #00d4ff;
}

.lab-level-badge.advanced {
  background: rgba(255,46,121,0.15);
  color: #ff2e79;
}
.role-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.role-header h3 {
  margin: 0;
}

/* Existing lab-level styles will still work */
.lab-level {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .role-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* FILTER CTA */
.labs-filter-cta {
  margin-top: 60px;
  text-align: center;
  display: none; /* controlled via JS */
}

.labs-filter-cta a {
  text-decoration: none;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .labs-filter-cta {
    margin-top: 40px;
  }
}

#labsFilterCTA {
  margin-top: 50px;
  text-align: center;
}

/* Button styling (reuse your existing button style if needed) */
#labsFilterCTA a {
  text-decoration: none;
}
@media (max-width: 768px) {
  #labsFilterCTA {
    margin-bottom: 40px;
  }

  #labsFilterCTA a {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
.labs-cta-center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
/* Fade-in CTA animation */
.fade-in-cta {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-cta.visible {
  opacity: 1;
  transform: translateY(0);
}
html {
  scroll-behavior: smooth;
}
/* HIRE FROM EDUVOXY */
.hire-eduvoxy {
  background: linear-gradient(135deg, #0f1320, #0b0e14);
}

.hire-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hire-content h2 {
  margin-bottom: 12px;
}

.hire-subtitle {
  font-size: 15px;
  opacity: 0.85;
  max-width: 520px;
  margin-bottom: 25px;
}

.hire-points {
  list-style: none;
  padding: 0;
}

.hire-points li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 10px;
}

.hire-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: 700;
}

/* Proof */
.hire-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.proof-item {
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1b2030, #121620);
  text-align: center;
}

.proof-value {
  font-size: 22px;
  color: #ffb347;
  display: block;
  margin-bottom: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .hire-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hire-points {
    text-align: left;
    max-width: 360px;
    margin: 0 auto;
  }
}
/* =========================
   HIRE FROM EDUVOXY
========================= */

.hire-eduvoxy {
  background: linear-gradient(135deg, #0f1320, #0b0e14);
}

.hire-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Left */
.hire-content h2 {
  margin-bottom: 12px;
}

.hire-subtitle {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 520px;
  margin-bottom: 26px;
}

.hire-points {
  list-style: none;
  padding: 0;
}

.hire-points li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 10px;
}

.hire-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: 700;
}

/* Right proof */
.hire-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.proof-item {
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1b2030, #121620);
  text-align: center;
}

.proof-icon {
  display: block;
  font-size: 22px;
  color: #ffb347;
  margin-bottom: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .hire-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hire-points {
    text-align: left;
    max-width: 360px;
    margin: 0 auto;
  }
}
/* Hire CTA */
.hire-cta {
  margin-top: 60px;
  text-align: center;
}

.hire-cta .btn-primary {
  padding: 14px 30px;
  font-size: 15px;
  text-decoration: none;
}

/* COMING SOON PAGE */
.coming-soon-page {
  min-height: 100vh;
  background: radial-gradient(circle at top, #1a1f2b, #0b0e14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.coming-soon {
  padding: 60px 24px;
  width: 100%;
}

.coming-card {
  max-width: 520px;
  margin: auto;
  padding: 45px 40px;
  border-radius: 26px;
  background: linear-gradient(135deg, #1b2030, #121620);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  text-align: center;
  animation: fadeUp 0.8s ease;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255,179,71,0.15);
  color: #ffb347;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.coming-card h1 {
  font-size: 32px;
  margin-bottom: 14px;
}

.subtitle {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 25px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  text-align: left;
}

.features li {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.note {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 30px;
}

.actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.actions a {
  text-decoration: none;
}

/* Subtle animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .coming-card {
    padding: 36px 26px;
  }

  .coming-card h1 {
    font-size: 26px;
  }
}
