 html, body {
            height: 100%;
            overflow-x: hidden;
        }
        
        .slider-container {
            position: relative;
        }
        
        .slider-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transition: opacity 0.6s ease-in-out;
        }
        
        .slide-content {
            animation: slideInUp 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .slider-slide[style*="opacity: 1"] .slide-content:nth-child(1) { animation-delay: 0.2s; }
        .slider-slide[style*="opacity: 1"] .slide-content:nth-child(2) { animation-delay: 0.3s; }
        .slider-slide[style*="opacity: 1"] .slide-content:nth-child(3) { animation-delay: 0.4s; }
        .slider-slide[style*="opacity: 1"] .slide-content:nth-child(4) { animation-delay: 0.5s; }
        .slider-slide[style*="opacity: 1"] .slide-content:nth-child(5) { animation-delay: 0.6s; }
        .slider-slide[style*="opacity: 1"] .slide-content:nth-child(6) { animation-delay: 0.7s; }
        .slider-slide[style*="opacity: 1"] .slide-content:nth-child(7) { animation-delay: 0.8s; }
        
        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* section {
            height: 100vh;
            height: 100dvh;
        } */
#accordion-list {
  max-height: 454px; /* adjust based on modules section height */
  overflow-y: auto;
  scroll-behavior: smooth;
   scrollbar-width: thin; /* for Firefox */
}

#accordion-list::-webkit-scrollbar {
  width: 6px;
}

#accordion-list::-webkit-scrollbar-thumb {
  background-color: rgba(100, 100, 100, 0.5);
  border-radius: 3px;
}

.curriculum-sidebar {
  max-height: 80vh; /* or fixed height */
  overflow-y: auto;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  max-height: 0;
}

.curriculum-sidebar.open {
  opacity: 1;
  max-height: 80vh; /* same as above */
}


body.no-scroll {
  overflow: hidden;
}

/* body > section.bg-gray-50.py-16 > div > div:nth-child(2){
    display: flex;
    align-items: center;
    justify-content: center;
} */




.payment-toggle.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.pricing-card.selected {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.success-message {
    color: #059669;
}

.error-message {
    color: #dc2626;
}


/* Registration Section Styles */
.registration-section {
  min-height: auto;
}

/* Payment Toggle */
.payment-toggle-wrapper {
  background: white;
  border-radius: 16px;
  padding: 4px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  display: flex;
}

.payment-toggle {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
}

.payment-toggle.active {
  background: var(--primary-color, #0051ab);
  color: white;
}

/* Pricing Cards */
.pricing-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  height: fit-content;
}

.pricing-card:hover {
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.pricing-card.selected {
  border-color: var(--primary-color, #0051ab);
  box-shadow: 0 0 0 4px rgba(0, 81, 171, 0.1);
}

.most-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color, #ff7a29);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  font-family: 'Jost', sans-serif;
}

.card-content {
  text-align: center;
}

.plan-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.consultant-icon {
  background: linear-gradient(135deg, var(--primary-color, #0051ab), var(--primary-dark, #003d82));
}

.student-icon {
  background: linear-gradient(135deg, var(--accent-color, #ff7a29), var(--accent-dark, #e6691a));
}

.plan-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color, #0051ab);
  font-family: 'Raleway', sans-serif;
  margin-bottom: 4px;
}

.plan-subtitle {
  color: #6b7280;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  margin-bottom: 20px;
}

.pricing-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.original-price {
  font-size: 16px;
  color: #9ca3af;
  text-decoration: line-through;
  font-family: 'Jost', sans-serif;
}

.current-price {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color, #0051ab);
  font-family: 'Jost', sans-serif;
}

.savings-badge {
  display: inline-flex;
  align-items: center;
  background: #dcfce7;
  color: #16a34a;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  margin-bottom: 20px;
}

.select-btn {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  font-weight: bold;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.consultant-btn {
  background: var(--primary-color, #0051ab);
  color: white;
}

.consultant-btn:hover {
  background: var(--primary-dark, #003d82);
}

.student-btn {
  background: var(--accent-color, #ff7a29);
  color: white;
}

.student-btn:hover {
  background: var(--accent-dark, #e6691a);
}

/* What's Included Section */
.whats-included-section {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.whats-included-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color, #0051ab);
  font-family: 'Raleway', sans-serif;
  margin-bottom: 20px;
  text-align: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(0, 81, 171, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-title {
  font-weight: 600;
  color: #374151;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
}

.feature-desc {
  color: #6b7280;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
}

/* Registration Form */
.registration-form-section {
  margin-top: 32px;
}

.form-container {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color, #0051ab);
  font-family: 'Raleway', sans-serif;
  text-align: center;
  margin-bottom: 24px;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 768px) {
  .form-row-3,
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.form-input {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color, #0051ab);
}

.form-input.border-red-500 {
  border-color: #ef4444;
}

/* Coupon Section */
.coupon-section {
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
}

.coupon-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.checkbox-input {
  width: 16px;
  height: 16px;
}

.checkbox-label {
  color: #374151;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 14px;
}

.coupon-input-row {
  display: flex;
  gap: 8px;
}

.apply-coupon-btn {
  background: var(--accent-color, #ff7a29);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.apply-coupon-btn:hover {
  background: var(--accent-dark, #e6691a);
}

.coupon-message {
  margin-top: 8px;
  font-size: 12px;
  font-family: 'Jost', sans-serif;
}

.coupon-message.text-green-600 {
  color: #16a34a;
}

.coupon-message.text-red-600 {
  color: #dc2626;
}

/* Payment Summary */
.payment-summary {
  background: #f9fafb;
  border-radius: 16px;
  padding: 24px;
  height: fit-content;
}

.summary-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color, #0051ab);
  font-family: 'Raleway', sans-serif;
  margin-bottom: 20px;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-label {
  color: #6b7280;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
}

.summary-value {
  color: #374151;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.discount-value {
  color: #16a34a;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
}

.total-label {
  font-weight: bold;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  color: #374151;
}

.total-value {
  font-weight: bold;
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  color: var(--primary-color, #0051ab);
}

.proceed-payment-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color, #0051ab), var(--accent-color, #ff7a29));
  color: white;
  padding: 16px;
  border-radius: 12px;
  border: none;
  font-weight: bold;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.proceed-payment-btn:hover {
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.proceed-payment-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.security-note {
  font-size: 11px;
  color: #9ca3af;
  font-family: 'Jost', sans-serif;
  text-align: center;
}

/* Utility Classes */
/* .hidden {
  display: none !important;
} */

/* Responsive */
@media (max-width: 1024px) {
  .registration-section .grid.lg\\:grid-cols-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .whats-included-section {
    order: -1;
  }
}

@media (max-width: 768px) {
  .pricing-card {
    padding: 20px;
  }
  
  .current-price {
    font-size: 28px;
  }
  
  .form-container {
    padding: 24px;
  }
  #hero > div.absolute.bottom-8.left-8.z-20.text-white{
    display: none;
  }
  #curriculam > div > div.flex.flex-col.lg\:flex-row.gap-8 > div:nth-child(1){
    display: none;
  }
  #accordion-list{
    max-height: 506px;
  }
}
