

body.enrollment-page {
  padding-top: 0;
  background: #f9fafb;
  min-height: 100vh;
}

.enroll-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.enroll-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #041b46;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}

.btn-primary:hover {
  background-color: #06307a;
  transform: scale(1.07);
  box-shadow: 0 6px 20px rgba(4, 27, 70, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #00aaff;
  color: #00aaff;
  transform: scale(1.07);
}

.btn-outline.light {
  color: #374151;
  border-color: #9ca3af;
}

.btn-outline.light:hover {
  background-color: rgba(0, 170, 255, 0.06);
  border-color: #00aaff;
  color: #00aaff;
}

.enroll-section {
  padding: 90px 20px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  
}

.section-title span {
  color: #00aaff;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 50px;
  line-height: 1.7;
}

.section-dark .section-title  { color: #f9fafb; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.section-dark .section-subtitle { color: #9ca3af; }

.section-light .section-title  { color: #111827; text-shadow: none; }
.section-light .section-subtitle { color: #6b7280; }

.programs-section  { background: #ffffff; }   
.timeline-section  { background: #111827; }   
.steps-section     { background: #ffffff; }   
.requirements-section { background: #111827; } 
.enroll-courses-section { background: #f9fafb; } 
.faq-section       { background: #ffffff; }   

body.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.js-reveal-ready .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.js-reveal-ready .reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34,1.2,0.64,1);
}

body.js-reveal-ready .reveal-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

.programs-note {
  text-align: center;
  color: #6b7280;
  font-size: 0.88rem;
  margin-top: 12px;
}

.fees-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  background: #ffffff;
}

.fees-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Poppins', sans-serif;
  min-width: 520px;
}

.fees-table thead tr {
  background: #f3f4f6;
}

.fees-table thead th {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  border-bottom: 2px solid #e5e7eb;
}

.fees-table tbody tr {
  background: #ffffff;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.2s ease;
}

.fees-table tbody tr:last-child {
  border-bottom: none;
}

.fees-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.fees-table tbody tr:hover {
  background: #eff6ff;
}

.fees-table tbody td {
  padding: 15px 24px;
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.5;
}

.fees-table tbody td:first-child {
  font-weight: 600;
  color: #111827;
}

.fees-table tbody td:nth-child(2) {
  color: #6b7280;
  font-size: 0.88rem;
}

.fees-table tbody td:last-child {
  color: #041b46;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 20px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}

.timeline-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1f2937;
  border: 2px solid rgba(255,255,255,0.15);
  color: #9ca3af;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.timeline-step:hover .timeline-circle {
  background: #00aaff;
  border-color: #00aaff;
  color: #fff;
  transform: scale(1.15);
}

.timeline-line {
  position: absolute;
  top: 26px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.08);
  z-index: 0;
}

.timeline-step.last .timeline-line { display: none; }

.timeline-label {
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #9ca3af;
  text-align: center;
  padding: 0 6px;
  line-height: 1.4;
  transition: color 0.3s;
}

.timeline-step:hover .timeline-label { color: #00aaff; }

.enroll-step {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 64px;
}

.enroll-step.reverse { flex-direction: row-reverse; }
.enroll-step:last-child { margin-bottom: 0; }

.step-visual {
  flex-shrink: 0;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #f0f9ff;
  border: 2px solid #bae6fd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.step-icon i {
  font-size: 3.2rem;
  color: #00aaff;
  transition: transform 0.3s ease;
}

.step-icon.highlight {
  background: #e0f2fe;
  border-color: #00aaff;
}

.enroll-step:hover .step-icon {
  background: #e0f2fe;
  border-color: #00aaff;
  transform: scale(1.06);
}

.enroll-step:hover .step-icon i {
  transform: scale(1.12) rotate(-3deg);
}

.step-content { flex: 1; }

.step-badge {
  display: inline-block;
  background: #eff6ff;
  color: #041b46;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid #bfdbfe;
}

.step-badge.active {
  background: #041b46;
  color: #ffffff;
  border-color: #041b46;
}

.step-content h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 20px;
}

.step-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.req-card {
  background: #1f2937;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.3s, border-color 0.3s;
}

.req-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  border-color: rgba(0, 170, 255, 0.3);
}

.req-card i {
  font-size: 2.2rem;
  color: #00aaff;
  margin-bottom: 12px;
  display: block;
  transition: transform 0.3s ease;
}

.req-card:hover i {
  transform: scale(1.15);
}

.req-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 6px;
}

.req-card p {
  font-size: 0.82rem;
  color: #9ca3af;
  line-height: 1.6;
}

.enroll-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.enroll-course-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.enroll-course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  border-color: #00aaff;
}

.enroll-course-card i {
  font-size: 1.6rem;
  color: #00aaff;
  flex-shrink: 0;
}

.enroll-course-card span {
  font-size: 0.88rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.4;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item.open,
.faq-item:hover {
  border-color: #00aaff;
  box-shadow: 0 4px 16px rgba(0, 170, 255, 0.08);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #111827;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
}

.faq-question:hover { color: #00aaff; }

.faq-icon {
  font-size: 1.3rem;
  color: #00aaff;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 240px;
  padding: 0 22px 18px;
}

.faq-answer p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.8;
  border-top: 1px solid #f3f4f6;
  padding-top: 14px;
}

.enroll-cta-section {
  padding: 90px 20px;
  background:
    linear-gradient(135deg, rgba(17,24,39,0.88) 0%, rgba(17,24,39,0.72) 100%),
    url('images/joinusbcg.jpg') no-repeat center center / cover;
  text-align: center;
}

.enroll-cta-content { max-width: 680px; margin: 0 auto; }

.enroll-cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.enroll-cta-content p {
  font-size: 0.97rem;
  color: #9ca3af;
  margin-bottom: 34px;
  line-height: 1.8;
}

.enroll-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@keyframes enroll-fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

@media (max-width: 1024px) {
  .requirements-grid,
  .enroll-courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .enroll-section { padding: 60px 16px; }

  .section-title { font-size: 1.75rem; }

  .enroll-hero-btns {
    flex-direction: column;
    align-items: center;
  }

  
  .timeline { flex-direction: column; align-items: center; }

  .timeline-step {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    max-width: 300px;
    gap: 16px;
  }

  .timeline-line {
    position: absolute;
    top: 52px;
    left: 25px;
    width: 2px;
    height: 60px;
    background: rgba(255,255,255,0.08);
  }

  .timeline-label {
    margin-top: 12px;
    text-align: left;
    padding: 0;
  }

  
  .enroll-step,
  .enroll-step.reverse {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .step-visual { width: 100%; }
  .step-actions { justify-content: center; }

  .requirements-grid { grid-template-columns: repeat(2, 1fr); }
  .enroll-courses-grid { grid-template-columns: 1fr; }
  .enroll-cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .requirements-grid { grid-template-columns: 1fr; }

  .fees-table thead th,
  .fees-table tbody td {
    padding: 12px 14px;
    font-size: 0.8rem;
  }
}