/* Import Modern Font Family */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Theme Colors */
  --ed-bg-main: #03071E;
  --ed-bg-card: rgba(255, 255, 255, 0.05);
  --ed-bg-card-hover: rgba(255, 255, 255, 0.08);
  --ed-border-glass: rgba(255, 255, 255, 0.12);
  --ed-border-glow: rgba(0, 198, 255, 0.3);

  /* Typography Colors */
  --ed-text-primary: #F8F9FA;
  --ed-text-secondary: #A0AEC0;
  --ed-text-muted: #64748B;

  /* Gradients & Accents */
  --ed-gradient-primary: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%);
  --ed-gradient-glow: linear-gradient(135deg, rgba(0, 198, 255, 0.15) 0%, rgba(112, 0, 255, 0.15) 100%);
  --ed-accent-purple: #7000FF;
  --ed-accent-cyan: #00C6FF;

  /* Layout Constraints */
  --ed-max-width: 1200px;
  --ed-font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Base Reset & Background Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  position: relative;
  background-color: var(--ed-bg-main);
  color: var(--ed-text-primary);
  font-family: var(--ed-font-main);
  line-height: 1.6;
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* Background Ambient Glow Effects */
body::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.12) 0%, rgba(112, 0, 255, 0.05) 50%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* GLOBAL 1200px CONTAINER */
.ed-container {
  width: 100%;
  max-width: var(--ed-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Reusable Glass Card Utility */
.ed-glass-card {
  background: var(--ed-bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--ed-border-glass);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: all 0.3s ease;
}

.ed-glass-card:hover {
  background: var(--ed-bg-card-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Reusable Gradient Button */
.ed-btn-primary {
  background: var(--ed-gradient-primary);
  color: #FFFFFF;
  font-family: var(--ed-font-main);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 114, 255, 0.3);
}

.ed-btn-primary:hover {
  transform: translateY(-2px);
}

/* Gradient Text Effect Utility */
.ed-gradient-text {
  background: var(--ed-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* HEADER / NAVIGATION BAR */
.ed-nav-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(3, 7, 30, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ed-border-glass);
}

.ed-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.ed-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ed-text-primary);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.ed-nav-logo-icon {
  width: 26px;
  height: 26px;
}

.ed-nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.ed-nav-link {
  color: var(--ed-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ed-nav-link:hover {
  color: var(--ed-text-primary);
}

.ed-dropdown-arrow {
  font-size: 1.1rem;
  transform: rotate(90deg);
  display: inline-block;
  opacity: 0.7;
}

/* Hamburger Toggle Base */
.ed-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  z-index: 1001;
}

.ed-nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--ed-text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* HERO SECTION */
.ed-hero-section {
  padding: 80px 0 60px 0;
  text-align: center;
  position: relative;
  width: 100%;
}

.ed-hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ed-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  max-width: 850px;
  margin-bottom: 24px;
  color: var(--ed-text-primary);
}

.ed-hero-description {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--ed-text-secondary);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 36px;
  font-weight: 400;
}

/* Dual Action Buttons */
.ed-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.ed-hero-btn-fill {
  padding: 14px 32px;
  font-size: 0.95rem;
  border-radius: 10px;
}

.ed-btn-arrow {
  transition: transform 0.2s ease;
}

.ed-hero-btn-fill:hover .ed-btn-arrow {
  transform: translateX(4px);
}

.ed-btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--ed-text-primary);
  border: 1px solid var(--ed-border-glass);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.ed-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* HORIZONTAL PILL TAGS INFINITE SLIDER */
.ed-hero-tags-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ed-hero-tags-track {
  display: flex;
  gap: 14px;
  width: max-content;
  white-space: nowrap;
  animation: edMarquee 22s linear infinite;
}

.ed-hero-tags-track:hover {
  animation-play-state: paused;
}

.ed-hero-tags-track span {
  display: inline-block;
  background: var(--ed-bg-card);
  border: 1px solid var(--ed-border-glass);
  backdrop-filter: blur(12px);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ed-text-secondary);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ed-hero-tags-track span.ed-tag-active,
.ed-hero-tags-track span:hover {
  background: rgba(0, 198, 255, 0.1);
  border-color: var(--ed-accent-cyan);
  color: var(--ed-text-primary);
  box-shadow: 0 0 15px rgba(0, 198, 255, 0.2);
}

@keyframes edMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* STATS & HIGHLIGHTS SECTION */
.ls-stats-section {
  padding: 60px 0;
  position: relative;
  width: 100%;
}

.ls-stats-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
}

.ls-stats-eyebrow {
  color: #a755f7;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.ls-stats-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ed-text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.ls-stats-description {
  color: var(--ed-text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 620px;
}

.ls-stats-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.ls-card-enrol {
  padding: 24px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ls-card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ed-text-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.ls-card-label svg {
  width: 14px;
  height: 14px;
}

.ls-enrol-date {
  line-height: 1;
}

.ls-date-num {
  font-size: 3rem;
  font-weight: 800;
  color: #ffca28;
}

.ls-date-month {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffca28;
  margin-left: 6px;
}

.ls-card-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ls-card-stat {
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ls-stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--ed-text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.ls-stat-plus {
  color: var(--ed-accent-cyan);
}

.ls-stat-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ed-text-secondary);
  letter-spacing: 1px;
}

.ls-stat-meta svg {
  width: 14px;
  height: 14px;
}

/* THE PROGRAM AT A GLANCE SECTION */
.ed-glance-section {
  padding: 80px 0;
  position: relative;
  width: 100%;
}

.ed-glance-header {
  text-align: center;
  margin-bottom: 50px;
}

.ed-glance-main-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--ed-text-primary);
  letter-spacing: -0.5px;
}

.ed-glance-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.ed-glance-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ed-glance-tab-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--ed-border-glass);
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ed-glance-tab-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.ed-glance-tab-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ed-text-secondary);
  transition: color 0.3s ease;
}

.ed-glance-tab-desc {
  font-size: 0.85rem;
  color: var(--ed-text-muted);
  margin-top: 8px;
  line-height: 1.5;
  display: none;
}

.ed-glance-tab-item.active {
  background: rgba(112, 0, 255, 0.08);
  border-color: var(--ed-accent-purple);
  box-shadow: 0 4px 20px rgba(112, 0, 255, 0.15);
}

.ed-glance-tab-item.active .ed-glance-tab-title {
  color: var(--ed-text-primary);
}

.ed-glance-tab-item.active .ed-glance-tab-desc {
  display: block;
}

.ed-glance-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--ed-gradient-primary);
  transition: width 0.3s ease;
}

.ed-glance-tab-item.active .ed-glance-progress-bar {
  width: 100%;
}

.ed-glance-display-wrapper {
  width: 100%;
}

.ed-glance-display-card {
  width: 100%;
  height: 440px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ed-bg-card);
  border-radius: 20px;
  border: 1px solid var(--ed-border-glass);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.ed-glance-img-content {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  animation: edFadeIn 0.3s ease-in-out forwards;
}

.ed-glance-img-content.active {
  display: flex;
}

.ed-glance-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

@keyframes edFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
  /* Mobile Hamburger Button Display */
  .ed-nav-toggle {
    display: flex;
  }

  /* Hamburger to Cross X Animation */
  .ed-nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .ed-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .ed-nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile Slide Down Navigation Drawer */
  .ed-nav-menu {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(3, 7, 30, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--ed-border-glass);
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
  }

  .ed-nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .ed-nav-link {
    font-size: 1.05rem;
    width: 100%;
    padding: 6px 0;
  }

  .ed-hero-section {
    padding: 60px 0 40px 0;
  }

  .ls-stats-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ls-stats-cards {
    max-width: 500px;
    margin: 0 auto;
  }

  .ed-glance-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ed-glance-display-card {
    height: 320px;
  }
}

@media (max-width: 576px) {
  .ed-container {
    padding: 0 16px;
  }

  .ed-nav-container {
    height: 64px;
  }

  .ed-nav-menu {
    top: 64px;
  }

  .ed-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .ed-hero-btn-fill,
  .ed-btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .ed-hero-tags-track {
    animation-duration: 16s;
    gap: 10px;
  }

  .ed-hero-tags-track span {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .ls-stats-section {
    padding: 40px 0;
  }

  .ls-card-enrol {
    padding: 20px 16px;
  }

  .ls-date-num {
    font-size: 2.4rem;
  }

  .ls-date-month {
    font-size: 1.4rem;
  }

  .ls-stat-number {
    font-size: 2.1rem;
  }

  .ls-card-subgrid {
    gap: 12px;
  }

  .ed-glance-section {
    padding: 50px 0;
  }

  .ed-glance-display-card {
    height: 240px;
    padding: 8px;
  }
}

/*===================================================*/
/* CURRICULUM SECTION (RESTORED EDONCE THEME) */
/*===================================================*/
.ed-curriculum-section {
  padding: 90px 0;
  position: relative;
  width: 100%;
}

.ed-curr-main-title {
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--ed-text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 50px;
}

/* Two Column Layout */
.ed-curr-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.ed-curr-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Card Using Original Glass Theme */
.ed-curr-item {
  background: var(--ed-bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--ed-border-glass);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ed-curr-item:hover {
  background: var(--ed-bg-card-hover);
  border-color: rgba(0, 198, 255, 0.3);
}

.ed-curr-item.active {
  background: rgba(112, 0, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 198, 255, 0.1);
}

/* Trigger Button */
.ed-curr-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  outline: none;
  gap: 16px;
}

.ed-curr-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Cyan Glowing Badge Icon */
.ed-curr-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 198, 255, 0.1);
  border: 1px solid rgba(0, 198, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ed-curr-badge-icon svg {
  width: 18px;
  height: 18px;
  color: var(--ed-accent-cyan);
}

.ed-curr-item.active .ed-curr-badge-icon {
  background: var(--ed-gradient-primary);
  border-color: transparent;
}

.ed-curr-item.active .ed-curr-badge-icon svg {
  color: #FFFFFF;
}

.ed-curr-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ed-text-primary);
  letter-spacing: -0.2px;
}

/* Chevron Arrow */
.ed-curr-chevron {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ed-text-secondary);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ed-curr-chevron svg {
  width: 20px;
  height: 20px;
}

.ed-curr-item.active .ed-curr-chevron {
  transform: rotate(180deg);
  color: var(--ed-accent-cyan);
}

/* Collapsible Height Grid */
.ed-curr-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ed-curr-item.active .ed-curr-content {
  grid-template-rows: 1fr;
}

.ed-curr-body {
  overflow: hidden;
  padding: 0 26px;
  transition: padding 0.4s ease;
}

.ed-curr-item.active .ed-curr-body {
  padding: 0 26px 26px 80px;
}

/* Checklist Points */
.ed-curr-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.ed-curr-checklist li {
  color: var(--ed-text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ed-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 198, 255, 0.1);
  border: 1px solid rgba(0, 198, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ed-check-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--ed-accent-cyan);
}

/* Pill Tags */
.ed-curr-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ed-curr-tag {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ed-border-glass);
  color: var(--ed-text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.ed-curr-tag:hover {
  background: rgba(0, 198, 255, 0.08);
  border-color: var(--ed-accent-cyan);
  color: var(--ed-text-primary);
}

/* RIGHT SIDEBAR CTA CARD */
.ed-curr-sidebar {
  position: sticky;
  top: 90px;
}

.ed-curr-cta-card {
  padding: 32px 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ed-curr-map-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(112, 0, 255, 0.15);
  border: 1px solid rgba(112, 0, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ed-curr-map-badge svg {
  width: 26px;
  height: 26px;
  stroke: var(--ed-accent-cyan);
}

.ed-curr-cta-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ed-text-primary);
  line-height: 1.3;
  margin-bottom: 12px;
}

.ed-curr-cta-desc {
  font-size: 0.88rem;
  color: var(--ed-text-secondary);
  line-height: 1.55;
  margin-bottom: 28px;
}

.ed-curr-download-btn {
  width: 100%;
}

.ed-download-icon {
  width: 16px;
  height: 16px;
  margin-left: 4px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .ed-curr-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ed-curr-sidebar {
    position: static;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .ed-curr-item.active .ed-curr-body {
    padding: 0 20px 22px 20px;
  }
}

@media (max-width: 576px) {
  .ed-curriculum-section {
    padding: 60px 0;
  }

  .ed-curr-trigger {
    padding: 16px 18px;
  }

  .ed-curr-header-left {
    gap: 12px;
  }

  .ed-curr-badge-icon {
    width: 32px;
    height: 32px;
  }

  .ed-curr-title {
    font-size: 1rem;
  }

  .ed-curr-body {
    padding: 0 18px;
  }

  .ed-curr-item.active .ed-curr-body {
    padding: 0 18px 20px 18px;
  }

  .ed-curr-checklist li {
    font-size: 0.88rem;
  }

  .ed-curr-cta-card {
    padding: 24px 18px;
  }
}

/*===================================================*/
/* AI TOOLS SECTION STYLES */
/*===================================================*/
.ed-tools-section {
  padding: 80px 0;
  position: relative;
  width: 100%;
}

/* Big Glass Box Container */
.ed-tools-card {
  background: var(--ed-bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--ed-border-glass);
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Subtle Gradient Backdrop Glow */
.ed-tools-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(112, 0, 255, 0.15) 0%, rgba(0, 198, 255, 0.05) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ed-tools-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--ed-text-primary);
  line-height: 1.2;
  letter-spacing: -0.5px;
  max-width: 820px;
  margin: 0 auto 20px auto;
  position: relative;
  z-index: 1;
}

.ed-tools-desc {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  color: var(--ed-text-secondary);
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto 48px auto;
  position: relative;
  z-index: 1;
}

/* Grid Layout for Tool Cards */
.ed-tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* White Pill Cards matching Image Structure with Edonce Glow */
.ed-tool-item {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 52px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  cursor: default;
}

.ed-tool-name {
  color: #0F172A;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.2px;
}

/* Hover Effect with Edonce Theme Glow */
.ed-tool-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 198, 255, 0.4);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .ed-tools-card {
    padding: 48px 28px;
  }
}

@media (max-width: 576px) {
  .ed-tools-section {
    padding: 50px 0;
  }

  .ed-tools-card {
    padding: 36px 18px;
    border-radius: 20px;
  }

  .ed-tools-desc {
    margin-bottom: 32px;
  }

  .ed-tools-grid {
    gap: 10px;
  }

  .ed-tool-item {
    min-width: calc(50% - 10px);
    height: 46px;
    padding: 10px 16px;
  }

  .ed-tool-name {
    font-size: 0.88rem;
  }
}

/*===================================================*/
/* INSTRUCTORS SECTION (EDONCE THEME MATCH) */
/*===================================================*/
.ed-instructors-section {
  padding: 90px 0;
  position: relative;
  width: 100%;
}

.ed-instructors-header {
  margin-bottom: 50px;
  max-width: 820px;
}

.ed-instructors-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--ed-text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ed-instructors-desc {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--ed-text-secondary);
  line-height: 1.65;
  font-weight: 400;
}

/* Outer Container for relative positioning of arrows */
.ed-instructors-container {
  position: relative;
  width: 100%;
}

.ed-instructors-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ed-instructors-wrapper::-webkit-scrollbar {
  display: none;
}

.ed-instructors-grid {
  display: flex !important;
  gap: 20px;
  width: max-content;
  padding: 10px 0;
  transition: transform 0.4s ease;
}

.ed-instructor-card {
  width: 270px;
  flex-shrink: 0;
  padding: 16px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ed-border-glass);
  background: var(--ed-bg-card);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ed-instructor-card:hover {
  background: var(--ed-bg-card-hover);
  border-color: rgba(0, 198, 255, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 198, 255, 0.15);
}

.ed-instructor-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ed-border-glass);
}

.ed-instructor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ed-instructor-card:hover .ed-instructor-img {
  transform: scale(1.05);
}

.ed-instructor-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ed-instructor-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ed-text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.ed-instructor-role {
  font-size: 0.82rem;
  color: var(--ed-text-secondary);
  margin-bottom: 16px;
  font-weight: 500;
}

.ed-company-primary {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  width: 100%;
}

.ed-company-logo {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.3px;
}

.google-logo { color: #4285F4; }
.paypal-logo { color: #003087; font-style: italic; }
.mint-logo { color: #E5A93B; font-family: serif; }
.oracle-logo { color: #F80000; letter-spacing: 1px; }

.ed-company-previous {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  width: 100%;
}

.ed-prev-label {
  font-size: 0.72rem;
  color: var(--ed-text-muted);
  font-weight: 500;
}

.ed-prev-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ed-border-glass);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
}

.ed-badge-text {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ed-text-secondary);
}

/* Fixed Side Navigation Buttons */
.ed-instructor-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ed-bg-card);
  border: 1px solid var(--ed-border-glass);
  color: var(--ed-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  backdrop-filter: blur(12px);
  transition: all 0.25s ease;
}

.ed-instructor-nav svg {
  width: 20px;
  height: 20px;
}

.ed-instructor-nav:hover {
  background: rgba(0, 198, 255, 0.15);
  border-color: var(--ed-accent-cyan);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 198, 255, 0.3);
}

.ed-instructor-nav.prev { left: -22px; }
.ed-instructor-nav.next { right: -22px; }

/*===================================================*/
/* RESPONSIVE BREAKPOINTS */
/*===================================================*/
@media (max-width: 1250px) {
  .ed-instructor-nav.prev { left: 10px; }
  .ed-instructor-nav.next { right: 10px; }
}

@media (max-width: 992px) {
  .ed-instructor-nav {
    display: none;
  }

  .ed-instructors-wrapper {
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .ed-instructor-card {
    width: 280px;
    scroll-snap-align: start;
  }
}

@media (max-width: 576px) {
  .ed-instructors-section {
    padding: 60px 0;
  }

  .ed-instructors-header {
    margin-bottom: 32px;
  }

  .ed-instructor-card {
    width: 260px;
  }
}

/* ========================================== */
/* VALUABLE ADD-ONS SECTION STYLES            */
/* ========================================== */

.ed-addons-section {
  padding: 80px 20px;
  color: #FFFFFF;
}

.ed-addons-header {
  text-align: center;
  margin-bottom: 48px;
}

.ed-addons-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.5px;
}

/* Grid Layout */
.ed-addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

/* Glass Card Style Matching Theme */
.ed-addon-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.ed-addon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.4); /* Purple glow on hover */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(168, 85, 247, 0.15);
}

/* 5th Card Center Alignment */
.ed-addon-card-center {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: 468px; /* Same width as grid column */
}

/* Card Banner Image */
.ed-addon-banner {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #12131A;
}

.ed-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card Content Details */
.ed-addon-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ed-addon-tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: #C084FC; /* Subtle Purple Sparkle Tag */
  margin-bottom: 2px;
}

.ed-addon-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
}

.ed-addon-desc {
  font-size: 0.875rem;
  color: #9CA3AF; /* Muted text color */
  line-height: 1.5;
  margin: 0;
}

/* Responsive View */
@media (max-width: 768px) {
  .ed-addons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ed-addon-card-center {
    grid-column: auto;
    max-width: 100%;
  }

  .ed-addons-title {
    font-size: 1.75rem;
  }
}

/* ========================================== */
/* TRUSTED BY LEADING COMPANIES SECTION      */
/* ========================================== */

.ed-partners-section {
  padding: 80px 20px;
  background: transparent; /* Clean design, uses your global theme background */
  color: #FFFFFF;
  text-align: center;
}

/* Header Styles */
.ed-partners-header {
  margin-bottom: 40px;
}

.ed-partners-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.ed-partners-desc {
  font-size: 1rem;
  color: #9CA3AF; /* Subtle light gray text */
  line-height: 1.6;
  margin: 0 auto;
  max-width: 650px;
}

/* Partners Image Container */
.ed-partners-grid-wrapper {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ed-partners-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .ed-partners-section {
    padding: 50px 16px;
  }

  .ed-partners-title {
    font-size: 1.75rem;
  }

  .ed-partners-desc {
    font-size: 0.875rem;
  }

  .ed-desktop-br {
    display: none;
  }
}

/* ========================================== */
/* BEFORE & AFTER IMPACT SECTION STYLES      */
/* ========================================== */

.ed-impact-section {
  padding: 80px 20px;
  background: transparent; /* Uses global theme background */
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Header Typography */
.ed-impact-header {
  margin-bottom: 40px;
}

.ed-impact-subtitle {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.ed-impact-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

/* Chart Container & Image */
.ed-impact-chart-wrapper {
  max-width: 800px; /* Perfect width matching reference UI */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ed-impact-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  /* Optional subtle drop glow to integrate image smoothly */
  filter: drop-shadow(0px 0px 25px rgba(124, 58, 237, 0.08)); 
}

/* Bottom Glow Line Accent (as seen in image 1) */
.ed-impact-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  margin-top: 32px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .ed-impact-section {
    padding: 50px 16px;
  }

  .ed-impact-subtitle {
    font-size: 1rem;
  }

  .ed-impact-title {
    font-size: 1.65rem;
  }

  .ed-impact-header {
    margin-bottom: 24px;
  }

  .ed-impact-divider {
    height: 32px;
    margin-top: 20px;
  }
}

/* ========================================== */
/* REAL WORLD PROJECTS SECTION STYLES         */
/* ========================================== */

.ed-projects-section {
  padding: 0px 20px;
  background: transparent; /* Seamless background with global dark theme */
  color: #FFFFFF;
  text-align: center;
}

/* Header Area */
.ed-projects-header {
  margin-bottom: 48px;
}

.ed-projects-badge {
  font-size: 0.85rem;
  font-weight: 700;
  color: #A855F7; /* Purple accent matching theme */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.ed-projects-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

/* Projects Grid Layout */
.ed-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto 40px auto;
}

/* Project Card Style */
.ed-project-card {
  background: #FFFFFF; /* Clean white card as shown in image */
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Grid pattern overlay effect */
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.ed-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.2);
}

/* Logo Wrappers & Text */
.ed-project-logo-wrapper {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.ed-project-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1F2937; /* Dark Gray text inside white card */
  line-height: 1.4;
  margin: 0;
  max-width: 240px;
}

/* Sample Styled Logos (If using images, replace div with <img>) */
.ed-project-logo {
  font-weight: 800;
  font-size: 1.8rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.snabbit-bg {
  background-color: #FF0066;
  color: #FFFFFF;
  padding: 8px 20px;
  font-family: sans-serif;
  border-radius: 6px;
}

.rapido-bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000000;
}
.rapido-text {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.rapido-sub {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.kuku-bg {
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 1.6rem;
}
.kuku-bg .dot {
  color: #FF0000;
}

/* Download CTA Button */
.ed-projects-cta {
  display: flex;
  justify-content: center;
}

.ed-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.ed-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.ed-download-icon {
  width: 15px;
  height: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .ed-projects-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .ed-desktop-br {
    display: none;
  }

  .ed-projects-title {
    font-size: 1.75rem;
  }
}

/* ========================================== */
/* MENTORS SLIDER SECTION STYLES              */
/* ========================================== */

.ed-mentors-section {
  padding: 80px 20px;
  background: transparent;
  color: #FFFFFF;
}

/* Header Styles */
.ed-mentors-header {
  margin: 0 auto 48px auto; 
  text-align: center;       
  max-width: 800px;
}

.ed-mentors-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.ed-mentors-desc {
  font-size: 0.95rem;
  color: #9CA3AF;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

/* Container for Positioning Navigation Arrows Relative to Cards */
.ed-mentors-container {
  position: relative;
  width: 100%;
}

/* Carousel Inner Wrapper */
.ed-mentors-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  padding: 40px 0 20px 0; /* Space for top overlapping avatar circle */
}

.ed-mentors-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Flex Grid Track */
.ed-mentors-grid {
  display: flex;
  gap: 20px;
}

/* Mentor Card Design */
.ed-mentor-card {
  flex: 0 0 240px; /* Fixed card width */
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 0 20px 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  margin-top: 40px; /* Space for floating image */
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.ed-mentor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.4);
}

/* Avatar Circle Styling */
.ed-mentor-avatar-wrapper {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #7C3AED, #A855F7); /* Purple glowing border */
  margin-top: -55px; /* Floats top half outside card */
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.ed-mentor-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* Details & Company Logo */
.ed-mentor-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.ed-mentor-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 6px 0;
}

.ed-mentor-role {
  font-size: 0.85rem;
  color: #9CA3AF;
  margin-bottom: 16px;
}

.ed-mentor-company {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ed-company-text {
  font-weight: 700;
  font-size: 1.1rem;
}

.amazon { color: #FF9900; }
.moengage { color: #FFFFFF; font-size: 0.95rem; letter-spacing: -0.5px; }
.msft { color: #737373; font-size: 0.95rem; }
.walmart { color: #0071CE; }
.google { color: #4285F4; }

/* Navigation Buttons Style */
.ed-mentor-nav {
  position: absolute;
  top: calc(50% + 20px);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.ed-mentor-nav svg {
  width: 20px;
  height: 20px;
}

.ed-mentor-nav:hover {
  background: rgba(168, 85, 247, 0.3);
  border-color: rgba(168, 85, 247, 0.6);
}

.ed-mentor-nav.prev {
  left: -20px;
}

.ed-mentor-nav.next {
  right: -20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .ed-mentors-section {
    padding: 50px 16px;
  }
  
  .ed-mentor-nav.prev { left: 0px; }
  .ed-mentor-nav.next { right: 0px; }

  .ed-mentors-title {
    font-size: 1.75rem;
  }
}

/* ========================================== */
/* SHOWCASE WORK SECTION STYLES              */
/* ========================================== */

.ed-showcase-section {
  padding: 30px 20px 40px 20px;
  background: transparent;
  color: #FFFFFF;
  text-align: center;
  position: relative;
}

/* Header */
.ed-showcase-header {
  margin-bottom: 48px;
}

.ed-showcase-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.5px;
}

/* Grid Layout */
.ed-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

/* Dark Showcase Card */
.ed-showcase-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  min-height: 180px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.ed-showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.3);
}

/* Profile Info (Top Part) */
.ed-showcase-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ed-profile-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.ed-profile-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

/* Portfolio Details (Bottom Part) */
.ed-showcase-bottom {
  margin-top: 24px;
  width: 100%;
}

.ed-portfolio-label {
  display: block;
  font-size: 0.75rem;
  color: #9CA3AF;
  margin-bottom: 12px;
}

.ed-logos-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Text Logo Styles (Replace with <img> tags if using actual logo PNGs) */
.ed-logo-text {
  font-weight: 700;
  font-size: 0.95rem;
  color: #E2E8F0;
}

.ed-logo-text small {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  color: #6B7280;
}

.logik { color: #38BDF8; }
.uc { display: flex; align-items: center; gap: 6px; }
.rapido { color: #EAB308; }
.supermoney { color: #FFFFFF; }
.swish { color: #22C55E; }

/* Bottom Glow Line Accent */
.ed-showcase-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  margin: 40px auto 0 auto;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .ed-showcase-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .ed-showcase-title {
    font-size: 1.75rem;
  }
}

/* ========================================== */
/* WEEKLY INTERVIEW PREPARATION STYLES       */
/* ========================================== */

.ed-interview-section {
  padding: 20px 20px;
  background: transparent;
  color: #FFFFFF;
  text-align: center;
}

/* Header Styles */
.ed-interview-header {
  margin-bottom: 48px;
}

.ed-interview-badge {
  font-size: 0.85rem;
  font-weight: 700;
  color: #A855F7; /* Theme Accent Purple */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.ed-interview-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.5px;
}

/* Grid Layout */
.ed-interview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

/* Interview Card Design */
.ed-interview-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(8px);
}

.ed-interview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

/* Card Header (Icon + Title Side-by-side) */
.ed-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ed-card-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ed-card-icon svg {
  width: 22px;
  height: 22px;
}

/* Icon Colors */
.icon-purple { color: #A855F7; }
.icon-green  { color: #34D399; }
.icon-amber  { color: #F59E0B; }
.icon-blue   { color: #38BDF8; }
.icon-orange { color: #FB923C; }
.icon-violet { color: #818CF8; }

.ed-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

.ed-card-desc {
  font-size: 0.9rem;
  color: #9CA3AF;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .ed-interview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ed-interview-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .ed-interview-title {
    font-size: 1.75rem;
  }

  .ed-interview-section {
    padding: 50px 16px;
  }
}

/* ========================================== */
/* CAREER ASSISTANCE SECTION (LIGHT & DARK BLUE)
/* ========================================== */

.ed-career-section {
  padding: 80px 20px;
  background-color: #FFFFFF; /* Pure White Background */
  color: #0F172A;            /* Dark Slate text */
  text-align: center;
}

/* Header */
.ed-career-header {
  margin-bottom: 32px;
}

.ed-career-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin: 0;
}

/* Stats Card (Floating White Box with Shadow) */
.ed-stats-card {
  max-width: 520px;
  margin: 0 auto 56px auto;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.ed-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.ed-stat-icon.icon-blue-bg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #EEF2FF;
  color: #1E3A8A; /* Dark Blue Icon Color */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.ed-stat-info {
  display: flex;
  flex-direction: column;
}

.ed-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.1;
}

.ed-stat-label {
  font-size: 0.8rem;
  color: #64748B;
  margin-top: 2px;
}

.ed-stat-divider {
  width: 1px;
  height: 40px;
  background-color: #E2E8F0;
}

/* 4 Features Grid */
.ed-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 64px auto;
  text-align: left;
}

.ed-feature-item {
  display: flex;
  flex-direction: column;
}

.ed-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ed-feature-icon svg {
  width: 24px;
  height: 24px;
}

.icon-green { background: #DCFCE7; color: #16A34A; }
.icon-purple { background: #F3E8FF; color: #9333EA; }
.icon-sky { background: #E0F2FE; color: #0284C7; }
.icon-red { background: #FEE2E2; color: #DC2626; }

.ed-feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 8px 0;
}

.ed-feature-desc {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

/* CTA Banner (Dark Blue Background) */
.ed-cta-banner {
  max-width: 1100px;
  margin: 0 auto 72px auto;
  background: #0F172A; /* Replaced Purple with Dark Slate Blue */
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.3);
}

.ed-cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ed-rocket-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.ed-cta-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 4px 0;
}

.ed-cta-sub {
  font-size: 0.85rem;
  color: #94A3B8;
  margin: 0;
}

.ed-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ed-btn-primary-white {
  background: #FFFFFF;
  color: #0F172A;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s;
}

.ed-btn-primary-white:hover {
  background: #F1F5F9;
}

.ed-btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: border-color 0.2s;
}

.ed-btn-outline-white:hover {
  border-color: #FFFFFF;
}

/* ========================================== */
/* FIXED INFINITE CONTINUOUS LOGO MARQUEE    */
/* ========================================== */

.ed-companies-wrapper {
  margin-top: 60px;
  width: 100%;
  overflow: hidden;
}

.ed-companies-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 32px;
  line-height: 1.3;
  text-align: center;
}

/* Outer Container */
.ed-ticker-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  /* Left and Right Side Fade Effect */
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

/* Moving Track */
.ed-ticker-track {
  display: flex;
  flex-shrink: 0;
  width: max-content;
  /* Continuous loop animation */
  animation: edInfiniteScroll 20s linear infinite !important;
  will-change: transform;
}

/* Image Styling */
.ed-ticker-img {
  height: 45px; /* Visual height requirement ke mutabiq adjust kar sakte ho */
  width: auto;
  max-width: none !important;
  display: block;
  object-fit: contain;
  padding-right: 40px; /* Spacing between image repeat */
  flex-shrink: 0;
}

/* Keyframe animation for smooth seamless movement */
@keyframes edInfiniteScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive speed tuning */
@media (max-width: 768px) {
  .ed-ticker-track {
    animation-duration: 15s; /* Slightly faster on mobile screens */
  }
  
  .ed-ticker-img {
    height: 32px;
  }
}

/* Responsive Queries */
@media (max-width: 992px) {
  .ed-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ed-cta-banner {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .ed-features-grid {
    grid-template-columns: 1fr;
  }

  .ed-stats-card {
    flex-direction: column;
    gap: 20px;
  }

  .ed-stat-divider {
    width: 100%;
    height: 1px;
  }

  .ed-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .ed-btn-primary-white, .ed-btn-outline-white {
    width: 100%;
    text-align: center;
  }

  .ed-desktop-br {
    display: none;
  }
}

/* ========================================== */
/* WHAT SETS US APART - COMPARISON TABLE     */
/* ========================================== */

.ed-comparison-section {
  padding: 80px 20px;
  background: transparent;
  color: #FFFFFF;
  text-align: center;
}

.ed-comparison-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

/* Table Outer Glass Container */
.ed-table-wrapper {
  max-width: 960px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 20px 20px 20px;
  overflow-x: auto;
  backdrop-filter: blur(10px);
}

.ed-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: center;
}

/* Header Cells */
.ed-comparison-table th {
  padding: 16px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #E2E8F0;
  vertical-align: bottom;
}

.ed-col-feature {
  width: 38%;
  text-align: left;
}

.ed-col-standard {
  width: 20%;
}

.ed-col-highlighted {
  width: 22%;
  padding: 0 !important;
  position: relative;
}

/* Highlighted Column Header (Gradient Box) */
.ed-highlight-header {
  background: linear-gradient(180deg, #6366F1 0%, #4F46E5 100%);
  padding: 14px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Table Rows & Cells */
.ed-comparison-table td {
  padding: 12px 16px;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: middle;
}

.ed-comparison-table tr:last-child td {
  border-bottom: none;
}

.ed-feature-name {
  text-align: left;
  color: #CBD5E1;
  font-weight: 500;
}

/* Highlighted Column Styling Body */
.ed-highlight-col {
  background: rgba(99, 102, 241, 0.08);
  border-left: 1px solid rgba(99, 102, 241, 0.3);
  border-right: 1px solid rgba(99, 102, 241, 0.3);
}

.ed-comparison-table tr:last-child .ed-highlight-col {
  border-bottom: 1px solid rgba(99, 102, 241, 0.3);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* Icons & Badges */
.ed-icon-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(239, 68, 68, 0.2);
  color: #EF4444;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.ed-icon-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(34, 197, 94, 0.2);
  color: #22C55E;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.ed-text-muted {
  font-size: 0.75rem;
  color: #94A3B8;
}

/* Responsive Table Horizontal Scroll */
@media (max-width: 768px) {
  .ed-comparison-title {
    font-size: 1.75rem;
  }

  .ed-comparison-table {
    min-width: 650px; /* Ensures table remains readable on mobile via horizontal scroll */
  }

  .ed-table-wrapper {
    padding: 10px;
  }
}

/* ========================================== */
/* IS THIS PROGRAM FOR YOU? SECTION STYLES   */
/* ========================================== */

.ed-program-fit-section {
  padding: 50px 20px;
  background: #01082e;
  color: #FFFFFF;
}

/* 2-Column Wrapper */
.ed-program-fit-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

/* Left Column Styling */
.ed-fit-content {
  text-align: left;
}

.ed-fit-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.ed-fit-desc {
  font-size: 1rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 32px;
}

.ed-fit-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 280px;
}

/* Action Buttons */
.ed-btn-primary {
  background: ##007bff; /* Theme Accent blue */
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none;
 
}

.ed-btn-primary:hover {
  background: #0056b3;
}

.ed-btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.ed-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

/* Right Column Card Container */
.ed-fit-roles-card {
  background: rgba(3 113 112 / 18%); 
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 20px;
  padding: 48px 36px;
  backdrop-filter: blur(12px);
}

/* 3x2 Roles Grid */
.ed-roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 20px;
}

.ed-role-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.ed-role-icon {
  width: 52px;
  height: 52px;
  background: #FEF3C7; /* Soft Light Yellow Badge BG */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ed-role-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3;
}

/* Responsive Queries */
@media (max-width: 992px) {
  .ed-program-fit-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ed-fit-actions {
    max-width: 100%;
    flex-direction: row;
  }

  .ed-btn-primary, .ed-btn-outline {
    flex: 1;
  }
}

@media (max-width: 640px) {
  .ed-roles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .ed-fit-title {
    font-size: 1.85rem;
  }

  .ed-fit-actions {
    flex-direction: column;
  }

  .ed-fit-roles-card {
    padding: 32px 20px;
  }
}

/* ========================================== */
/* WEEKLY SCHEDULE SECTION STYLES             */
/* ========================================== */

.ed-schedule-section {
  padding: 80px 20px;
  background: #03152e;
  color: #FFFFFF;
  text-align: left;
}

/* Header */
.ed-schedule-header {
  max-width: 1100px;
  margin: 0 auto 48px auto;
}

.ed-schedule-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.ed-schedule-subtitle {
  font-size: 0.95rem;
  color: #9CA3AF;
  margin: 0;
  line-height: 1.5;
}

/* 3-Column Grid */
.ed-schedule-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.ed-schedule-col {
  display: flex;
  flex-direction: column;
}

.ed-col-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px 0;
}

.ed-col-desc {
  font-size: 0.875rem;
  color: #9CA3AF;
  line-height: 1.5;
  margin: 0 0 24px 0;
  min-height: 42px; /* Standardize text alignment across columns */
}

/* Time Pills Container */
.ed-time-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Time Pill Box */
.ed-pill {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 14px 16px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ed-pill-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #F3F4F6;
  display: block;
}

/* Left Accent Colored Borders */
.border-cyan {
  border-left: 4px solid #38BDF8; /* Cyan */
}

.border-orange {
  border-left: 4px solid #FB923C; /* Light Orange */
}

.border-white {
  border-left: 4px solid #FFFFFF; /* White */
}

/* Responsive Styles */
@media (max-width: 992px) {
  .ed-schedule-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ed-col-desc {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .ed-schedule-title {
    font-size: 1.75rem;
  }

  .ed-schedule-section {
    padding: 50px 16px;
  }
}

/* ========================================== */
/* THE AIRTRIBE PAY-OFF SECTION STYLES        */
/* ========================================== */

.ed-payoff-section {
  padding: 80px 20px;
  background: transparent;
  color: #FFFFFF;
}

/* 1200px Max-Width Standard Container */
.ed-container-1200 {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.ed-payoff-header {
  text-align: left;
  margin-bottom: 36px;
}

.ed-payoff-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
}

.ed-payoff-subtitle {
  font-size: 0.95rem;
  color: #9CA3AF;
  margin: 0;
}

/* ========================================== */
/* TOP HOVER ACCORDION BANNER                 */
/* ========================================== */

/* Container Wrapper */
.ed-accordion-wrapper {
  display: flex;
  gap: 8px;
  height: 380px;
  width: 100%;
}

/* Base Accordion Card (Default state: Collapsed) */
.ed-acc-card {
  position: relative;
  flex: 0.8;
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Default State: First Card Expanded */
.ed-acc-card:first-child {
  flex: 4.5;
}

/* When Wrapper Hovered: Reset First Card Expansion */
.ed-accordion-wrapper:hover .ed-acc-card {
  flex: 0.8 !important;
}

/* ONLY the Currently Hovered Card Expands */
.ed-accordion-wrapper .ed-acc-card:hover {
  flex: 4.5 !important;
}

/* Vertical Title for Collapsed Cards */
.ed-acc-title-vertical {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

/* Profile Avatar at Bottom for Collapsed Cards */
.ed-acc-avatar-only {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.ed-acc-avatar-only .ed-acc-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Expanded Card Inner Content */
.ed-acc-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease 0.1s, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.ed-acc-heading {
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 16px 0;
}

.ed-acc-quote {
  font-size: 0.95rem;
  color: #E2E8F0;
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

.ed-acc-quote mark {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: 2px 6px;
  border-radius: 4px;
}

.ed-acc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.ed-acc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.ed-acc-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.ed-acc-role {
  font-size: 0.75rem;
  color: #9CA3AF;
  margin: 2px 0 0 0;
}

/* ========================================== */
/* VISIBILITY HOVER / DEFAULT LOGIC           */
/* ========================================== */

/* Default First Card Content Visibility */
.ed-acc-card:first-child .ed-acc-content {
  opacity: 1;
  visibility: visible;
}

.ed-acc-card:first-child .ed-acc-title-vertical,
.ed-acc-card:first-child .ed-acc-avatar-only {
  opacity: 0;
  pointer-events: none;
}

/* Reset First Card when wrapper hovered */
.ed-accordion-wrapper:hover .ed-acc-card:first-child .ed-acc-content {
  opacity: 0;
  visibility: hidden;
}

.ed-accordion-wrapper:hover .ed-acc-card:first-child .ed-acc-title-vertical,
.ed-accordion-wrapper:hover .ed-acc-card:first-child .ed-acc-avatar-only {
  opacity: 1;
  pointer-events: auto;
}

/* Show Content on Currently Hovered Card */
.ed-accordion-wrapper .ed-acc-card:hover .ed-acc-content {
  opacity: 1 !important;
  visibility: visible !important;
}

.ed-accordion-wrapper .ed-acc-card:hover .ed-acc-title-vertical,
.ed-accordion-wrapper .ed-acc-card:hover .ed-acc-avatar-only {
  opacity: 0 !important;
  pointer-events: none;
}

/* ========================================== */
/* CARD COLOR THEMES                          */
/* ========================================== */

.theme-purple     { background: linear-gradient(135deg, #4C1D95 0%, #2E1065 100%); }
.theme-blue       { background: linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%); }
.theme-yellow     { background: linear-gradient(135deg, #854D0E 0%, #3F2C06 100%); }
.theme-green      { background: linear-gradient(135deg, #14532D 0%, #052E16 100%); }
.theme-orange     { background: linear-gradient(135deg, #9A3412 0%, #431407 100%); }
.theme-darkpurple { background: linear-gradient(135deg, #3B0764 0%, #1A042D 100%); }

/* ========================================== */
/* BOTTOM TESTIMONIALS GRID                   */
/* ========================================== */

.ed-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  padding: 60px 0px;
}

.ed-story-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  backdrop-filter: blur(10px);
}

.ed-story-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ed-story-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.ed-story-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.ed-story-subrole {
  font-size: 0.75rem;
  color: #9CA3AF;
  display: block;
}

.ed-story-body {
  font-size: 0.85rem;
  color: #CBD5E1;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.ed-story-body mark {
  background: rgba(56, 189, 248, 0.2);
  color: #38BDF8;
  padding: 1px 4px;
  border-radius: 3px;
}

.ed-story-footer {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 600;
  color: #0F172A;
}

.ed-arrow {
  color: #3B82F6;
  font-weight: 800;
  letter-spacing: -1px;
}

.ed-role-tag.highlight {
  color: #059669;
}

/* Bottom CTA */
.ed-payoff-cta {
  text-align: center;
}

.ed-btn-outline-payoff {
  display: inline-block;
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ed-btn-outline-payoff:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

/* ========================================== */
/* RESPONSIVE QUERIES                         */
/* ========================================== */

@media (max-width: 992px) {
  .ed-accordion-wrapper {
    flex-direction: column;
    height: auto;
  }

  .ed-acc-card {
    height: 80px;
    flex: none !important;
  }

  .ed-acc-card:hover,
  .ed-acc-card.active {
    height: 280px;
  }

  .ed-acc-title-vertical {
    writing-mode: horizontal-tb;
    top: 28px;
    left: 24px;
    transform: none;
  }

  .ed-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ed-stories-grid {
    grid-template-columns: 1fr;
  }

  .ed-payoff-title {
    font-size: 1.75rem;
  }
}

/* ========================================== */
/* CERTIFICATE SECTION STYLES                 */
/* ========================================== */

.ed-certificate-section {
  padding: 20px 20px;
  background: transparent;
  color: #FFFFFF;
  text-align: center;
}

/* Header */
.ed-certificate-header {
  margin-bottom: 48px;
}

.ed-certificate-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.5px;
}

/* Certificate Wrapper & Card Glow */
.ed-certificate-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ed-certificate-card {
  max-width: 800px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 
              0 0 30px #1e3a8a63; 
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  padding: 12px;
}

/* Hover Effect on Certificate */
.ed-certificate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 
              0 0 45px #386e8763;
}

.ed-certificate-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .ed-certificate-title {
    font-size: 1.75rem;
  }
  
  .ed-certificate-section {
    padding: 50px 16px;
  }
  
  .ed-certificate-card {
    padding: 8px;
  }
}

/* ========================================== */
/* COMMUNITY MARQUEE SLIDER STYLES            */
/* ========================================== */

.ed-community-section {
  padding: 80px 0;
  background: transparent;
  color: #FFFFFF;
  width: 100%;
  overflow: hidden;
}

/* Header */
.ed-community-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 20px;
}

.ed-community-tagline {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #A855F7; /* Purple Accent */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ed-community-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.5px;
}

/* Full Width Marquee Slider */
.ed-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}

/* Continuous Scroll Track */
.ed-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: edMarqueeScroll 50s linear infinite;
}

/* Individual Image Card */
.ed-community-card {
  width: 500px;
  height: 320px;
  flex-shrink: 0;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Default Image State: Grayscale (Black & White) */
.ed-community-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Hover Interaction: Only Colorize Image (No Slider Pause) */
.ed-community-card:hover {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.ed-community-card:hover .ed-community-img {
  filter: grayscale(0%); /* Converts to full color */
  opacity: 1;
}

/* Keyframes for Infinite Smooth Marquee */
@keyframes edMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Queries */
@media (max-width: 992px) {
  .ed-community-card {
    width: 380px;
    height: 250px;
  }
}

@media (max-width: 640px) {
  .ed-community-title {
    font-size: 1.75rem;
  }

  .ed-community-card {
    width: 280px;
    height: 200px;
  }

  .ed-community-section {
    padding: 50px 0;
  }
}

/* ========================================== */
/* PRICING & ACCELERATE SECTION STYLES        */
/* ========================================== */

.ed-pricing-section {
  padding: 80px 20px;
  color: #FFFFFF;
}

.ed-pricing-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* Left Content Column */
.ed-pricing-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.ed-pricing-desc {
  font-size: 1rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
}

/* List Items */
.ed-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ed-pricing-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #E2E8F0;
}

.ed-check-icon {
  width: 20px;
  height: 20px;
  color: #A855F7; /* Purple Icon Color */
  flex-shrink: 0;
}

/* Right Pricing Card Styling */
.ed-pricing-card-wrapper {
  display: flex;
  justify-content: flex-end;
}

.ed-pricing-card {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Top Header Info */
.ed-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.ed-label-program {
  font-size: 0.9rem;
  color: #DDD6FE;
  font-weight: 500;
}

.ed-price-original {
  font-size: 1.1rem;
  color: #A78BFA;
  text-decoration: line-through;
  font-weight: 600;
}

/* Body & Main Price */
.ed-card-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}

.ed-special-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
}

.ed-price-effective {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.ed-currency {
  font-size: 2.25rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.ed-tax-tag {
  font-size: 0.75rem;
  color: #C4B5FD;
  margin-top: 6px;
}

/* Action Button */
.ed-pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #EDE9FE;
  color: #1E1B4B;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ed-pricing-btn:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Card Footer */
.ed-pricing-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.ed-pricing-footer span {
  font-size: 0.85rem;
  color: #DDD6FE;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Responsive Queries */
@media (max-width: 992px) {
  .ed-pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ed-pricing-card-wrapper {
    justify-content: center;
  }
  
  .ed-pricing-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .ed-pricing-card {
    padding: 24px;
  }

  .ed-currency {
    font-size: 1.85rem;
  }
}

/* ========================================== */
/* SCHOLARSHIPS SECTION STYLES                */
/* ========================================== */

.ed-scholarship-section {
  padding: 80px 20px;
  background: transparent; /* Seamless blend with main background */
  color: #FFFFFF;
}

.ed-scholarship-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap:0px;
  align-items: center;
}

/* Left Content Column */
.ed-scholarship-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ed-scholarship-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ed-scholarship-desc {
  font-size: 1rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 400px;
}

/* Action Button */
.ed-scholarship-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #007bff; /* Accent Purple */
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ed-scholarship-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* Right Grid: 2 Columns for Cards */
.ed-scholarship-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Card Setup */
/* Card Setup */
.ed-scholarship-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Default State: Fully Hidden Image */
.ed-card-hat-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: auto;
  opacity: 0 !important; /* Force hide by default */
  visibility: hidden;
  transform: translateY(-10px) scale(0.9);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

/* Hover State: Reveal Image ONLY on Active Hovered Card */
.ed-scholarship-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

.ed-scholarship-card:hover .ed-card-hat-bg {
  opacity: 1 !important; /* Show only on hover */
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Icon Styles */
.ed-card-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* Card Content */
.ed-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 10px 0;
  position: relative;
  z-index: 2;
}

.ed-card-desc {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Featured Elevate Her Card Background Art */
.ed-card-featured {
  border-color: rgba(124, 58, 237, 0.4);
}

.ed-card-hat-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .ed-scholarship-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .ed-scholarship-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .ed-scholarship-title {
    font-size: 2.1rem;
  }
}

/* ========================================== */
/* FREQUENTLY ASKED QUESTIONS STYLES          */
/* ========================================== */

.ed-faq-section {
  padding: 50px 20px;
  background: #ffff;
  color: #0F172A;
}

/* Header Container */
.ed-faq-header {
  text-align: center;
  margin-bottom: 40px;
}

/* Section Main Title - Dark Slate Color */
.ed-faq-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0F172A; /* Deep slate gray for optimal contrast */
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

/* Tabs Border & Spacing */
.ed-faq-tabs {
  display: inline-flex;
  gap: 24px;
  border-bottom: 2px solid #E2E8F0; /* Subtle light gray border */
  padding-bottom: 8px;
}

/* Default Tab - Subtle Gray */
.ed-faq-tab {
  background: transparent;
  border: none;
  color: #64748B; /* Muted gray text */
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover & Active Tab - Deep Purple Accent + Bottom Border */
.ed-faq-tab:hover,
.ed-faq-tab.active {
  color: #2a5ca1; /* Airtribe style vibrant purple accent */
}

.ed-faq-tab.active::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2a5ca1; /* Matching Active Line */
  border-radius: 2px;
}

/* Accordion Wrapper */
.ed-faq-content-wrapper {
  max-width: 800px;
  margin: 0 auto 48px auto;
}

.ed-faq-group {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.ed-faq-group.active {
  display: flex;
}

/* Individual FAQ Light Cards */
.ed-faq-item {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.ed-faq-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.ed-faq-question {
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.ed-faq-icon {
  width: 18px;
  height: 18px;
  color: #475569;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Open State */
.ed-faq-item.open .ed-faq-icon {
  transform: rotate(180deg);
}

.ed-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  background: #FFFFFF;
}

.ed-faq-item.open .ed-faq-answer {
  max-height: 300px;
  transition: max-height 0.35s cubic-bezier(0.5, 0, 1, 0);
}

.ed-faq-answer p {
  padding: 0 24px 20px 24px;
  margin: 0;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
}

.ed-faq-answer strong {
  color: #0F172A;
}

/* Bottom CTA Banner */
.ed-faq-banner {
  max-width: 900px;
  margin: 0 auto;
  background: #0F172A; /* Dark  blue container */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ed-faq-banner-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
}

.ed-faq-banner-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ed-btn-counsellor {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.825rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ed-btn-counsellor:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

.ed-btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.3s ease;
}

.ed-btn-whatsapp:hover {
  transform: scale(1.05);
  background: #20ba5a;
}

/* Responsive Queries */
@media (max-width: 768px) {
  .ed-faq-title {
    font-size: 1.75rem;
  }

  .ed-faq-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .ed-faq-question {
    padding: 16px 18px;
    font-size: 0.875rem;
  }

  .ed-faq-answer p {
    padding: 0 18px 16px 18px;
  }
}

/* ========================================== */
/* PROGRAM BANNER STYLES                      */
/* ========================================== */

/* Section Container with White Background */
.ed-program-banner-section {
  padding: 40px 20px 80px 20px;
  background: #FFFFFF; /* Pure White Background */
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

/* Center-Faded Purple Divider Line */
.ed-top-divider {
  width: 100%;
  max-width: 320px; 
  height: 2px;
  margin: 0 auto 60px auto;
  background: linear-gradient(
    90deg, 
    rgba(124, 58, 237, 0) 0%, 
    #121e3d 50%, 
    rgba(124, 58, 237, 0) 100%
  );
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.4); /* Glow effect */
}

/* Card Styling on White BG */
.ed-program-card {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
  border-radius: 20px;
  padding: 70px 85px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 65px;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(91, 33, 182, 0.25); /* Purple tint shadow for soft pop */
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Right Side Concentric Rings Background Effect */
.ed-card-rings-bg {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 0 0 60px rgba(255, 255, 255, 0.04),
    0 0 0 120px rgba(255, 255, 255, 0.03),
    0 0 0 180px rgba(255, 255, 255, 0.02);
  pointer-events: none;
  z-index: 1;
}

/* Left Section Content */
.ed-card-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ed-course-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.ed-price-box {
  margin-bottom: 24px;
}

.ed-price-old {
  display: block;
  font-size: 1.1rem;
  color: #C4B5FD;
  text-decoration: line-through;
  font-weight: 600;
  margin-bottom: 2px;
}

.ed-price-new {
  font-size: 2.75rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

/* CTA Apply Button */
.ed-btn-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #EDE9FE;
  color: #1E1B4B;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
}

.ed-btn-apply:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.ed-seats-offer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #DDD6FE;
}

.ed-offer-icon {
  width: 18px;
  height: 18px;
  color: #DDD6FE;
  flex-shrink: 0;
}

.ed-seats-offer strong {
  color: #FFFFFF;
}

/* Right Section Content */
.ed-card-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.ed-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ed-info-label {
  font-size: 0.85rem;
  color: #C4B5FD;
  font-weight: 500;
}

.ed-info-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.2px;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .ed-program-card {
    grid-template-columns: 1fr;
    padding: 36px 32px;
    gap: 32px;
  }

  .ed-card-right {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 28px;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .ed-course-title {
    font-size: 1.75rem;
  }

  .ed-price-new {
    font-size: 2.2rem;
  }

  .ed-card-right {
    flex-direction: column;
    gap: 20px;
  }
}

/* ========================================== */
/* STICKY BOTTOM BAR STYLES                   */
/* ========================================== */

.ed-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999; /* Always stays on top */
  background: linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
  padding: 14px 24px;
}

.ed-sticky-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Info Items (Left) */
.ed-sticky-info-group {
  display: flex;
  align-items: center;
  gap: 48px;
}

.ed-sticky-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ed-sticky-label {
  font-size: 0.78rem;
  color: #94A3B8;
  font-weight: 500;
}

.ed-sticky-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.2px;
}

/* Action Section (Right) */
.ed-sticky-action-group {
  display: flex;
  align-items: center;
  gap: 28px;
}

.ed-sticky-urgency {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  color: #FFFFFF;
}

.ed-sticky-urgency em {
  font-style: italic;
  font-weight: 500;
}

.ed-lightning-icon {
  color: #F59E0B; /* Amber Lightning */
  font-size: 1rem;
}

/* CTA Button */
.ed-sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1b306b;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgb(4 7 19);
  white-space: nowrap;
}

.ed-sticky-btn:hover {
  background: #06194d;
  transform: translateY(-2px);
  
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 992px) {
  .ed-sticky-info-group {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .ed-sticky-info-group {
    display: none; 
  }

  .ed-sticky-container {
    justify-content: space-between;
    width: 100%;
  }

  .ed-sticky-btn {
    padding: 10px 20px;
    font-size: 0.88rem;
  }
}

/* Premium Floating WhatsApp CTA */
.ed-whatsapp-float {
  position: fixed;
  bottom: 86px; 
  right: 28px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* WhatsApp Vector Icon */
.ed-wa-icon {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Dynamic Ripple/Pulse Ring */
.ed-wa-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  z-index: 1;
  animation: ed-wa-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ed-wa-ping {
  75%, 100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Interactive Hover States */
.ed-whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  border-color: rgba(255, 255, 255, 0.6);
}

.ed-whatsapp-float:active {
  transform: scale(0.95);
}

/* Mobile Alignment */
@media (max-width: 768px) {
  .ed-whatsapp-float {
    bottom: 78px;
    right: 18px;
    width: 50px;
    height: 50px;
  }

  .ed-wa-icon {
    width: 28px;
    height: 28px;
  }
}

.ed-tools-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px;
}

.ed-tools-banner {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px; /* Smooth rounded corners */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); /* Soft shadow */
    object-fit: contain;
}