/* ==============================================================
   # ADMISSIONS PAGE - COMPLETE REDESIGN
   ============================================================== */

/* === GENERAL PAGE & SECTION STYLING === */
.section-padding-admissions {
  padding: 80px 0;
}

.section-bg-light {
  background-color: #f8f9fa;
}

.dark-section {
  background-color: #0d2c54; /* Deep Blue */
  color: #fff;
}

.section-title-admissions {
  margin-bottom: 50px;
  text-align: center;
}
.section-title-admissions h2 {
  font-weight: 800;
  color: #0d2c54;
  margin-bottom: 15px;
  font-size: 2.2rem;
}
.dark-section .section-title-admissions h2 {
  color: #fff;
}
.section-title-admissions p {
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.dark-section .section-title-admissions p {
  color: #adb5bd;
}


/* === 1. HERO BANNER === */
.admission-hero {
    position: relative;
    padding: 100px 0;
    
    color: #fff;
    background-color: #01254a;
}
.admission-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 44, 84, 0.7); /* Deep Blue Overlay */
}
.admission-hero .container {
  position: relative;
  z-index: 1;
}
.admission-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
}
.admission-hero .lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}
.admission-hero .btn {
  background-color: #ec7107;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(236, 113, 7, 0.3);
  transition: all 0.3s ease;
}
.admission-hero .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(236, 113, 7, 0.4);
}

/* === 2. PROGRAMS OFFERED CARDS === */
.program-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e3e6ec;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-top: 3px solid #ec7107;
}
.program-card h4 {
  font-weight: 700;
  font-size: 1.2rem;
  color: #0d2c54;
  margin-bottom: 12px;
}
.program-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1; /* Pushes the link to the bottom */
}
.program-card a {
  color: #ec7107;
  text-decoration: none;
  font-weight: 600;
}
.program-card a:hover {
  color: #0d2c54;
}

/* === 3. ADMISSION PROCESS TIMELINE (Badge + Bubble) === */
.admission-process .step-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.admission-process .step-number {
  position: relative;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #0d2c54;
  border: 3px solid #0d2c54;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: -22px;
  box-shadow: 0 6px 18px rgba(13,44,84,0.08);
}
.admission-process .step-bubble {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 24px rgba(13,44,84,0.06);
  margin-bottom: -45px;
  z-index: 2;
  transition: transform 240ms ease;
}
.admission-process .step-wrap:hover .step-bubble {
  transform: translateY(-6px) scale(1.05);
}
.admission-process .row > .process-step:nth-child(1) .step-bubble { background: #e6f9f6; }
.admission-process .row > .process-step:nth-child(1) .step-bubble i { color: #00937f; }
.admission-process .row > .process-step:nth-child(2) .step-bubble { background: #fff4ea; }
.admission-process .row > .process-step:nth-child(2) .step-bubble i { color: #ec7107; }
.admission-process .row > .process-step:nth-child(3) .step-bubble { background: #eaf9ea; }
.admission-process .row > .process-step:nth-child(3) .step-bubble i { color: #1e9c3a; }
.admission-process .row > .process-step:nth-child(4) .step-bubble { background: #eaf1ff; }
.admission-process .row > .process-step:nth-child(4) .step-bubble i { color: #0d2c54; }
.admission-process .step-bubble i {
  font-size: 30px;
}
.admission-process .card-content {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e3e6ec;
  padding: 60px 20px 25px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  height: 100%;
}
.admission-process .card-content h4 {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0d2c54;
  margin-bottom: 10px;
}
.admission-process .card-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .admission-process .row::before {
    content: "";
    position: absolute;
    top: 67px;
    left: 8%;
    width: 84%;
    height: 2px;
    background-image: linear-gradient(to right, #e9eef5 50%, rgba(0,0,0,0) 50%);
    background-size: 12px 100%;
    z-index: 1;
  }
}

/* === 4. FAQ ACCORDION (Dark Theme) === */
.dark-section #faqAccordion .card {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  margin-bottom: 10px;
  border-radius: 8px !important;
}
.dark-section #faqAccordion .card-header {
  background-color: transparent; padding: 0; border: none;
}
.dark-section #faqAccordion .btn-link {
  width: 100%; text-align: left; padding: 1rem 1.5rem; color: #fff; font-weight: 600; text-decoration: none; position: relative;
}
.dark-section #faqAccordion .btn-link:hover { color: #ec7107; }
.dark-section #faqAccordion .btn-link::after {
  content: '\f067'; /* plus */
  font-family: "Font Awesome 5 Free";
  font-weight: 900; /* needed for solid icons in FA5 */
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #ec7107;
  transition: transform .2s ease;
}
.dark-section #faqAccordion .btn-link[aria-expanded="true"]::after {
  content: '\f068';
}
.dark-section #faqAccordion .card-body {
  padding: 0 1.5rem 1.25rem; color: #adb5bd; line-height: 1.7; font-size: 0.95rem; border: none;
}
.admission-hero::before {
  z-index: 0; /* overlay background */
}
ul.feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: #ec7107;
  font-size: 14px;
}
.admission-hero .container { z-index: 1; } /* content above overlay */
/* Fee & Contact Card (on Dark BG) */
.contact-card-dark-bg {
  background: #fff;
  color: #333;
  border-radius: 12px;
  padding: 30px;
}
.contact-card-dark-bg h3 { color: #0d2c54; }
.contact-card-dark-bg .btn {
  background: #0d2c54; color: #fff; border-radius: 30px; padding: 10px 22px;
}
.contact-card-dark-bg .btn:hover { background: #ec7107; }

/* === 5. FINAL CTA SECTION === */
.final-cta {
  background-color: #f8f9fa;
  text-align: center;
}
.final-cta h3 {
  color: #0d2c54;
  font-weight: 700;
}