/* ============= ADMISSION PROCESS SECTION ============= */
.admission-process {
  margin: 50px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.admission-process h2 {
  text-align: center;
  color: #003b77;
  margin-bottom: 10px;
  font-size: 2rem;
}

.section-intro {
  text-align: center;
  color: #777;
  margin-bottom: 50px;
  font-size: 1rem;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  align-items: center;
  margin-top: 40px;
}

.process-step {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(229,51,51,0.2);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #e53333;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.step-icon {
  font-size: 2.5rem;
  color: #003b77;
  margin-bottom: 12px;
}

.process-step h3 {
  color: #003b77;
  font-size: 1.1rem;
  margin: 15px 0 10px 0;
}

.process-step p {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.6;
}

.timeline-connector {
  height: 4px;
  background: linear-gradient(90deg, #e53333, #003b77);
  border-radius: 2px;
}

/* ============= ADMISSION PROCESS SECTION ============= */

/* ============= ADMISSION FORM SECTION ============= */
.admission-form-section {
  /* background: #f7fafd; */
  padding: 10px 20px;
  margin: 10px 0;
  border-radius: 12px;
}

.admission-form-section h2 {
  text-align: center;
  color: #003b77;
  margin-bottom: 40px;
  font-size: 2rem;
}

.admission-form-container {
  max-width: 800x;
  margin: auto;
  /* background: #fff; */
  border-radius: 12px;
  /* padding: 30px; */
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
}

/* ============= ADMISSION FORM SECTION ============= */


/* ============= PAYMENT SECTION ============= */
.payment-section {
  margin: 50px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.payment-section h2 {
  text-align: center;
  color: #003b77;
  margin-bottom: 40px;
  font-size: 2rem;
}

.payment-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* ============= PAYMENT SECTION ============= */

/* ============= FEE STRUCTURE ============= */
.fee-structure {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.fee-structure h3 {
  color: #003b77;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.fee-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid #e53333;
  border-radius: 8px;
  overflow: hidden;
}

.fee-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 0;
  padding: 15px;
  align-items: center;
  border-bottom: 1px solid #e8e8e8;
}

.fee-row:last-child {
  border-bottom: none;
}

.fee-row.header {
  background: #e53333;
  color: #fff;
  font-weight: bold;
}

.fee-col {
  padding: 5px;
}

/* ============= FEE STRUCTURE ============= */

/* ============= PAYMENT METHODS ============= */
.payment-methods {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.payment-methods h3 {
  color: #003b77;
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.method-card {
  background: #f7fafd;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.method-card:hover {
  border-color: #e53333;
  box-shadow: 0 6px 20px rgba(229,51,51,0.1);
}

.method-icon {
  font-size: 2.5rem;
  color: #e53333;
  margin-bottom: 15px;
}

.method-card h4 {
  color: #003b77;
  margin: 12px 0;
  font-size: 1.1rem;
}

.method-card p {
  color: #777;
  font-size: 0.9rem;
}

/* ============= PAYMENT METHODS ============= */

/* ============= SPECIAL OFFERS ============= */
.special-offers {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.special-offers h3 {
  color: #003b77;
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.offer-card {
  background: linear-gradient(135deg, #e53333 0%, #ff6b5b 100%);
  color: #fff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-badge {
  display: inline-block;
  background: rgba(255,255,255,0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.offer-card h4 {
  color: #fff;
  margin: 12px 0;
  font-size: 1.1rem;
}

.offer-card p {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}

/* ============= SPECIAL OFFERS ============= */

/* ============= DATES SECTION ============= */
.dates-section {
  margin: 50px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.dates-section h2 {
  text-align: center;
  color: #003b77;
  margin-bottom: 40px;
  font-size: 2rem;
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.date-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #e53333;
}

.date-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(229,51,51,0.2);
}

.date-icon {
  font-size: 2.5rem;
  color: #e53333;
  margin-bottom: 15px;
}

.date-card h3 {
  color: #003b77;
  margin: 12px 0;
  font-size: 1.2rem;
}

.date-highlight {
  color: #e53333;
  font-weight: bold;
  font-size: 1.1rem;
  margin: 12px 0;
}

.date-card p {
  color: #777;
  font-size: 0.9rem;
}

/* ============= DATES SECTION ============= */

/* ============= ELIGIBILITY SECTION ============= */
.eligibility-section {
  background: #f7fafd;
  padding: 50px 20px;
  margin: 50px 0;
  border-radius: 12px;
}

.eligibility-section h2 {
  text-align: center;
  color: #003b77;
  margin-bottom: 40px;
  font-size: 2rem;
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.eligibility-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-left: 4px solid #e53333;
}

.eligibility-card h3 {
  color: #003b77;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.eligibility-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.eligibility-card li {
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============= ELIGIBILITY SECTION ============= */

/* ============= ADMISSION CTA SECTION ============= */ 
.admission-cta {
  background: linear-gradient(135deg, #003b77 0%, #e53333 100%);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 50px auto;
  max-width: 1200px;
}

.admission-cta h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 12px;
}

.admission-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #fff;
  color: #0c035f;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 6px;
}

.btn-primary:hover {
  background: #e01818;
  color: rgb(255, 255, 255);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 600;
}

.btn-secondary:hover {
  background: rgb(255, 255, 255);
  color: red;
}

/* ============= ADMISSION CTA SECTION ============= */


/* General container padding adjustment on smaller screens */
@media (max-width: 1024px) {
  .admission-process,
  .payment-section,
  .dates-section,
  .eligibility-section,
  .admission-cta {
    padding: 20px 15px;
    margin: 30px auto;
  }

  .admission-process h2,
  .payment-section h2,
  .dates-section h2,
  .eligibility-section h2,
  .admission-cta h2 {
    font-size: 1.8rem;
  }

  .section-intro {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }
}

/* For tablets and small laptops */
@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 30px;
  }

  .process-step {
    padding: 25px 15px;
  }

  .step-icon {
    font-size: 2rem;
  }

  .process-step h3 {
    font-size: 1rem;
  }

  .process-step p {
    font-size: 0.85rem;
  }

  /* Payment container stack */
  .payment-container {
    gap: 30px;
  }

  .fee-structure {
    padding: 20px;
  }

  .fee-row {
    grid-template-columns: 1fr 1fr 1fr; /* Slight adjustment */
    padding: 12px 10px;
  }

  .fee-row.header {
    font-size: 0.95rem;
  }

  .method-card {
    padding: 20px;
  }

  .method-icon {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .method-card h4 {
    font-size: 1rem;
  }

  .method-card p {
    font-size: 0.85rem;
  }
}

/* Mobile devices */
@media (max-width: 480px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-step {
    padding: 20px 12px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    top: -12px;
  }

  .step-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .process-step h3 {
    font-size: 0.95rem;
  }

  .process-step p {
    font-size: 0.8rem;
  }

  .fee-row {
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 10px 8px;
  }

  .fee-row.header {
    font-size: 0.9rem;
  }

  .method-card {
    padding: 15px;
  }

  .method-icon {
    font-size: 1.7rem;
  }

  .method-card h4 {
    font-size: 0.95rem;
  }

  .method-card p {
    font-size: 0.8rem;
  }

  .special-offers h3,
  .payment-methods h3,
  .fee-structure h3,
  .dates-section h2,
  .eligibility-section h2,
  .admission-cta h2 {
    font-size: 1.5rem;
  }

  .dates-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .eligibility-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 12px 0;
    font-size: 1.1rem;
  }
}

/* Very small devices - fine tune text sizes and spacings */
@media (max-width: 350px) {
  .admission-process h2,
  .payment-section h2,
  .dates-section h2,
  .eligibility-section h2,
  .admission-cta h2 {
    font-size: 1.3rem;
  }

  .process-step p,
  .method-card p,
  .offer-card p,
  .date-card p,
  .eligibility-card li {
    font-size: 0.75rem;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .step-icon {
    font-size: 1.5rem;
  }
}
