:root {
  --brand-start: #ffb347;
  --brand-end: #ff6a00;
}
* {
  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;
}
.track-hero-content h1 {
  font-size: 38px;
  line-height: 1.2;
}
.track-hero-content 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 {

  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(320px,1fr));
  gap: 20px;
}

.role-card {
  padding: 25px;
  border-radius: 18px;
  background: linear-gradient(135deg,#1c2030,#121620);
  max-width: 520px;
}

/* 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: 60px 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;
  }
}

.program-content {
  display: none;
}

.program-content.active {
  display: block;
}

.program-tab.active {
  box-shadow: 0 0 35px rgba(255,179,71,0.35);
}
/* =============================
   PROGRAM PATHWAY GRID (SCOPED)
============================= */

.program-categories .category-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Ensure equal height */
.program-categories .program-tab {
  height: 100%;
}

/* MOBILE: Single Row Scroll */
@media (max-width: 768px) {

  .program-categories .category-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    grid-template-columns: unset;
    padding-bottom: 10px;
  }

  .program-categories .program-tab {
    min-width: 260px;
    flex-shrink: 0;
  }

}
/* =============================
   PROGRAM DESCRIPTION
============================= */

.program-description {
  max-width: 800px;
  margin: 20px auto 60px;
  text-align: center;
}

.program-more {
  display: none;
  margin-top: 12px;
  opacity: 0.85;
}

.program-description.expanded .program-more {
  display: block;
}

.view-more-btn {
  margin-top: 16px;
  background: transparent;
  border: 1px solid #ffb347;
  color: #ffb347;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
}

.view-more-btn:hover {
  background: #ffb347;
  color: #000;
}
/* =============================
   PROGRAM 2-COLUMN LAYOUT
============================= */

.program-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.program-left h2 {
  margin-bottom: 16px;
}

.course-section {
  margin-bottom: 40px;
}

.course-section p {
  opacity: 0.85;
  line-height: 1.7;
}

.course-more {
  display: none;
  margin-top: 12px;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: #00d4ff;
  cursor: pointer;
}

.divider {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 30px 0;
}

/* ACCORDION STYLE */
.accordion-item {
  background: linear-gradient(135deg, #1b2030, #121620);
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 16px;
  cursor: pointer;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

/* RIGHT SIDE */
.enroll-card {
  background: linear-gradient(135deg, #1b2030, #121620);
  border-radius: 22px;
  padding: 30px;
  position: sticky;
  top: 100px;
}

.enroll-card h3 {
  margin-bottom: 16px;
}

.price {
  font-size: 28px;
  margin-bottom: 20px;
  color: #ffb347;
}

.full-width {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
}

.course-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box {
  background: rgba(255,255,255,0.06);
  padding: 16px;
  border-radius: 14px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 15px;
}

.stat-box span {
  font-size: 12px;
  opacity: 0.7;
}

/* MOBILE */
@media (max-width: 900px) {
  .program-layout {
    grid-template-columns: 1fr;
  }

  .enroll-card {
    position: static;
  }
}
/* =============================
   EDUVOXY PREMIUM ACCORDION
============================= */

.edu-module {
  background: linear-gradient(135deg,#1b2030,#121620);
  border-radius: 18px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.edu-module-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-size: 14px;
}

.module-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1; /* allow left side to take available space */
  min-width: 0; /* IMPORTANT for mobile wrapping */
}
.module-left span {
  flex-shrink: 1;
  white-space: normal; /* allow wrapping */
}
.module-arrow {
  transition: transform 0.3s ease;
  color: #9aa4b2;
}

.module-lock {
  margin-left: 5px;
  margin-right: 5px;
  font-size: 13px;
  color: #ff2e79;
  flex-shrink: 0;
}

.edu-module.locked {
  opacity: 0.85;
}
.module-right {
  font-size: 13px;
  opacity: 0.7;
  flex-shrink: 0;
}


/* Expand Animation */
/* REMOVE max-height animation completely */

.edu-module-content {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
  padding: 0 24px;
}


.edu-module.active .edu-module-content {
  height: auto;
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 20px;
}

.edu-module.active .module-arrow {
  transform: rotate(90deg);
}

/* Lessons */
.lesson-title {
  margin-top: 16px;
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 12px;
}

.lesson-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lesson-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  opacity: 0.9;
}

.lesson-list i {
  color: #00d4ff;
}
/* =============================
   UNLOCK MODAL (EDUVOXY)
============================= */

.unlock-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.unlock-modal.show {
  display: flex;
}

.unlock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
}

.unlock-box {
  position: relative;
  background: linear-gradient(135deg,#1b2030,#121620);
  padding: 40px;
  border-radius: 24px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  animation: unlockPop 0.35s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

@keyframes unlockPop {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.unlock-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #9aa4b2;
  cursor: pointer;
}

.unlock-close:hover {
  color: #fff;
}

.unlock-icon {
  font-size: 38px;
  color: #ff2e79;
  margin-bottom: 20px;
}

.unlock-box h3 {
  margin-bottom: 12px;
}

.unlock-box p {
  opacity: 0.8;
  font-size: 14px;
  margin-bottom: 20px;
}

.unlock-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}

.unlock-benefits li {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.unlock-benefits i {
  color: #6aff8f;
}

.unlock-btn {
  display: block;
  width: 100%;
  text-align: center;
}
.lesson-list li {
  cursor: pointer;
}
/* DETAILED LAB SECTION */
.labs-detailed {
  margin-top: 80px;
}

.lab-detailed-card {
  background: linear-gradient(135deg,#1b2030,#121620);
  border-radius: 22px;
  padding: 40px;
  margin-bottom: 50px;
  border: 1px solid rgba(255,255,255,0.06);
}

.lab-meta {
  display: flex;
  gap: 20px;
  margin: 16px 0 20px;
  font-size: 13px;
  opacity: 0.8;
}

.lab-meta i {
  color: #00d4ff;
  margin-right: 6px;
}

.lab-description {
  opacity: 0.85;
  margin-bottom: 20px;
}

.lab-task-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
}

.lab-task-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
}

.lab-task-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6aff8f;
}

.lab-outcome {
  background: rgba(0,212,255,0.08);
  padding: 18px;
  border-radius: 14px;
  font-size: 14px;
}
.lab-meta {
  margin: 12px 0 14px;
  font-size: 13px;
  opacity: 0.8;
}

.lab-meta i {
  margin-right: 6px;
  color: #00d4ff;
}
/* =============================
   SMALL LAB HEADER + BADGE
============================= */

.small-header h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.small-badge {
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 14px;
  font-weight: 600;
}

/* Slight alignment refinement */
.small-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
/* =============================
   LEVEL BASED MICRO GLOW
============================= */

.role-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Subtle lift */
.role-card:hover {
  transform: translateY(-6px);
}

/* Beginner Glow (Green) */
.role-card.level-beginner:hover {
  box-shadow: 0 10px 30px rgba(106,255,143,0.18);
  border: 1px solid rgba(106,255,143,0.25);
}

/* Intermediate Glow (Blue) */
.role-card.level-intermediate:hover {
  box-shadow: 0 10px 30px rgba(0,212,255,0.18);
  border: 1px solid rgba(0,212,255,0.25);
}

/* Advanced Glow (Pink) */
.role-card.level-advanced:hover {
  box-shadow: 0 10px 30px rgba(255,46,121,0.18);
  border: 1px solid rgba(255,46,121,0.25);
}

/* Expert Glow (Gold) */
.role-card.level-expert:hover {
  box-shadow: 0 10px 30px rgba(255,179,71,0.22);
  border: 1px solid rgba(255,179,71,0.3);
}
.role-card.level-advanced:hover {
  box-shadow:
    0 10px 30px rgba(255,46,121,0.18),
    0 0 20px rgba(255,46,121,0.08);
}

/* =============================
   ROLE CARD LAB HIGHLIGHT
============================= */

.role-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

/* Highlight animation trigger */
.role-card.highlight {
  animation: highlightPulse 2.5s ease;
}

/* Beginner Glow */
.role-card.highlight.level-beginner {
  box-shadow: 0 0 35px rgba(106,255,143,0.35);
  border: 1px solid rgba(106,255,143,0.4);
}

/* Intermediate Glow */
.role-card.highlight.level-intermediate {
  box-shadow: 0 0 35px rgba(0,212,255,0.35);
  border: 1px solid rgba(0,212,255,0.4);
}

/* Advanced Glow */
.role-card.highlight.level-advanced {
  box-shadow: 0 0 35px rgba(255,46,121,0.35);
  border: 1px solid rgba(255,46,121,0.4);
}

/* Expert Glow */
.role-card.highlight.level-expert {
  box-shadow: 0 0 35px rgba(255,179,71,0.4);
  border: 1px solid rgba(255,179,71,0.45);
}

@keyframes highlightPulse {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

/* =============================
   CAREER RIGHT PANEL DESIGN
============================= */

.career-side-panel {
  position: sticky;
  top: 100px;
}

.career-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 20px;
}

.career-media img {
  width: 100%;
  display: block;
}

.career-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
}

.career-play i {
  font-size: 52px;
  color: white;
}

.career-card {
  background: linear-gradient(145deg,#1a1f2b,#0f141c);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
}

.career-title h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.career-title span {
  font-size: 13px;
  opacity: 0.7;
}

.career-price {
  margin: 20px 0;
}

.career-price h2 {
  font-size: 28px;
  color: #ffb347;
  margin-bottom: 4px;
}

.price-note {
  font-size: 12px;
  opacity: 0.6;
}

.payment-options {
  margin-bottom: 20px;
}

.payment-block {
  background: rgba(255,255,255,0.04);
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-size: 13px;
}

.batch-info {
  font-size: 13px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.batch-info p {
  margin-bottom: 6px;
}

.full-width-btn {
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}

.trust-strip {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.8;
  margin-top: 15px;
}

.trust-strip span {
  display: flex;
  align-items: center;
  gap: 6px;
}
/* =============================
   CAREER PRICE SECTION
============================= */

.career-side-panel {
  position: sticky;
  top: 100px;
}

.career-card {
  background: linear-gradient(145deg,#1b2030,#10141c);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
}

/* Title */
.career-title h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.career-title span {
  font-size: 13px;
  opacity: 0.7;
}

/* Price */
.career-price-section {
  margin: 22px 0;
}

.original-price {
  font-size: 14px;
  text-decoration: line-through;
  opacity: 0.5;
  margin-bottom: 4px;
}

.final-price {
  font-size: 30px;
  font-weight: 700;
  color: #ffb347;
  margin-bottom: 6px;
}

.early-badge {
  font-size: 12px;
  color: #6aff8f;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* CTA */
.full-width-btn {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}



/* =============================
   ENROLL BUTTON (FULL WIDTH CLEAN)
============================= */


.enroll-btn {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  text-align: center;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none !important;
}

.enroll-btn:hover {
  text-decoration: none !important;
}

/* =============================
   COMPACT PAYMENT SECTION
============================= */

.payment-section {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 14px;
  margin-top: 10px;
}

.payment-item {
  background: rgba(255,255,255,0.03);
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.4;
}

.payment-item strong {
  font-size: 12px;
  margin-bottom: 2px;
  display: block;
}

a.btn-primary {
  text-decoration: none !important;
}
.program-categories .cat-title {
  font-size: 13px;
  text-align: center;
}
/* =============================
   PROGRAM TABS – TRUE MOBILE FIX
============================= */

@media (max-width: 768px) {

  .program-categories {
    overflow-x: hidden;
  }

  .program-categories .category-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;
    width: 100%;
  }

  .program-categories .category {
    width: 100%;
    min-width: 0 !important;
    padding: 12px 8px;
    font-size: 12px;
    flex-direction: column;   /* Stack icon + text */
    justify-content: center;
    text-align: center;
  }

  .program-categories .cat-arrow {
    display: none;   /* Arrow causes overflow */
  }

  .program-categories .cat-icon i {
    font-size: 16px;
  }

  .program-categories .cat-title {
    font-size: 12px;
  }

}
/* =============================
   PREMIUM OUTCOMES DESIGN
============================= */

.premium-outcomes {
  text-align: center;
}

/* FLOW */
.transformation-flow {
  margin: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.flow-step {
  background: linear-gradient(135deg,#1b2030,#121620);
  padding: 28px;
  border-radius: 20px;
  width: 220px;
  text-align: center;
  transition: 0.3s ease;
}

.flow-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,212,255,0.15);
}

.flow-icon {
  font-size: 28px;
  margin-bottom: 12px;
  color: #ffb347;
}

.flow-arrow i {
  font-size: 22px;
  opacity: 0.5;
}

.final-step {
  border: 1px solid rgba(255,179,71,0.4);
}

/* =============================
   FUTURISTIC ROLE CARD
============================= */
/* =============================
   PREMIUM ROLE GRID FIX
============================= */

.premium-role-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Tablet */
@media (max-width: 1024px) {
  .premium-role-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .premium-role-grid {
    grid-template-columns: 1fr;
  }
}
.premium-role-card {
  position: relative;
  padding: 32px;
  border-radius: 22px;
  background: rgba(20, 25, 35, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: all 0.35s ease;
}

/* Subtle glowing top line */
.premium-role-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg,#00d4ff,#ff2e79,#ffb347);
  opacity: 0.6;
}

/* Tech subtle grid overlay */
.premium-role-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255,255,255,0.02) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.02) 1px,
      transparent 1px
    );
  background-size: 20px 20px;
  pointer-events: none;
}

/* Icon */
.role-icon {
  font-size: 26px;
  margin-bottom: 14px;
  color: #00d4ff;
}

/* Hover futuristic glow */
.premium-role-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 50px rgba(0,212,255,0.15),
    0 0 25px rgba(255,46,121,0.08);
  border-color: rgba(0,212,255,0.25);
}

/* Title */
.premium-role-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

/* Paragraph */
.premium-role-card p {
  font-size: 14px;
  opacity: 0.85;
}

/* HIGHLIGHT */
.outcome-highlight {
  margin-top: 70px;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg,#4b24ff,#ff2e79,#ffb347);
  background-size: 300% 300%;
  animation: gradientMove 8s ease infinite;
}

.outcome-highlight h3 {
  margin-bottom: 10px;
}

.outcome-highlight p {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

/* =============================
   PREMIUM CURRICULUM MODAL
============================= */

.edu-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.edu-modal.active {
  display: flex;
}

.edu-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
}

/* CARD */
.edu-modal-card {
  position: relative;
  background: linear-gradient(135deg,#1b2030,#121620);
  padding: 45px 35px;
  border-radius: 26px;
  max-width: 520px;
  width: 90%;
  z-index: 2;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  animation: modalFade 0.35s ease;
}

/* CLOSE */
.edu-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* HEADER */
.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header i {
  font-size: 28px;
  color: #ffb347;
  display: block;
  margin-bottom: 8px;
}

.modal-header h3 {
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 13px;
  opacity: 0.75;
}

/* GRID */
.modal-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* OPTION CARD */
.modal-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
}

.modal-option i {
  font-size: 20px;
}

/* Hover Glow Per Theme */
.modal-option.gold:hover {
  box-shadow: 0 0 25px rgba(255,179,71,0.4);
}

.modal-option.blue:hover {
  box-shadow: 0 0 25px rgba(0,212,255,0.4);
}

.modal-option.pink:hover {
  box-shadow: 0 0 25px rgba(255,46,121,0.4);
}

.modal-option strong {
  display: block;
}

.modal-option span {
  font-size: 12px;
  opacity: 0.75;
}

/* ANIMATION */
@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* EMAIL INPUT */
.modal-input {
  position: relative;
  margin-bottom: 20px;
}

.modal-input i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
}

.modal-input input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
  outline: none;
}

.modal-input input:focus {
  border-color: #ffb347;
}

/* SUBMIT BUTTON */
.modal-submit {
  width: 100%;
  padding: 12px;
  border-radius: 18px;
  border: none;
  background: linear-gradient(135deg,#ffb347,#ff6a00);
  font-weight: 600;
  cursor: pointer;
}

/* Hide grid initially */
.hidden {
  display: none;
}

.prereq-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid #D4AF37;
  padding: 22px;
  margin: 30px 0;
  border-radius: 12px;
}

.prereq-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.prereq-header h3 {
  font-size: 15px;
  margin: 0;
}

.prereq-desc {
  opacity: 0.85;
  margin-bottom: 12px;
  font-size: 12px;
}

.prereq-list {
  list-style: none;
  padding: 0;
}

.prereq-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  font-size: 11px;
}

.prereq-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #D4AF37;
}
/* PATHWAY HELPER */
.pathway-helper {
  text-align: center;
}

.pathway-card {
  max-width: 700px;
  margin: 30px auto;
  background: rgba(255,255,255,0.03);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}

.path-question h4 {
  margin-bottom: 15px;
}

.path-options {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.path-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
}

.path-btn:hover {
  border-color: #D4AF37;
  color: #D4AF37;
}

.path-btn.active {
  background: #D4AF37;
  color: #000;
  border-color: #D4AF37;
}

.path-result {
  margin-top: 20px;
  padding: 15px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0.9;
}
/* PRICING GRID */
.premium-pricing {
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* CARD BASE */
.pricing-card {
  background: linear-gradient(145deg, #1b1f2a, #10141d);
  padding: 40px 30px;
  border-radius: 24px;
  position: relative;
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.pricing-card:hover {
  transform: translateY(-8px);
}

/* MIDDLE CARD HIGHLIGHT */
.popular {
  background: linear-gradient(145deg, #ffb347, #7b3fe4);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(123,63,228,0.4);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #fff;
  color: #000;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.pricing-card h2 {
  font-size: 34px;
  margin: 15px 0;
}

.price-sub {
  opacity: 0.8;
  font-size: 14px;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 25px;
}

.pricing-features li {
  margin-bottom: 10px;
  font-size: 14px;
}

.pricing-features i {
  color: #D4AF37;
  margin-right: 6px;
}

.pricing-btn {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: #D4AF37;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.highlight-btn {
  background: #fff;
  color: #000;
}

.pricing-note {
  font-size: 12px;
  margin-top: 15px;
  opacity: 0.7;
}

/* MOBILE */
@media(max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .popular {
    transform: none;
  }
}
.pricing-features li {
  margin-bottom: 8px;
  font-size: 13px;   /* reduced from 14 */
  line-height: 1.5;
}

.price-sub {
  font-size: 13px;
}

.pricing-note {
  font-size: 11px;
}

.trust-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  font-size: 18px;
  opacity: 0.8;
}

.trust-icons span {
  cursor: pointer;
  transition: 0.3s ease;
}

.trust-icons span:hover {
  transform: translateY(-4px);
  opacity: 1;
}

.trust-icons i {
  color: #D4AF37;
}
/* TRUST ICONS */
.trust-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  font-size: 18px;
}

.glass-tip {
  position: relative;
  cursor: pointer;
}

.glass-tip i {
  color: #D4AF37;
  transition: 0.3s ease;
}

.glass-tip:hover i {
  transform: translateY(-4px);
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.6));
}

/* GLASS TOOLTIP */
.glass-tooltip {
  position: absolute;
  bottom: 140%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(32, 42, 62, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}
.glass-tooltip {
  background: rgba(15, 20, 30, 0.95);
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.6),
    0 0 10px rgba(212,175,55,0.15);
}

/* Arrow */
.glass-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(20,25,35,0.6) transparent transparent transparent;
}

/* Show on hover */
.glass-tip:hover .glass-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Wrapper */
.mega-wrapper {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

/* Panel */
.mega-menu {
  width: 1100px;
  padding: 50px;
  background: #000;
  border-radius: 16px;
  border: 1px solid #1c1c1c;
  box-shadow: 0 60px 160px rgba(0,0,0,0.95);

 display: grid;
  gap: 50px;
  grid-template-columns: repeat(4, 1fr);
}


/* Column */
.mega-col {
  flex: 1;
}

/* Headings */
.mega-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 20px;
}

/* Links */
.mega-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 0;
  font-size: 15px;
  flex-direction: column;
  color: #fff;
  text-decoration: none;

  opacity: 0;
  transform: translateY(10px);
  transition: 0.25s ease;
}

/* Brand Icons */
.mega-link i {
  margin-bottom: 6px;
  background: linear-gradient(135deg, #ffb347, #ff6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mega-link span {
  font-size: 12px;
  color: #777;
}

/* Hover */
.mega-link:hover {
  color: #ffb347;
  transform: translateX(4px);
}

/* SHOW STATE */
.mega-wrapper.show {
  opacity: 1;
  visibility: visible;
}

/* Column Animation */
.mega-wrapper.show .mega-link {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect */
.mega-wrapper.show .mega-link:nth-child(2) { transition-delay: 0.05s; }
.mega-wrapper.show .mega-link:nth-child(3) { transition-delay: 0.1s; }
.mega-wrapper.show .mega-link:nth-child(4) { transition-delay: 0.15s; }
.mega-wrapper.show .mega-link:nth-child(5) { transition-delay: 0.2s; }

/* Career Link */
.career-link {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: 0.2s ease;
}

/* Arrow */
.career-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Rotate when open */
.career-link.active .career-arrow {
  transform: rotate(180deg);
}


@media (max-width: 992px) {

  .mega-wrapper {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    transform: none;
    box-shadow: none;
    border-radius: 0;
  }

  .mega-menu {
    grid-template-columns: 1fr;
    gap: 20px;
  }

}
.career-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.career-arrow {
  transition: transform 0.3s ease;
}

.career-link.active .career-arrow {
  transform: rotate(180deg);
}

/* ================= CAREER HERO ================= */

.career-hero {
  padding: 120px 8%;
  background: radial-gradient(circle at 20% 30%, rgba(255,106,0,0.15), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(255,179,71,0.15), transparent 40%),
              #0b0e14;
  text-align: center;
}

.career-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.career-hero-content h1 span {
  background: linear-gradient(135deg, #ffb347, #ff6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.career-hero-content p {
  color: #cfcfcf;
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 40px;
}

.career-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
}

.career-stats h3 {
  font-size: 28px;
  color: #ffb347;
}

.career-stats span {
  display: block;
  font-size: 14px;
  color: #aaa;
}

/* ================= CAREER PILLARS ================= */

.career-pillars {
  padding: 100px 8%;
  background: #0f131a;
}


.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

/* HIDE SCROLLBAR */

.pillar-grid::-webkit-scrollbar{
  display:none;
}



.pillar-card {
  background: #121826;
  min-width: 320px;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.4s ease;
  position: relative;
  overflow: visible;
}
/* DESKTOP VIEW */

@media(min-width:1024px){
  .pillar-card{
    min-width:32%;   /* 2.5 cards visible */
  }
}

/* MOBILE */

@media(max-width:768px){
  .pillar-card{
    min-width:80%;
  }
}


.pillar-card i {
  font-size: 28px;
  color: #ffb347;
  margin-bottom: 15px;
}

.pillar-card h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
}

.pillar-card ul {
  padding-left: 16px;
}

.pillar-card li {
  font-size: 14px;
  color: #cfcfcf;
  margin-bottom: 8px;
}

/* Premium Hover Glow */
.pillar-card:hover {
  transform: translateY(-6px);
  border: 1px solid rgba(255,179,71,0.4);
  box-shadow: 0 0 40px rgba(255,106,0,0.15);
}
/* ================= CAREER FLOW ================= */

.career-flow {
  background: #0b0e14;
  text-align: center;
}

.flow-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.flow-step {
  max-width: 220px;
  padding: 25px;
  background: #121826;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s ease;
}

.flow-step i {
  font-size: 26px;
  color: #ff6a00;
  margin-bottom: 15px;
}

.flow-step h4 {
  color: #fff;
  margin-bottom: 10px;
}

.flow-step p {
  font-size: 14px;
  color: #aaa;
}

.flow-step:hover {
  box-shadow: 0 0 35px rgba(255,106,0,0.2);
  transform: translateY(-5px);
}
/* ================= AUDIENCE ================= */

.career-audience {
  padding: 100px 8%;
  background: #0f131a;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.audience-card {
  background: #121826;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s ease;
}

.audience-card h4 {
  color: #ffb347;
  margin-bottom: 10px;
}

.audience-card p {
  color: #bbb;
  font-size: 14px;
}

.audience-card:hover {
  border: 1px solid rgba(255,179,71,0.3);
  box-shadow: 0 0 35px rgba(255,179,71,0.15);
}

/* ================= CAREER CTA ================= */

.career-cta {
  padding: 100px 8%;
  background: linear-gradient(135deg, #ffb347, #ff6a00);
  text-align: center;
  border-radius: 30px 30px 0 0;
}

.career-cta h2 {
  color: #0b0e14;
  font-size: 36px;
  margin-bottom: 20px;
}

.career-cta p {
  color: #1a1a1a;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.career-cta .btn-secondary {
  background: #0b0e14;
  color: #fff;
}

.career-cta .btn-secondary:hover {
  background: #121826;
}
.section-intro h2 {
  color: #fff;
  font-size: 32px;
}

.section-intro p {
  color: #aaa;
  margin-top: 10px;
}
/* ================= CAREER ENGINE ================= */

.career-engine {
  padding: 120px 8%;
  background: #0b0e14;
}

.engine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* CARD */
.engine-card {
  background: #121826;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  border: 1px solid #1e2536;
  transition: 0.4s ease;
  overflow: hidden;
}

/* LARGE NUMBER */
.engine-number {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 70px;
  font-weight: 700;
  color: rgba(255, 179, 71, 0.07);
}

/* ICON */
.engine-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffb347, #ff6a00);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.engine-icon i {
  font-size: 22px;
  color: #0b0e14;
}

/* TITLE */
.engine-card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}

/* DESCRIPTION */
.engine-desc {
  color: #bfc7d5;
  font-size: 14px;
  margin-bottom: 20px;
}

/* LIST */
.engine-card ul {
  padding-left: 18px;
}

.engine-card li {
  font-size: 14px;
  color: #9aa4b5;
  margin-bottom: 8px;
}

/* HOVER EFFECT */
.engine-card:hover {
  transform: translateY(-10px);
  border: 1px solid rgba(255, 179, 71, 0.4);
  box-shadow: 0 25px 60px rgba(255, 106, 0, 0.15);
}

/* ================= ELITE FRAMEWORK ================= */

.elite-framework {
  padding: 120px 10%;
  background: #0b0e14;
}

.elite-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* CARD BASE */
.elite-card {
  position: relative;
  background: #111722;
  border-radius: 20px;
  border: 1px solid #1c2433;
  padding: 50px;
  overflow: hidden;
  transition: 0.4s ease;
}

/* LEFT ACCENT LINE */
/* .elite-left-accent {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, #ffb347, #ff6a00);
} */

/* ================= ELITE ANIMATED STRIPE ================= */

.elite-left-accent {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  overflow: hidden;
}

/* Animated Gradient */
.elite-left-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #ffb347,
    #ff6a00,
    #ffb347
  );
  background-size: 100% 200%;
  
}
.elite-card:hover .elite-left-accent::before {
  animation: eliteStripeFlow 4s linear infinite;
}

/* Smooth slow movement */
@keyframes eliteStripeFlow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 0% 200%;
  }
}

/* TAG */
.elite-tag {
  font-size: 12px;
  letter-spacing: 1px;
  color: #ffb347;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

/* TITLE */
.elite-card h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 15px;
}

/* DESCRIPTION */
.elite-card p {
  font-size: 15px;
  color: #aeb7c7;
  margin-bottom: 20px;
  max-width: 650px;
}

/* LIST */
.elite-card ul {
  padding-left: 20px;
}

.elite-card li {
  font-size: 14px;
  color: #cfd6e4;
  margin-bottom: 8px;
}

/* HOVER EFFECT */
.elite-card:hover {
  transform: translateY(-8px);
  border: 1px solid rgba(255, 179, 71, 0.4);
  box-shadow: 0 30px 80px rgba(255, 106, 0, 0.12);
}

/* ================= CAREER ROAD SECTION ================= */

.career-road-section {
  padding: 40px 8%;
  background: #0b0e14;
  text-align: center;
}

.road-intro h2 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 12px;
}

.road-intro p {
  color: #9ea8ba;
  margin-bottom: 100px;
  font-size: 15px;
}

/* WRAPPER */
.road-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 1250px;
  margin: 0 auto;
}

/* SVG ROAD */
.road-svg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 260px;
  z-index: 1;
}

/* STEP BASE */
.road-step {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

/* LEFT / RIGHT ALIGN */
.road-step.left {
  justify-content: flex-start;
  text-align: left;
}

.road-step.right {
  justify-content: flex-end;
  text-align: left;
}

/* ROAD DOT (NUMBER ON ROAD) */
.road-dot {
  position: absolute;
  left: calc(50% - 10px);
  transform: translate(-50%, -50%);
  width: 60px;   /* road 40 + 10px margin each side */
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb347, #ff6a00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #0b0e14;
  z-index: 5;
  box-shadow:
    0 0 0 8px #0b0e14,
    0 0 30px rgba(255, 106, 0, 0.35);
}

/* CARD STYLE */
.road-card {
  width: 42%;
  padding: 30px 35px;
  border-radius: 22px;
  background: rgba(17, 23, 34, 0.85);
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
}

/* Positioning */
.road-step.left .road-card {
  margin-right: auto;
}

.road-step.right .road-card {
  margin-left: auto;
}

/* CARD TEXT */
.road-card h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 15px;
}

.road-card p {
  color: #b6c0d3;
  font-size: 12px;
  line-height: 1.6;
}

.road-card ul {
  color: #b6c0d3;
  font-size: 12px;
  line-height: 1.6;
}

/* HOVER EFFECT */
.road-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(255, 106, 0, 0.15);
}

/* ================= MOBILE VERSION ================= */

@media (max-width: 768px) {

  .road-wrapper {
    height: auto;
  }

  .road-svg {
    display: none;
  }

  .road-step {
    position: relative;
    justify-content: center !important;
    text-align: center !important;
  }

  .road-dot {
    position: relative;
    transform: none;
    margin-bottom: 20px;
  }

  .road-card {
    width: 100%;
  }
}
@media (max-width: 768px) {

  .road-wrapper {
    position: relative;
    height: auto;
    padding: 0 0 40px 0;
  }

  /* Straight road */
  .mobile-road {
    position: absolute;
    left: 50%;
    top: 0;
    width: 40px;
    height: 100%;
    transform: translateX(-50%);
    background: #141a24;
    border-radius: 20px;
    z-index: 1;
  }

  /* Orange side glow */
  .mobile-road::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 0;
    width: 4px;
    height: 100%;
    background: #ffb347;
  }

  .mobile-road::after {
    content: "";
    position: absolute;
    right: -4px;
    top: 0;
    width: 4px;
    height: 100%;
    background: #ff6a00;
  }

  /* Center dashed line */
  .mobile-road {
    background-image: repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.4) 0px,
      rgba(255,255,255,0.4) 10px,
      transparent 10px,
      transparent 22px
    );
    background-color: #141a24;
  }

  /* Stack steps centered */
.road-step {
    position: relative !important;
    top: auto !important;   /* 🚨 This is the real fix */
    left: auto !important;
    right: auto !important;
    transform: none !important;

    width: 90%;
    margin: 50px auto;
    z-index: 3;
  }

  .road-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
  }

}
/* ================= ROAD DRAW ANIMATION ================= */

/* Animate only dashed center line */
.road-svg path:last-child {
  stroke-dasharray: 14 20;
  stroke-dashoffset: 500;
  transition: stroke-dashoffset 2s ease;
}

.career-road-section.active .road-svg path:last-child {
  stroke-dashoffset: 0;
}



/* ================= DASHED MOTION ================= */

.career-road-section.active .road-svg path:last-child {
  animation: dashMove 2s linear infinite;
}

@keyframes dashMove {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -100;
  }
}

/* ================= STEP ANIMATION ================= */

.road-step {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.career-road-section.active .road-step {
  opacity: 1;
  transform: translateY(0);
}

/* stagger delay */
.road-step:nth-child(2) { transition-delay: 0.3s; }
.road-step:nth-child(3) { transition-delay: 0.6s; }
.road-step:nth-child(4) { transition-delay: 0.9s; }
.road-step:nth-child(5) { transition-delay: 1.2s; }

/* ================= DOT GLOW ================= */

.road-dot {
  transition: 0.6s ease;
}

.career-road-section.active .road-dot {
  box-shadow:
    0 0 0 8px #0b0e14,
    0 0 50px rgba(255, 106, 0, 0.5);
}

/* ================= HOW IT WORKS ================= */

.career-flow {
  padding: 0px 60px;
  position: relative;
}

.section-intro h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
}

.section-intro p {
  text-align: center;
  color: #aaa;
  margin-bottom: 60px;
}

/* GRID */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.flow-step {
  background: #141a24;
  padding: 35px 25px;
  border-radius: 16px;
  position: relative;
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.flow-step:hover {
  transform: translateY(-8px);
  border-color: #ff6a00;
  box-shadow: 0 15px 40px rgba(255, 106, 0, 0.15);
}

/* ICON AREA */
.flow-icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffb347, #ffffff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #000;
}

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #0b0e14;
  color: #ffb347;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 20px;
  border: 1px solid #ff6a00;
}

/* TITLE */
.flow-step h4 {
  margin-bottom: 15px;
  font-size: 14px;
}

/* LIST */
.flow-step ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flow-step ul li {
  font-size: 11px;
  color: #aaa;
  text-align: left;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.flow-step ul li::before {
  content: "•";
  color: #ff6a00;
  position: absolute;
  left: 0;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .flow-steps {
    grid-template-columns: 1fr;
  }
}
/* ================= FLOW CONNECTING LINE ================= */

.flow-wrapper {
  position: relative;
}

/* Horizontal base line */
.flow-line {
  position: absolute;
  top: 70px; /* align with icon center */
  left: 5%;
  width: 90%;
  height: 3px;
  background: rgba(255,255,255,0.08);
  z-index: 0;
  border-radius: 10px;
  overflow: hidden;
}

/* Animated gradient overlay */
.flow-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    #ffb347,
    #ff6a00,
    transparent
  );
  background-size: 200% 100%;
  animation: flowMove 3s linear infinite;
  opacity: 0.7;
}

/* Movement */
@keyframes flowMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

/* Ensure cards appear above line */
.flow-steps {
  position: relative;
  z-index: 2;
}
@media(max-width: 992px) {
  .flow-line {
    display: none;
  }
}

/* ================= AUDIENCE SECTION ================= */

.audience-section {
  padding: 100px 60px;
  background: #0b0e14;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.audience-card {
  background: #141a24;
  padding: 40px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.4s ease;
}

.audience-card:hover {
  transform: translateY(-6px);
}

/* Positive Card */
.audience-card.positive {
  border-left: 4px solid #ffb347;
}

/* Negative Card */
.audience-card.negative {
  border-left: 4px solid #ff6a00;
}

.audience-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.audience-header i {
  font-size: 24px;
  color: #ffb347;
}

.audience-card.negative .audience-header i {
  color: #ff6a00;
}

.audience-card h3 {
  font-size: 20px;
}

.audience-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-card ul li {
  font-size: 15px;
  color: #aaa;
  margin-bottom: 12px;
  position: relative;
  padding-left: 18px;
}

.audience-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffb347;
}

.audience-card.negative ul li::before {
  color: #ff6a00;
}

.audience-note {
  text-align: center;
  margin-top: 60px;
  color: #bbb;
  font-size: 16px;
}

/* Responsive */
@media(max-width: 992px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= COMMITMENT SECTION ================= */

.commitment-section {

  display: flex;
  justify-content: center;
}

.commitment-box {
  max-width: 100%;
  padding: 60px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.commitment-box h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.commitment-sub {
  color: #ffb347;
  margin-bottom: 50px;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.commitment-item {
  background: #141a24;
  padding: 30px 20px;
  border-radius: 16px;
  transition: 0.3s ease;
}

.commitment-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(255,106,0,0.15);
}

.commitment-item i {
  font-size: 28px;
  color: #ff6a00;
  margin-bottom: 15px;
}

.commitment-item h4 {
  margin-bottom: 10px;
}

.commitment-item p {
  font-size: 14px;
  color: #aaa;
}

.identity-shift {
  margin-bottom: 40px;
}

.identity-shift h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.identity-shift p {
  color: #bbb;
}

.commitment-cta button {
  padding: 16px 28px;
  font-size: 16px;
}

/* Responsive */
@media(max-width: 992px) {
  .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .commitment-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= FINAL CTA ================= */

.final-cta {
  padding: 40px 40px;
  display: flex;
  justify-content: center;
}

.cta-container {
  max-width: 1000px;
  text-align: center;
  background: #141a24;
  padding: 80px 60px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient border accent */
.cta-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, #ffb347, #ff6a00);
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cta-container h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-sub {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 40px;
}

.cta-points {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.cta-points span {
  font-size: 14px;
  color: #bbb;
}

.cta-points i {
  color: #ff6a00;
  margin-right: 6px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cta-main {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-outline {
  padding: 16px 28px;
  border: 1px solid #ff6a00;
  color: #ff6a00;
  background: transparent;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #ffb347, #ff6a00);
  color: #000;
}

/* Note */
.cta-note {
  font-size: 13px;
  color: #777;
}

/* Responsive */
@media(max-width: 768px) {
  .cta-container {
    padding: 60px 25px;
  }

  .cta-container h2 {
    font-size: 26px;
  }
}
/* ================= ELITE FRAMEWORK INTRO ================= */

.elite-framework {
  padding: 100px 60px;
  background: #0f141d;
}

.elite-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px auto;
}

.elite-intro h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.elite-intro p {
  color: #aaa;
  font-size: 16px;
  line-height: 1.6;
}




/* ================= EDUVOXY BLOG HERO ================= */

.eduvoxy-blog-hero {
  position: relative;
  overflow: hidden;
  height: 480px;
}

.hero-slider {
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.5),
    transparent
  );
}

.hero-overlay {
  position: absolute;
  left: 70px;
  bottom: 70px;
  max-width: 550px;
  color: #fff;
  z-index: 3;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(255,179,71,0.15);
  color: #ffb347;
  font-size: 12px;
}

.hero-overlay h1 {
  font-size: 40px;
  margin-bottom: 14px;
}

.hero-overlay p {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 22px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-meta img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.hero-meta span {
  display: block;
  font-size: 10px;
  opacity: 0.8;
}

/* Vertical Dots */
.hero-dots {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 5;
}

.hero-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: 0.3s ease;
}

.hero-dots .dot.active {
  background: #ffb347;
  box-shadow: 0 0 12px rgba(255,179,71,0.8);
  transform: scale(1.4);
}

/* Responsive */
@media (max-width: 768px) {
  .eduvoxy-blog-hero {
    margin: 0px 0px;
    height: 380px;
  }

  .hero-overlay {
    left: 24px;
    bottom: 40px;
  }

  .hero-overlay h1 {
    font-size: 26px;
  }

  .hero-dots {
    left: 12px;
  }
}

/* ================= EDUVOXY BLOG GRID ================= */

.eduvoxy-blog-section {
  padding: 20px 24px;
}

.blog-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.blog-top h2 {
  font-size: 32px;
}

.blog-top p {
  opacity: 0.7;
  font-size: 14px;
}

.blog-sort select {
  background: var(--brand-end);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
}

/* ================= BLOG FILTERS ================= */

.blog-filters {
  display: flex;
  gap: 14px;
  justify-content: left;
  flex-wrap: nowrap;              /* IMPORTANT */
  overflow-x: auto;               /* enable scroll */
  white-space: nowrap;
  padding-bottom: 20px;
  scrollbar-width: none;          /* Firefox */
}

.blog-filters::-webkit-scrollbar {
  display: none;                  /* Chrome */
}

.blog-filters button {
  flex: 0 0 auto;                 /* prevent shrinking */
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 14px;
}

.blog-filters button:hover,
.blog-filters button.active {
  background: #ffb347;
  color: #000;
}
/* GRID */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* ================= BLOG CATEGORY BADGE ================= */

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Category badge */
.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 500;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  color: #ffb347;
  border: 1px solid rgba(255, 179, 71, 0.4);
  transition: 0.3s ease;
}

/* Hover effect */
.blog-card:hover .blog-category {
  background: #ffb347;
  color: #000;
  box-shadow: 0 0 12px rgba(255,179,71,0.6);
}
/* CARD */

.blog-card {
  background: linear-gradient(135deg,#1b2030,#121620);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.4s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(255,106,0,0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 22px;
}

.blog-card .category {
  font-size: 12px;
  color: #ffb347;
}

.blog-card h3 {
  margin: 10px 0;
  font-size: 16px;
}

.blog-card p {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 14px;
}

.blog-card .meta {
  font-size: 12px;
  opacity: 0.6;
}

/* PAGINATION */

.blog-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.blog-pagination button {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.blog-pagination .active,
.blog-pagination button:hover {
  background: #ffb347;
  color: #000;
  border-color: #ffb347;
}

/* Responsive */

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .eduvoxy-blog-section {
    padding: 20px 24px !important;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-top {
    flex-direction: column;
    gap: 20px;
  }
}
.blog-card {
  transition: 0.4s ease;
}

.blog-card.hide {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
}

.blog-grid {
  position: relative;
}

/* ================= BLOG CATEGORY BADGE ================= */

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Category badge */
/* .blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 500;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  color: #ffb347;
  border: 1px solid rgba(255, 179, 71, 0.4);
  transition: 0.3s ease;
} */

/* ================= BASE CATEGORY BADGE ================= */

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.6);
  border: 1px solid;
  transition: 0.3s ease;
}

/* Hover effect */
.blog-card:hover .blog-category {
  background: #ffb347;
  color: #000;
  box-shadow: 0 0 12px rgba(255,179,71,0.6);
}

/* ================= CATEGORY COLORS ================= */

/* AI - Purple Neon */
.blog-card[data-category="AI"] .blog-category {
  color: #b388ff;
  border-color: rgba(179,136,255,0.5);
}

.blog-card[data-category="AI"]:hover .blog-category {
  background: #b388ff;
  color: #000;
  box-shadow: 0 0 14px rgba(179,136,255,0.8);
}


/* Cybersecurity - Red */
.blog-card[data-category="Cybersecurity"] .blog-category {
  color: #ff4d4f;
  border-color: rgba(255,77,79,0.5);
}

.blog-card[data-category="Cybersecurity"]:hover .blog-category {
  background: #ff4d4f;
  color: #000;
  box-shadow: 0 0 14px rgba(255,77,79,0.8);
}


/* DevOps - Eduvoxy Orange */
.blog-card[data-category="DevOps"] .blog-category {
  color: #ffb347;
  border-color: rgba(255,179,71,0.5);
}

.blog-card[data-category="DevOps"]:hover .blog-category {
  background: #ffb347;
  color: #000;
  box-shadow: 0 0 14px rgba(255,179,71,0.8);
}


/* DevSecOps - Teal Accent */
.blog-card[data-category="DevSecOps"] .blog-category {
  color: #00d4ff;
  border-color: rgba(0,212,255,0.5);
}

.blog-card[data-category="DevSecOps"]:hover .blog-category {
  background: #00d4ff;
  color: #000;
  box-shadow: 0 0 14px rgba(0,212,255,0.8);
}


/* Cloud - Blue */
.blog-card[data-category="Cloud"] .blog-category {
  color: #4da3ff;
  border-color: rgba(77,163,255,0.5);
}

.blog-card[data-category="Cloud"]:hover .blog-category {
  background: #4da3ff;
  color: #000;
  box-shadow: 0 0 14px rgba(77,163,255,0.8);
}
.blog-card {
  cursor: pointer;
}
/* ================= EDUVOXY SOFT CTA ================= */

.eduvoxy-soft-cta {
 padding-left: 60px;
 padding-right: 60px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}

/* LEFT SIDE */

.cta-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cta-card {
  background: linear-gradient(135deg,#1b2030,#121620);
  border-radius: 22px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.4s ease;
}

.cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(255,106,0,0.15);
}

.cta-icon {
  font-size: 20px;
  color: #ffb347;
  margin-bottom: 20px;
}

.cta-card h3 {
  margin-bottom: 14px;
  font-size: 20px;
}

.cta-card p {
  opacity: 0.8;
  margin-bottom: 20px;
  font-size: 14px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  background: #ffb347;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #ff6a00;
}

/* Stats Card */

.cta-stats {
  background: linear-gradient(135deg,#1b2030,#121620);
  border-radius: 22px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.05);
}

.cta-stats h4 {
  font-size: 14px;
  opacity: 0.7;
}

.cta-stats span {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #ffb347;
  margin: 8px 0;
}

.cta-stats p {
  font-size: 13px;
  opacity: 0.6;
}

/* RIGHT SIDE LARGE PANEL */

.cta-right {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: url("assets/cta-background.jpg") center/cover no-repeat;
  min-height: 420px;
}

.cta-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.4)
  );
}

.cta-overlay {
  position: relative;
  z-index: 2;
  padding: 60px;
  max-width: 600px;
}

.cta-overlay h2 {
  font-size: 32px;
  margin-bottom: 18px;
  text-align: center;
}

.cta-overlay p {
  font-size: 15px;
  opacity: 0.85;
  text-align: center;
}

/* Responsive */

@media (max-width: 1024px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-right {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .eduvoxy-soft-cta {
    padding: 80px 24px;
  }

  .cta-overlay {
    padding: 40px 24px;
  }
}
/* ================= RIGHT CTA ENHANCED ================= */

.cta-right {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg,#1b2030,#121620);
  min-height: 420px;
  border: 1px solid rgba(255,255,255,0.05);
}

.cta-overlay {
  padding: 60px;
  max-width: 600px;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.cta-overlay h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.cta-overlay p {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 30px;
}

/* ================= CTA FEATURE GRID ================= */

.cta-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
}

/* Feature Card */

.feature-card {
  padding: 22px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s ease;
  
}

.feature-card i {
  font-size: 20px;
  margin-bottom: 14px;
  display: inline-block;
}

/* AI */
.feature-card:nth-child(1) i {
  color: #b388ff;
}

/* Cyber */
.feature-card:nth-child(2) i {
  color: #ff4d4f;
}

/* DevSecOps */
.feature-card:nth-child(3) i {
  color: #ffb347;
}

/* Cloud */
.feature-card:nth-child(4) i {
  color: #4da3ff;
}

.feature-card h4 {
  font-size: 14px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 12px;
  opacity: 0.7;
}

/* Hover Effect */

.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Responsive */

@media (max-width: 768px) {
  .cta-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= BLOG DETAILS PAGE ================= */

.blog-details-wrapper {
  padding: 20px 60px 120px 60px;
}

/* Back button */
.blog-back a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.blog-back a:hover {
  color: #ffb347;
}

/* Header */

.blog-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.blog-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(255,179,71,0.15);
  color: #ffb347;
  font-size: 12px;
  margin-bottom: 16px;
}

.blog-header h1 {
  font-size: 38px;
  margin-bottom: 16px;
}

.blog-meta {
  opacity: 0.6;
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* Hero Image */

.blog-hero-image {
  margin: 50px auto;
  max-width: 1100px;
  border-radius: 20px;
  overflow: hidden;
}

.blog-hero-image img {
  width: 100%;
  display: block;
  height: 400px;
}

/* Layout */

.blog-content-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  align-items: start;   /* IMPORTANT */
}

/* TOC */

.blog-toc {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.blog-toc h4 {
  font-size: 14px;
  margin-bottom: 14px;
  opacity: 0.7;
}

.blog-toc ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.blog-toc li {
  margin-bottom: 10px;
}

.blog-toc a {
  text-decoration: none;
  font-size: 13px;
  color: #aaa;
  transition: 0.3s;
}

.blog-toc a:hover {
  color: #ffb347;
}

/* Share */

.blog-share span {
  font-size: 12px;
  opacity: 0.6;
}

.share-icons {
  margin-top: 10px;
  display: flex;
  gap: 12px;
}

.share-icons i {
  cursor: pointer;
  transition: 0.3s;
}

.share-icons i:hover {
  color: #ffb347;
}

/* Content */

.blog-content h2 {
  margin: 40px 0 14px 0;
  font-size: 24px;
}

.blog-content p {
  line-height: 1.8;
  opacity: 0.85;
  font-size: 15px;
}

.blog-content ul {
  padding-left: 20px;
  line-height: 1.8;
}

/* Responsive */

@media (max-width: 1024px) {
  .blog-content-layout {
    grid-template-columns: 1fr;
  }

  .blog-toc {
    display: none;
  }
}

@media (max-width: 768px) {
  .blog-details-wrapper {
    padding: 40px 20px 80px 20px;
  }

  .blog-header h1 {
    font-size: 26px;
  }
}
/* ================= CODE BLOCK ================= */

.code-block {
  margin: 30px 0;
  background: #0f172a;
  border-radius: 14px;
  padding: 20px;
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,0.08);
}

.code-block pre {
  margin: 0;
}

.code-block code {
  font-family: Consolas, monospace;
  font-size: 13px;
  color: #e2e8f0;
  line-height: 1.6;
}
/* ================= BLOG SIDEBAR ================= */


.blog-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;  /* IMPORTANT */
  align-self: start;    /* IMPORTANT inside grid */
  display: flex;
  flex-direction: column;
  gap: 30px;
}


/* TOC */

.blog-toc {
  padding-left: 10px;
}

.blog-toc h4 {
  font-size: 14px;
  margin-bottom: 14px;
  opacity: 0.6;
}

.blog-toc ul {
  list-style: none;
  padding: 0;
}

.blog-toc li {
  margin-bottom: 12px;
}

.blog-toc a {
  text-decoration: none;
  font-size: 13px;
  color: #aaa;
  transition: 0.3s;
}

.blog-toc a:hover,
.blog-toc a.active {
  color: #ffb347;
}

/* ================= SIDEBAR SHARE ================= */

.blog-share-sidebar {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.blog-share-sidebar span {
  font-size: 12px;
  opacity: 0.6;
  display: block;
  margin-bottom: 14px;
}

.share-icons {
  display: flex;
  gap: 12px;
}

.share-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
}

.share-icon:hover {
  background: #ffb347;
  color: #000;
  transform: translateY(-3px);
}
.blog-share-sidebar {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.blog-sidebar {
  z-index: 1;
}
@media (max-width: 1024px) {
  .blog-sidebar {
    display: none;
  }
}
.blog-details-wrapper {
  padding: 20px 60px 120px 60px;
}

/* Tablet + Mobile */
@media (max-width: 1024px) {

  .blog-content-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-sidebar {
    position: relative;
    top: 0;
    width: 100%;
  }

}

/* Mobile Only */
@media (max-width: 768px) {

  .blog-details-wrapper {
    padding: 40px 20px 80px 20px;
  }

}
/* Prevent code from expanding page width */
.code-block {
  overflow-x: auto;
  max-width: 100%;
}

.code-block pre {
  white-space: pre;        /* keep formatting */
  min-width: 100%;
}

.code-block code {
  display: block;
  min-width: max-content;  /* THIS FIXES IT */
}
@media (max-width: 768px) {

  .blog-content-layout {
    width: 100%;
  }

  .blog-content {
    overflow-x: hidden;
  }

}

/* FINAL MOBILE FIX */

@media (max-width: 1024px) {
  .blog-content-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-sidebar {
    display: none;
  }
}




@media (max-width: 768px) {
  section.blog-details-wrapper {
    padding: 20px 20px 40px 20px !important;
  }
}

.section-padding {
  padding: 20px 20px !important;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 0px 20px !important;
  }
}

@media (max-width: 768px) {
.blog-content h2 {
    font-size: 18px;
}
}

@media (max-width: 768px) {
  .setion-heading {
    padding: 0px !important;
  }
  .hero-overlay h1 {
  font-size: 20px;
  margin-bottom: 5px;
  }
  .hero-overlay p {
  font-size: 15px;
  }
  
.hero-badge {
  margin-bottom: 5px;
}
.hero-meta span {
  font-size: 11px;
}

}

@media (max-width: 768px) {

  .blog-filters {
    justify-content: flex-start;  /* left align for swipe feel */

    padding-right: 20px;
  }

}



/* ================= BLOG CONTENT TYPOGRAPHY ================= */

.blog-content {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  max-width: 760px;
}

/* Paragraphs */

.blog-content p {
  margin-bottom: 22px;
}

/* Headings */

.blog-content h2 {
  font-size: 30px;
  margin-top: 50px;
  margin-bottom: 16px;
  font-weight: 600;
  color: #ffffff;
}

.blog-content h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 10px;
}

/* Lists */

.blog-content ul {
  padding-left: 20px;
  margin-bottom: 24px;
}

.blog-content li {
  margin-bottom: 10px;
}

/* Links */

.blog-content a {
  color: #ffb347;
  text-decoration: none;
}

.blog-content a:hover {
  text-decoration: underline;
}

/* Code blocks */

.code-block {
  margin: 35px 0;
  background: #0f172a;
  border-radius: 14px;
  padding: 22px;
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,0.08);
}

.code-block code {
  font-family: Consolas, monospace;
  font-size: 14px;
  line-height: 1.6;
}

/* Section spacing */

.blog-content section {
  margin-bottom: 40px;
}
.blog-header h1 {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 18px;
  font-weight: 700;
}

.blog-meta {
  font-size: 15px;
  opacity: 0.65;
}

@media (max-width: 768px) {

  .blog-content {
    font-size: 16px;
    line-height: 1.8;
  }

  .blog-content h2 {
    font-size: 24px;
  }

  .blog-header h1 {
    font-size: 28px;
  }

}

/* MOBILE CAREER DROPDOWN */
/* MOBILE VERSION */

.mobile-career{
  display:none;
}

/* DESKTOP VERSION */

.desktop-career{
  display:block;
}

@media (max-width:768px){

  .desktop-career{
    display:none;
  }

  .mobile-career{
    display:block;
  }

}

.mobile-career-list {
  display: none;
  flex-direction: column;
  padding-left: 15px;
  margin-top: 10px;
}

.mobile-career-list li {
  padding: 8px 0;
}

.mobile-career-list a {
  font-size: 14px;
  opacity: 0.85;
}

.mobile-career-list.show {
  display: flex;
}

.mobile-arrow {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.mobile-arrow.rotate {
  transform: rotate(180deg);
}

@media (max-width:768px){

  .mega-wrapper{
    display:none !important;
  }

}
.mobile-career-list li {
  border-left: 2px solid #ff6a00;
  padding-left: 10px;
}

/* marquee container */

.logo-marquee{
overflow:hidden;
position:relative;
width:100%;
margin-top:10px;
}

/* moving track */

.logo-track{
display:flex;
align-items:center;
gap:80px;
width:max-content;

animation:scrollLogos 35s linear infinite;
}

/* logos */

.logo-track img{
height:25px;
opacity:.8;
filter:grayscale(100%);
transition:.3s ease;
}

/* hover effect */

.logo-track img:hover{
opacity:1;
filter:grayscale(0%);
}

/* animation */

@keyframes scrollLogos{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* mobile optimization */

@media (max-width:768px){

.logo-track{
gap:40px;
}

.logo-track img{
height:32px;
}

}

.logo-track img{
height:30px;
filter: grayscale(100%);
opacity:.7;
}

.logo-disclaimer{
text-align:center;
font-size:13px;
color:#8a8f98;
margin-top:5px;
line-height:1.6;
max-width:700px;
margin-left:auto;
margin-right:auto;
opacity:.9;
}

.premium-role-card{
transition: all .3s ease;
}

.premium-role-card:hover{
transform: translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.08);
}
.ai-card-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:40px;

margin-top:60px;

}



.ai-project-card{
  min-height: 48%;
  min-width: 48%;

background:linear-gradient(135deg,#ffd36e,#ffb347);

border-radius:26px;

padding:70px 28px 32px;

text-align:center;

position:relative;

color:#111;

box-shadow:0 15px 40px rgba(0,0,0,0.15);

transition:.3s ease;

margin-bottom: 10px;
margin-top: 35px;
}



.ai-project-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 60px rgba(0,0,0,0.25);

}



/* floating icon */

.ai-card-avatar{

position:absolute;

top:-40px;

left:50%;

transform:translateX(-50%);

width:80px;
height:80px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

background:#ff6a00;

color:white;

font-size:34px;

box-shadow:0 10px 25px rgba(0,0,0,0.2);

}



.ai-project-card h3{

font-size:18px;

margin-bottom:10px;

}



.ai-project-card p{

font-size:14px;

line-height:1.6;

margin-bottom:18px;

}



.ai-card-tools{

display:flex;
justify-content:center;
flex-wrap:wrap;
gap:8px;

}



.ai-card-tools span{

background:rgba(0,0,0,0.1);

padding:6px 12px;

border-radius:20px;

font-size:10px;

}

/* gradients */

.gradient-1{
background:linear-gradient(135deg,#ffd36e,#ff9a3c);
}

.gradient-2{
background:linear-gradient(135deg,#8ec5fc,#e0c3fc);
}

.gradient-3{
background:linear-gradient(135deg,#f6d365,#fda085);
}


.company-logos {
  padding: 15px 30px;
}



.who-premium-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.who-premium-card{
background:#151822;
border:1px solid rgba(255,255,255,0.06);
border-radius:14px;
padding:26px;
transition:.3s;
}

.who-premium-card:hover{
transform:translateY(-5px);
border-color:#ff6a00;
}

.who-icon{
font-size:26px;
margin-bottom:12px;
color:#ffb347;
}

.who-premium-card h3{
margin-bottom:10px;
font-size: 14px;
}
.who-premium-card p {
font-size: 12px;
}

.who-premium-card ul{
margin-top:10px;
padding-left:18px;
}

.who-premium-card li{
font-size:11px;
margin-bottom:5px;
color:#9aa3b2;
}

.price-row{
display:flex;
align-items:center;
gap:10px;
}

.emi-link{
font-size:12px;
color:#00bfff;
cursor:pointer;
font-weight:600;
}

.emi-link:hover{
text-decoration:underline;
}

.career-features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:8px;
margin-top:10px;
}

.feature-box{
display:flex;
align-items:center;
gap:8px;
background:#0f172a;
padding:8px 10px;
border-radius:8px;
font-size:13px;
}

.feature-box i{
color:#00bfff;
}

.career-divider{
display:flex;
align-items:center;
text-align:center;
margin:18px 0;
color:#9ca3af;
font-size:12px;
letter-spacing:1px;
text-transform:uppercase;
}

.career-divider::before,
.career-divider::after{
content:"";
flex:1;
border-bottom:1px solid rgba(255, 179, 71);
margin:0 10px;
animation:dividerFade 3s infinite alternate;
}

@keyframes dividerFade{
from{opacity:0.3;}
to{opacity:1;}
}

.training-outcomes{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:10px;
}

.outcome-card{
display:flex;
align-items:center;
gap:10px;
padding:12px;
background:linear-gradient(145deg,#111827,#1f2937);
border-radius:10px;
border:1px solid rgba(255,255,255,0.05);
font-size:11px;
color:#e5e7eb;
transition:0.3s;
}

.outcome-card img{
width:20px;
height:20px;
}

.outcome-card i{
font-size:15px;
color:#00bfff;
}

.outcome-card:hover{
border-color:#ff6a00;
transform:translateY(-2px);
}
.outcome-card img{
filter:grayscale(20%);
transition:0.3s;
}

.outcome-card:hover img{
filter:none;
}

.emi-modal-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.emi-modal-overlay.active{
display:flex;
}

.emi-modal-box{
background: linear-gradient(135deg,#1b2030,#121620);
padding:25px;
border-radius:12px;
width:420px;
max-width:90%;
}

.emi-modal-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:15px;
}

.payment-item{
margin-bottom:12px;
}

.emi-modal-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.75);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.emi-modal-overlay.active{
display:flex;
}

.emi-modal-box{
background: linear-gradient(135deg,#1b2030,#121620);
padding:25px;
border-radius:14px;
width:420px;
max-width:92%;
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 10px 40px rgba(0,0,0,0.6);
}

.emi-modal-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:18px;
}

.emi-modal-header h3{
font-size:18px;
display:flex;
gap:8px;
align-items:center;
}

.emi-close{
background:none;
border:none;
font-size:22px;
color:white;
cursor:pointer;
  top: 18px;
  right: 22px;
}

.payment-item{
display:flex;
gap:12px;
padding:12px;
border-radius:10px;
background:#111827;
margin-bottom:10px;
}

.payment-icon{
font-size:20px;
color:#38bdf8;
}

.payment-content strong{
display:block;
font-size:14px;
}

.payment-content p{
font-size:13px;
opacity:0.8;
margin:3px 0 0;
}

.emi-modal-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.8);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.emi-modal-overlay.active{
display:flex;
}

.emi-modal-box{
background: linear-gradient(135deg,#1b2030,#121620);
padding:30px;
border-radius:14px;
width:520px;
max-width:92%;
border:1px solid rgba(255,255,255,0.08);
text-align:center;
}

.emi-modal-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
}

.emi-modal-header h3{
font-size:18px;
display:flex;
gap:8px;
align-items:center;
}


.emi-cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:12px;
margin-bottom:20px;
}

.emi-card{
background:#111827;
padding:16px;
border-radius:10px;
border:1px solid rgba(255,255,255,0.06);
transition:0.25s;
}

.emi-card i{
font-size:22px;
color:#ffb347;
margin-bottom:8px;
}

.emi-card h4{
font-size:11px;
margin-bottom:6px;
}

.emi-card p{
font-size:10px;
opacity:0.85;
}

.emi-card:hover{
transform:translateY(-3px);
border-color:#ffb347;
}

.emi-enroll-btn{
display:block;
background:#ffb347;
color: #000;;
padding:12px;
border-radius:8px;
font-weight:600;
text-decoration:none;
}
@media(max-width:600px){

.emi-cards{
grid-template-columns:1fr;
}

}
.emi-card:nth-child(2){
border:1px solid #ffb347;
background:#0b1220;
}

.nav-links a.active{
color:#ffb347;
font-weight:600;
position:relative;
}

.nav-links a.active::after{
content:"";
position:absolute;
bottom:-6px;
left:0;
width:100%;
height:2px;
border-radius:2px;
}

/* ================= HERO COHORT ================= */

.hero-cohort{
  padding:120px 8%;
  background:#0b0e14;
}

.hero-container{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  align-items:center;
  gap:60px;
}

/* LEFT SIDE */

.hero-left h1{
  font-size:48px;
  line-height:1.2;
  margin-bottom:18px;
}

.hero-left h1 span{
  background:linear-gradient(135deg,#ffb347,#ff6a00);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-sub{
  font-size:16px;
  opacity:0.85;
  max-width:520px;
  margin-bottom:18px;
}

.hero-tracks{
  margin-bottom:25px;
  font-size:14px;
  color:#ffb347;
  letter-spacing:1px;
}

.hero-buttons{
  display:flex;
  gap:14px;
  margin-bottom:35px;
}

/* COHORT BOX */

.cohort-box{
  background:#121722;
  padding:20px;
  border-radius:10px;
  max-width:380px;
}

.cohort-title{
  font-size:13px;
  margin-bottom:10px;
  opacity:0.7;
}

/* TIMER */

.countdown{
  display:flex;
  gap:20px;
  margin-bottom:15px;
}

.countdown span{
  font-size:24px;
  font-weight:600;
}

.countdown small{
  display:block;
  font-size:11px;
  opacity:0.6;
}

/* RESERVE BUTTON */

.reserve-btn{
  display:block;
  text-align:center;
  padding:10px;
  background:linear-gradient(135deg,#ffb347,#ff6a00);
  border-radius:6px;
  text-decoration:none;
  color:#000;
  font-weight:600;
}

/* RIGHT SIDE */

.hero-right img{
  width:100%;
  border-radius:10px;
}

/* HIGHLIGHTS */

.hero-highlights{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin-top:18px;
}

.highlight{
  display:flex;
  gap:8px;
  align-items:center;
  font-size:13px;
  background:#121722;
  padding:10px;
  border-radius:6px;
}

/* MOBILE */

@media(max-width:900px){

.hero-container{
grid-template-columns:1fr;
}

.hero-left h1{
font-size:34px;
}

.hero-highlights{
grid-template-columns:1fr;
}

}
/* HERO PROGRAM CARD */

.hero-program-card{
background:#121722;
border-radius:12px;
padding:28px;
max-width:320px;
box-shadow:0 15px 40px rgba(0,0,0,0.5);
}

.program-badge{
display:inline-block;
background:linear-gradient(135deg,#ffb347,#ff6a00);
color:#000;
font-size:11px;
padding:4px 10px;
border-radius:20px;
margin-bottom:10px;
font-weight:600;
}

.hero-program-card h3{
margin-bottom:10px;
font-size:20px;
}

.program-meta{
display:flex;
gap:12px;
font-size:13px;
opacity:0.8;
margin-bottom:15px;
}

.cohort-date{
font-size:13px;
margin-bottom:15px;
opacity:0.9;
}

.program-highlights{
list-style:none;
padding:0;
margin-bottom:20px;
}

.program-highlights li{
font-size:13px;
margin-bottom:6px;
opacity:0.85;
}

.program-btn{
display:block;
text-align:center;
padding:10px;
background:linear-gradient(135deg,#ffb347,#ff6a00);
border-radius:6px;
color:#000;
font-weight:600;
text-decoration:none;
}

/* HERO PROGRAM CARD */

.hero-program-card{
background:#121722;
border-radius:12px;
padding:28px;
max-width:320px;
box-shadow: 0 25px 60px rgba(0, 212, 255, 0.18);
}

.program-badge{
display:inline-block;
background:linear-gradient(135deg,#ffb347,#ff6a00);
color:#000;
font-size:10px;
padding:4px 10px;
border-radius:20px;
margin-bottom:10px;
font-weight:600;
}

.hero-program-card h3{
margin-bottom:10px;
font-size:20px;
}

.program-meta{
display:flex;
gap:12px;
font-size:13px;
opacity:0.8;
margin-bottom:15px;
}

.cohort-date{
font-size:13px;
margin-bottom:15px;
opacity:0.9;
}

.program-highlights{
list-style:none;
padding:0;
margin-bottom:20px;
}

.program-highlights li{
font-size:13px;
margin-bottom:6px;
opacity:0.85;
}

.program-btn{
display:block;
text-align:center;
padding:10px;
background:linear-gradient(135deg,#ffb347,#ff6a00);
border-radius:6px;
color:#000;
font-weight:600;
text-decoration:none;
}
/* HERO BENEFITS STRIP */

.hero-benefits{
background:#0b0e14;
overflow:hidden;
padding:10px 0;
border-top:1px solid rgba(255,255,255,0.06);
}


.benefit{
display:flex;
flex-direction:column;
align-items:center;
min-width:90px;
font-size:12px;
opacity:0.85;
}

.benefit-icon{
width:48px;
height:48px;
border-radius:50%;
background:#121722;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:6px;
font-size:18px;
color:#ffb347;
}

/* SCROLL ANIMATION */

@keyframes scrollBenefits{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* TOOL STACK */

.tools-title{
font-size:12px;
opacity:0.6;
margin-bottom:10px;
margin-top:10px;
}

.tool-stack{
display:flex;
flex-wrap:wrap;
gap:8px;
margin-bottom:18px;
}

.tool{
background:#1a2232;
padding:5px 10px;
border-radius:20px;
font-size:11px;
opacity:0.85;
border:1px solid rgba(255,255,255,0.06);
transition:0.2s;
}

.tool:hover{
background:#222b3e;
}
/* TOOL STACK TITLE */

.tools-title{
font-size:12px;
opacity:0.6;
margin-top:15px;
margin-bottom:10px;
}

/* TOOL SCROLL WRAPPER */

.tools-scroll{
overflow:hidden;
width:100%;
margin-bottom: 10px;
}

/* TRACK */

.tools-track{
display:flex;
gap:20px;
animation:toolScroll 20s linear infinite;
width:max-content;
}

/* TOOL ITEM */

.tool-item{
display:flex;
flex-direction:column;
align-items:center;
min-width:60px;
font-size:9px;
opacity:0.85;
}

/* ICON */

.tool-item i{
font-size:15px;
color:#ffb347;
margin-bottom:4px;
}

/* SCROLL ANIMATION */

@keyframes toolScroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

.hero-benefits{
background:#0b0e14;
border-top:1px solid rgba(255,255,255,0.05);
}

.benefits-track{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:30px;
max-width:1100px;
margin:auto;
}

.benefit{
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
font-size:10px;
opacity:0.9;
}

.benefit-icon{
width:60px;
height:60px;
border-radius:50%;
background:#141a24;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:12px;
font-size:22px;
color:#ffb347;
transition:0.3s;
}

.benefit:hover .benefit-icon{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(255,179,71,0.25);
}


@media(max-width:768px){

.hero-benefits{
overflow:hidden;
}

.benefits-track{
display:flex;
gap:30px;
animation:benefitScroll 18s linear infinite;
width:max-content;
padding-left:20px;
}

.benefit{
min-width:120px;
}

}

@keyframes benefitScroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

.career-tracks{
padding:50px 8%;
}

.tracks-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1200px;
margin:auto;
margin-top:50px;
}

.track-card{
  min-height: 48%;
  min-width: 48%;
background:#121722;
padding:35px;
border-radius:12px;
transition:0.3s;
border:1px solid rgba(255,255,255,0.05);
}

.track-card:hover{
transform:translateY(-6px);
border-color:rgba(255,179,71,0.3);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.18);
}

.track-icon{
font-size:28px;
color:#ffb347;
margin-bottom:18px;
}

.track-card h3{
margin-bottom:10px;
}

.track-card p{
font-size:14px;
opacity:0.8;
margin-bottom:18px;
}

.track-tools{
display:flex;
flex-wrap:wrap;
gap:8px;
margin-bottom:20px;
}

.track-tools span{
background:#1a2232;
padding:5px 10px;
border-radius:20px;
font-size:11px;
}

.track-btn{
text-decoration:none;
font-size:13px;
color:#ffb347;
}

/* SCROLL WRAPPER */

.cohort-scroll{
display:flex;
gap:20px;
overflow-x:auto;
padding:15px 8% 20px 8%;
scroll-behavior:smooth;
}

/* HIDE SCROLLBAR */

.cohort-scroll::-webkit-scrollbar{
display:none;
}

/* CARD WIDTH → 2.3 VIEW */

.cohort-card-v3{
min-width:48%;
max-width:48%;
background:#121722;
border-radius:14px;
overflow:hidden;
border:1px solid rgba(255,255,255,0.05);
transition:0.3s;
position:relative;
}

/* HOVER GLOW (LIKE ROLE CARD) */

.cohort-card-v3:hover{
transform:translateY(-6px);
box-shadow:
0 0 0 1px rgba(255,179,71,0.2),
0 15px 40px rgba(255,106,0,0.2);
}

/* IMAGE */

.cohort-image{
position:relative;
}

.cohort-image img{
width:100%;
height:160px;
object-fit:cover;
}

/* LIVE BADGE */

.live-badge{
position:absolute;
top:10px;
left:10px;
background:#22c55e;
color:#000;
font-size:10px;
padding:4px 10px;
border-radius:20px;
font-weight:600;
}

/* BODY */

.cohort-body{
padding:18px;
background: linear-gradient(135deg, #1b2030, #121620);
}

.cohort-sub{
font-size:13px;
opacity:0.7;
margin-bottom:6px;
}

.cohort-date{
font-size:13px;
margin-bottom:14px;
opacity:0.9;
}

/* TAGS */

.cohort-tags{
display:flex;
flex-wrap:wrap;
gap:8px;
margin-bottom:16px;
}

.cohort-tags span{
background:#1a2232;
padding:5px 10px;
border-radius:20px;
font-size:11px;
border:1px solid rgba(255,255,255,0.05);
}

/* BUTTON */

.cohort-btn{
display:block;
text-align:center;
padding:12px 22px;
background: linear-gradient(135deg, #ffb347, #ff6a00);
color:#000;
border-radius:30px;
text-decoration:none;
font-weight:600;
}
@media(max-width:768px){

.cohort-card-v3{
min-width:85%;
max-width:85%;
}


}
.cohort-card-v3:hover{
border-color:transparent;
background:
linear-gradient(#121722,#121722) padding-box,
linear-gradient(135deg,#ffb347,#ff6a00) border-box;
border:1px solid transparent;
}

/* WRAPPER */

.cohort-section{
position:relative;
}

/* FADE RIGHT */

.cohort-section::after{
content:"";
position:absolute;
top:0;
right:0;
width:80px;
height:100%;
background:linear-gradient(to left,#0b0e14,transparent);
pointer-events:none;
z-index:2;
}

/* OPTIONAL LEFT FADE */

.cohort-section::before{
content:"";
position:absolute;
top:0;
left:0;
width:40px;
height:100%;
background:linear-gradient(to right,#0b0e14,transparent);
pointer-events:none;
z-index:2;
}
.cohort-scroll{
animation:scrollHint 1.2s ease forwards;
}

@keyframes scrollHint{
0%{ transform:translateX(0); }
60%{ transform:translateX(-20px); }
100%{ transform:translateX(0); }
}
.difference-section{
padding:100px 8%;
background:#0b0e14;
text-align:center;
}

.difference-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
max-width:1200px;
margin:50px auto 0;
}

/* CARD */

.diff-card{
background:#121722;
padding:30px;
border-radius:14px;
border:1px solid rgba(255,255,255,0.05);
transition:all 0.3s ease;
position:relative;
overflow:hidden;
}

/* ICON */

.diff-icon{
width:50px;
height:50px;
margin:0 auto 15px;
border-radius:50%;
background:#1a2232;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
color:#ffb347;
}

/* TEXT */

.diff-card h4{
margin-bottom:10px;
font-size:16px;
}

.diff-card p{
font-size:14px;
opacity:0.75;
}

/* HOVER EFFECT */

.diff-card:hover{
transform:translateY(-6px);
border-color:rgba(255,179,71,0.3);
box-shadow:0 20px 40px rgba(255,106,0,0.15);
}

/* PREMIUM HIGHLIGHT CARD */

.diff-card.highlight{
background:linear-gradient(135deg,#121722,#1a2232);
border:1px solid rgba(255,179,71,0.3);
}

.diff-card.highlight .diff-icon{
background:linear-gradient(135deg,#ffb347,#ff6a00);
color:#000;
}

/* SUBTLE GLOW ANIMATION */

.diff-card::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(120deg,transparent,rgba(255,179,71,0.08),transparent);
opacity:0;
transition:0.4s;
}

.diff-card:hover::before{
opacity:1;
}

.career-outcomes{
padding:100px 8%;
background:#0f131b;
text-align:center;
}

/* GRID */

.outcomes-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
max-width:1200px;
margin:50px auto;
}

/* CARD */

.outcome-card{
background:#121722;
padding:30px;
border-radius:14px;
border:1px solid rgba(255,255,255,0.05);
transition:0.3s;
position:relative;
overflow:hidden;
}

/* ICON */

.outcome-icon{
width:55px;
height:55px;
margin:0 auto 15px;
border-radius:50%;
background:#1a2232;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:#ffb347;
}

/* TITLE */

.outcome-card h3{
margin-bottom:8px;
}

/* SALARY */

.salary{
font-size:18px;
font-weight:600;
color:#ffb347;
margin-bottom:10px;
}

/* DESC */

.role-desc{
font-size:14px;
opacity:0.75;
margin-bottom:15px;
}

/* SKILLS */

.skills{
display:flex;
flex-wrap:wrap;
gap:6px;
justify-content:center;
}

.skills span{
font-size:11px;
padding:5px 10px;
background:#1a2232;
border-radius:20px;
}

/* HOVER */

.outcome-card:hover{
transform:translateY(-8px);
border-color:rgba(255,179,71,0.3);
box-shadow:0 20px 40px rgba(255,106,0,0.15);
}

/* HIGHLIGHT */

.outcome-card.highlight{
background:linear-gradient(135deg,#121722,#1a2232);
border:1px solid rgba(255,179,71,0.3);
}

/* CTA */

.outcome-cta{
margin-top:40px;
}

.outcome-cta h3{
margin-bottom:15px;
}

.learner-benefits{
padding:100px 8%;
background:#0b0e14;
text-align:center;
}

/* GRID */

.benefits-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
max-width:1200px;
margin:50px auto 0;
}

/* CARD */

.benefit-card{
background:#121722;
padding:30px;
border-radius:16px;
border:1px solid rgba(255,255,255,0.05);
transition:0.3s;
text-align:left;
}

/* ICON */

.benefit-icon{
width:60px;
height:60px;
border-radius:50%;
background:#1a2232;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:#ffb347;
margin-bottom:15px;
}

/* TITLE */

.benefit-card h3{
margin-bottom:12px;
}

/* TAGS */

.benefit-tags{
display:flex;
gap:8px;
flex-wrap:wrap;
margin-bottom:15px;
}

.benefit-tags span{
background:#1a2232;
padding:6px 12px;
border-radius:20px;
font-size:12px;
}

/* LIST */

.benefit-card ul{
padding-left:18px;
}

.benefit-card li{
margin-bottom:8px;
font-size:14px;
opacity:0.75;
}

/* HOVER */

.benefit-card:hover{
transform:translateY(-8px);
border-color:rgba(255,179,71,0.3);
box-shadow:0 20px 40px rgba(255,106,0,0.15);
}

/* HIGHLIGHT */

.benefit-card.highlight{
background: radial-gradient(
  circle at top right,
  rgba(255,179,71,0.08),
  transparent 40%
),
#121722;

border:1px solid rgba(255,179,71,0.3);
}

/* SECTION */

.premium-pillars{
padding:5px 8%;
background:#0b0e14;
text-align:center;
}

/* GRID */

.pillar-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
margin-top:60px;
}

/* CARD */

.pillar-card{
position:relative;
border-radius:20px;
overflow:visible;

background:#121722;
border:1px solid rgba(255,255,255,0.05);


transition:0.4s;
}

/* TOP NUMBER (CIRCLE CUT STYLE) */

.pillar-top{
position:absolute;
top:-30px;
left:50%;
transform:translateX(-50%);

width:60px;
height:60px;
border-radius:50%;

background:#0b0e14;
border:3px solid #ffb347;

display:flex;
align-items:center;
justify-content:center;


z-index:3;
}
.pillar-top i{
font-size:24px;
color:#ffb347;
}

/* BODY */

.pillar-body{
padding-top: 25px;
}


/* TITLE */

.pillar-body h3{
font-size:15px;
margin-bottom:8px;
}

/* TEXT */

.pillar-body p{
font-size:13px;
opacity:0.7;
text-align: left;
}

/* TITLE */




/* GRADIENT BACKGROUND PER CARD */

.pillar-card:nth-child(1){
box-shadow:0 15px 40px rgba(0,0,0,0.5);
}

.pillar-card:nth-child(2){
box-shadow:0 15px 40px rgba(0,0,0,0.5);
}

.pillar-card:nth-child(3){
box-shadow:0 15px 40px rgba(0,0,0,0.5);
}

.pillar-card:nth-child(4){
box-shadow:0 15px 40px rgba(0,0,0,0.5);
}

/* HOVER */

.pillar-card:hover{
transform:translateY(-10px);

box-shadow:
0 0 0 1px rgba(255,179,71,0.3),
0 25px 60px rgba(255,106,0,0.2);
}
.pillar-top{
box-shadow:0 0 20px rgba(255,179,71,0.3);
}
.pillar-card:hover i{
transform:scale(1.2);
transition:0.3s;

}

/* CONTAINER */

.benefit-points{
  margin-top:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* EACH ROW */

.benefit-point{
  display:flex;
  align-items:flex-start;   /* IMPORTANT */
  gap:10px;
}

/* ICON */

.benefit-point i{
  width:15px;
  height:15px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(255,179,71,0.12);
  border-radius:50%;

  color:#ffb347;
  font-size:10px;

  flex-shrink:0;
  margin-top:2px;  /* pixel perfect alignment */
}

/* TEXT */

.benefit-point span{
  font-size:13px;
  opacity:0.85;
  line-height:1.4;
  text-align: left;
}
.corporate-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 212, 255, 0.18);
}
/* CTA POINTS WRAPPER */
.cta-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 20px;
}

/* EACH POINT */
.cta-points span {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 13px;
  font-weight: 500;

  color: rgba(255, 255, 255, 0.9);

  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(6px);

  transition: 0.3s ease;
}

/* HOVER EFFECT */
.cta-points span:hover {
  border-color: rgba(255, 179, 71, 0.4);
  background: rgba(255, 179, 71, 0.08);

  transform: translateY(-2px);
}
/* URGENCY TEXT */
.cta-urgency {
  margin-top: 14px;

  font-size: 13px;
  font-weight: 500;

  color: #ffb347;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;

  letter-spacing: 0.3px;
}

/* OPTIONAL PULSE DOT */
.cta-urgency::before {
  content: "";
  width: 6px;
  height: 6px;

  background: #ff6a00;
  border-radius: 50%;

  animation: pulseDot 1.5s infinite;
}

/* ANIMATION */
@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 768px) {

  .cta-points {
    gap: 10px;
  }

  .cta-points span {
    font-size: 12px;
    padding: 6px 10px;
  }

  .cta-urgency {
    font-size: 12px;
  }

}

.career-services{
  padding:20px 8%;
  background:#0b0e14;
}

/* TITLE */

.section-intro{
  text-align:center;
  margin-bottom:50px;
}

.section-intro h2{
  font-size:28px;
  margin-bottom:10px;
}

.section-intro p{
  opacity:0.7;
  font-size:14px;
}

/* LAYOUT */

.career-layout{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:40px;
  align-items:start;
}

/* LEFT */

.career-left{
  background:#121722;
  border:1px solid rgba(255,255,255,0.06);
  border-radius:18px;
  padding:30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.career-desc{
  font-size:14px;
  opacity:0.85;
}

/* HIGHLIGHT */

.career-highlight{
  margin:20px 0;
  padding:14px;

  border-radius:10px;
  background:rgba(255,255,255,0.04);
  border-left:3px solid #ffb347;

  font-size:13px;
}

/* BUTTON */

.career-btn{
  margin-top: auto;
  align-self: center;
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:12px 20px;
  border-radius:30px;

  background:linear-gradient(135deg,#ffb347,#ff6a00);
  color:#000;
  font-weight:600;
  text-decoration:none;
}

/* RIGHT */

.career-right h3{
  margin-bottom:20px;
}

/* POINTS */

.career-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.career-point{
  display:flex;
  align-items:center;
  gap:10px;

  font-size:14px;
  opacity:0.9;
}

.career-point i{
  color:#ffb347;
}

/* HIRING */

.career-hiring{
  margin-top:30px;
}

.career-hiring h4{
  margin-bottom:12px;
}

/* IMAGE */

.career-hiring img{
  width:100%;
  max-width:500px;
  opacity:0.9;
}

/* MOBILE */

@media(max-width:768px){
  .career-layout{
    grid-template-columns:1fr;
  }

  .career-points{
    grid-template-columns:1fr;
  }
}
.career-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(255,106,0,0.3);
}

/* WRAPPER BELOW POINTS */

.edx-hiring-block{
  margin-top:15px;
}

/* TITLE */

.edx-hiring-block h4{
  font-size:16px;
  margin-bottom:12px;
}

/* GRID */

.edx-hiring-block .edx-logo-grid{
  background:#ffffff;
  border-radius:12px;

  padding:10px;

  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;

  align-items:center;
  justify-items:center;
}

/* ITEM */

.edx-hiring-block .edx-logo-item{
  width:100%;
  height:40px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:8px;

  transition:0.3s;
}

/* IMAGE */

.edx-hiring-block .edx-logo-item img{
  max-height:34px;
  max-width:100%;
  object-fit:contain;

  transition:0.3s;
}

/* HOVER */

.btn-whatsapp{
  display:flex;
  align-items:center;
  gap:6px;

  padding:8px 16px;
  border-radius:30px;

  font-size:13px;
  font-weight:500;

  text-decoration:none;

  background:rgba(37, 211, 102, 0.1);
  border:1px solid rgba(37, 211, 102, 0.3);

  color:#25D366;

  transition:0.3s ease;
}

/* ICON */

.btn-whatsapp i{
  font-size:16px;
}

/* HOVER */

.btn-whatsapp:hover{
  background:#25D366;
  color:#000;

  transform:translateY(-1px);
}
.btn-whatsapp{
  animation: pulseWA 5s infinite;
}

@keyframes pulseWA{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,0.4); }
  70%{ box-shadow:0 0 0 10px rgba(37,211,102,0); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}

/* ===== MODAL BACKDROP ===== */
.eduvoxy-modal{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;

  background:rgba(5,8,15,0.75);
  backdrop-filter:blur(10px);

  display:none;
  justify-content:center;
  align-items:center;

  z-index:9999;
}

/* ===== MODAL CARD ===== */
.eduvoxy-modal-box{
  width:360px;
  padding:28px;

  background:linear-gradient(145deg,#0f141d,#121826);
  border-radius:16px;

  border:1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(255,106,0,0.15);

  display:flex;
  flex-direction:column;
  gap:14px;

  animation:modalFade 0.3s ease;
}

/* ===== TITLE ===== */
.eduvoxy-modal-box h3{
  margin:0;
  font-size:18px;
}

/* ===== INPUTS ===== */
.eduvoxy-modal-box input,
.eduvoxy-modal-box select{
  padding:12px;
  border-radius:8px;

  border:1px solid rgba(255,255,255,0.08);
  background:#0b0e14;
  color:#fff;

  font-size:13px;
}

.eduvoxy-modal-box input:focus,
.eduvoxy-modal-box select:focus{
  outline:none;
  border-color:#ff6a00;

  box-shadow:0 0 0 2px rgba(255,106,0,0.2);
}

/* ===== BUTTON ===== */
.eduvoxy-submit{
  margin-top:10px;

  background:linear-gradient(135deg,#ffb347,#ff6a00);
  border:none;
  padding:12px;

  border-radius:8px;
  color:#000;
  font-weight:600;

  cursor:pointer;
  transition:0.3s;
}

.eduvoxy-submit:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(255,106,0,0.3);
}

/* ===== ANIMATION ===== */
@keyframes modalFade{
  from{opacity:0; transform:scale(0.9);}
  to{opacity:1; transform:scale(1);}
}
.eduvoxy-toast{
  position:fixed;
  bottom:30px;
  right:30px;

  background:#25D366;
  color:#fff;

  padding:14px 18px;
  border-radius:8px;

  border:1px solid rgba(255,255,255,0.08);

  box-shadow:0 10px 30px rgba(0,0,0,0.5);

  opacity:0;
  transform:translateY(20px);

  transition:0.4s;
  z-index:9999;
}

.eduvoxy-toast.show{
  opacity:1;
  transform:translateY(0);
}

/* BACKDROP */
.premium-modal{
  position:fixed;
  inset:0;
  display:none;
  justify-content:center;
  align-items:center;

  background:rgba(5,8,15,0.85);
  backdrop-filter:blur(14px);
  z-index:9999;
}

/* MAIN BOX */
.premium-box{
  width:720px;
  display:flex;

  border-radius:18px;
  overflow:hidden;

  background:#0f141d;
  border:1px solid rgba(255,255,255,0.06);

  box-shadow:0 30px 80px rgba(0,0,0,0.7);
}

/* LEFT SIDE */
.premium-left{
  flex:1;
  padding:30px;

  background:linear-gradient(135deg,#ffb347,#ff6a0052);
  color:#000;
}

.premium-left h2{
  font-size:22px;
  margin-bottom:10px;
}

.premium-sub{
  font-size:13px;
  margin-bottom:20px;
}

.premium-points span{
  display:flex;
  gap:8px;
  margin-bottom:8px;
  font-size:13px;
}

.premium-badge{
  margin-top:20px;
  font-size:12px;
  font-weight:600;
}

/* RIGHT SIDE */
.premium-right{
  flex:1;
  padding:30px;
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top: 5%;
}

/* INPUTS */
.premium-right input,
.premium-right select{
  padding:12px;
  border-radius:8px;

  border:1px solid rgba(255,255,255,0.08);
  background:#0b0e14;
  color:#fff;

  font-size:13px;
}

.premium-right input:focus,
.premium-right select:focus{
  outline:none;
  border-color:#ff6a00;
}

/* BUTTON */
.premium-btn{
  margin-top:10px;
  padding:12px;

  border:none;
  border-radius:8px;

  background:linear-gradient(135deg,#ffb347,#ff6a00);
  color:#000;
  font-weight:600;

  cursor:pointer;
  transition:0.3s;
}

.premium-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(255,106,0,0.3);
}
@media(max-width:768px){

  .premium-box{
    flex-direction:column;
    width:90%;
  }

  .premium-left{
    padding:20px;
  }

  .premium-right{
    padding:20px;
  }

}
.input-group{
  position:relative;
}

.input-group i{
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);

  font-size:14px;
  color:#ffb347;
}

.input-group input,
.input-group select{
  width:100%;
  padding:12px 12px 12px 36px; /* space for icon */
}
.premium-points .point{
  display:flex;
  align-items:center;
  gap:10px;

  font-size:13px;
  margin-bottom:10px;
}

.premium-points i{
  font-size:14px;
  color:#000;

  background:rgba(0,0,0,0.15);
  padding:6px;
  border-radius:6px;
}
.premium-left h2 i{
  margin-right:8px;
}

.premium-right h3 i{
  margin-right:6px;
  color:#ffb347;
}
.premium-btn i{
  margin-right:6px;
  transition:0.3s;
}

.premium-btn:hover i{
  transform:translateX(4px);
}


/* BOTTOM */

.footer-pro-bottom {
  margin-top: 30px;
  padding: 10px 60px 10px 40px;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.6;
}

.footer-pro-bottom a {
  margin-left: 16px;
  color: #aaa;
  text-decoration: none;
}

/* ================= MOBILE ================= */

@media (max-width: 1024px) {

  .footer-pro-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-pro-links {
    justify-content: space-between;
  }

}

@media (max-width: 768px) {

  .footer-pro {
    padding: 60px 20px;
  }

  .footer-pro-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

}

@media(max-width:768px){

.track-card{
min-width:85%;
max-width:85%;
}


}