/* ===== GLOBAL ===== */
body {
  font-family: 'Hubot Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
}

/* ================= ADMISSION PROCESS ================= */

.admission-process-section {
  padding: 90px 0;
  background: #F7F6EC;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 15.5px;
  color: #000000;
  max-width: 680px;
  margin: 0 auto;
}

.process-card {
  position: relative;
  background: #F7F6EC;
  border: 1px solid #F7F6EC;
  border-radius: 16px;
  padding: 36px 24px 28px;
  height: 100%;
  transition: all 0.25s ease;
}

.process-card:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: -14px;
  left: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #E8402A;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #FAEBD7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #E8402A;
  font-size: 18px;
}

.process-card h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 14.5px;
  color: #000000;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 26px;
  }
}
/* ================= ELIGIBILITY & KEY DATES ================= */

.eligibility-dates-section {
  padding: 90px 0;
  background: #F7F6EC;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.section-title i {
  font-size: 18px;
  color: #E8402A;
}

.section-title h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

/* Eligibility Cards */
.info-card {
  background: #F7F6EC;
  border: 1px solid #F7F6EC;
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 16px;
}

.info-card h6 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-card ul {
  padding-left: 18px;
  margin: 0;
}

.info-card li {
  font-size: 14.5px;
  color: #000000;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Dates Table */
.dates-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #F7F6EC;
}

.dates-header {
  background: #E8402A;
  color: #ffffff;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}

.dates-row {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F7F6EC;
}

.dates-row strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
}

.dates-row small {
  font-size: 12px;
  color: #000000;
}

.date-pill {
  background: #FAEBD7;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.dates-note {
  font-size: 12.5px;
  color: #000000;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .dates-header,
  .dates-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
/* ================= REQUIRED DOCUMENTATION ================= */

.required-docs-section {
  padding: 90px 0;
  background: #F7F6EC;
}

.section-heading {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-subtext {
  font-size: 15.5px;
  color: #000000;
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Docs Grid */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.doc-item {
  background: #F7F6EC;
  border: 1px solid #F7F6EC;
  border-radius: 12px;
  padding: 14px 16px 14px 40px;
  font-size: 14.5px;
  color: #E8402A;
  position: relative;
}

.doc-item::before {
  content: "●";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #000000;
}

/* Poster */
.poster-wrapper {
  position: relative;
  background: #FAEBD7;
  padding: 14px;
  border-radius: 20px;
}

.poster-image {
  width: 100%;
  border-radius: 16px;
}

/* Integrity Card */
.integrity-card {
  position: absolute;
  bottom: -28px;
  right: -18px;
  background: #F7F6EC;
  border-radius: 16px;
  padding: 16px 18px;
  width: 260px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.integrity-card h6 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 6px;
}

.integrity-card p {
  font-size: 13px;
  color: #000000;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .docs-grid {
    grid-template-columns: 1fr;
  }

  .integrity-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
}
/* ================= ADMISSION FAQs ================= */

.admission-faqs {
  padding: 90px 0;
  background: #F7F6EC;
}

.faq-header {
  margin-bottom: 40px;
}

.faq-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FAEBD7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.faq-header p {
  font-size: 15.5px;
  color: #000000;
}

/* FAQ List */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #F7F6EC;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  background: #F7F6EC;
}

/* Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question:hover {
  background: #F7F6EC;
}

.arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #E8402A;
  border-bottom: 2px solid #E8402A;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 14.5px;
  color: #000000;
  line-height: 1.6;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 22px 18px;
}

.faq-item.active .arrow {
  transform: rotate(-135deg);
}

/* Mobile */
@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 26px;
  }

  .faq-question {
    font-size: 15px;
  }
}
/* ================= ADMISSIONS FINAL CTA ================= */

.admissions-cta {
  padding: 80px 0;
  background: #F7F6EC;
}

.cta-box {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  border-radius: 28px;
  background: radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.05),
      transparent 40%
    ),
    linear-gradient(135deg, #000000, #000000);
  text-align: center;
  color: #ffffff;
}

.cta-box h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-box p {
  font-size: 16px;
  color: #FFFFFF;
  max-width: 650px;
  margin: 0 auto 34px;
  line-height: 1.6;
}

/* Buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #F7F6EC;
  color: #E8402A;
  font-weight: 700;
}

.btn-primary:hover {
  background: #F08C1C;
  color: #ffffff;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Helpline */
.cta-helpline {
  margin-top: 26px;
  font-size: 14px;
  color: #FFFFFF;
}

/* Mobile */
@media (max-width: 768px) {
  .cta-box {
    padding: 60px 24px;
  }

  .cta-box h2 {
    font-size: 28px;
  }

  .cta-box p {
    font-size: 15px;
  }
}
