/* ===============================
   GLOBAL RESET & BOX MODEL
================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ===============================
   PAGE WIDTH (90%)
================================ */
.single-post-wrapper {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

main {
  width: 100%;
}

/* ===============================
   SINGLE CONTENT
================================ */
.single-content {
  width: 100%;
  display: block;
}

/* ===============================
   BREADCRUMB
================================ */
.breadcrumb-wrapper {
  font-size: 14px;
  margin-bottom: 14px;
  text-align: center;
}

.breadcrumb-wrapper a {
  color: #0646f6;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-wrapper a:hover {
  text-decoration: underline;
}

/* ===============================
   JOB TITLE
================================ */
.job-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.5;
  color: #1a3b8a;
  margin-bottom: 20px;
}

/* ===============================
   POST SUMMARY
================================ */
.job-summary-box {
  background: #fdfdfd;
  border: 1px solid #6f6f6e;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 40px;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.summary-title,
.total-posts {
  background: #f96e03;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
}

.job-summary-box p {
  margin: 0 0 20px 0; /* top, right, bottom, left */
  font-size: 15px;
  line-height: 1.6;
  color: #070707;
  text-align: justify;
}

.job-summary-box p:last-child {
  margin-bottom: 5px;
}

/* ===============================
   SECTION ROW (NEW LINE CONTROL)
================================ */
.section-row {
  width: 100%;
  margin: 40px 0;
  clear: both;
}

/* ===============================
   COMMON TWO-COLUMN LAYOUT
================================ */
.important-dates-section,
.application-fee-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 0.5%;
}

/* ===============================
   COMMON CARD HEADER (UNIFIED)
================================ */
.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1e3a8a;
  color: #ffffff;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 14px 14px 0 0;
}

/* ===============================
   IMPORTANT DATES – LEFT
================================ */
.important-dates-table {
  width: 49%;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
}

.important-dates-table table {
  width: 100%;
  border-collapse: collapse;
}

.important-dates-table td {
  padding: 14px 18px;
  font-size: 15px;
  border-bottom: 1px solid #eeeeee;
}

.important-dates-table td:first-child {
  font-weight: 600;
  color: #020202;
}

.important-dates-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: #034df9;
}

/* ===============================
   IMPORTANT DATES – RIGHT
================================ */
.important-dates-explanation {
  width: 49%;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
}

.important-dates-explanation p {
  padding: 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: #060606;
  margin-bottom: 14px;
}

.important-dates-explanation p:first-of-type {
  padding-top: 20px;
}

/* ===============================
   APPLICATION FEES – LEFT
================================ */
.application-fee-table {
  width: 49%;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
}

.application-fee-table table {
  width: 100%;
  border-collapse: collapse;
}

.application-fee-table td {
  padding: 14px 18px;
  font-size: 15px;
  border-bottom: 1px solid #eeeeee;
}

.application-fee-table td:first-child {
  font-weight: 600;
}

.application-fee-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: #034df9;
}

.payment-mode {
  text-align: left !important;
  font-size: 14px;
  background: #f8fafc;
}

/* ===============================
   FEE NOTE
================================ */
.fee-note {
  background: #fff8e1;
  border-top: 1px solid #facc15;
  padding: 14px 18px;
  font-size: 14px;
  color: #7c2d12;
}

/* ===============================
   APPLICATION FEES – RIGHT
================================ */
.application-fee-explanation {
  width: 49%;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
}

.application-fee-explanation p {
  padding: 0 24px;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.application-fee-explanation p:first-of-type {
  padding-top: 20px;
}

/* ===============================
   LIST
================================ */
.fee-exemption-list {
  padding-left: 40px;
  margin-bottom: 14px;
}

/* ===============================
   TIP / INFO BOX
================================ */
.dates-tip-box {
  margin: 18px 24px 24px;
  background: #f0f7ff;
  border: 1px solid #93c5fd;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  color: #1e3a8a;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .important-dates-section,
  .application-fee-section {
    flex-direction: column;
    gap: 30px;
  }

  .important-dates-table,
  .important-dates-explanation,
  .application-fee-table,
  .application-fee-explanation {
    width: 100%;
  }

  .important-dates-table td:last-child,
  .application-fee-table td:last-child {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .job-title {
    font-size: 26px;
  }

  .summary-header {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
  }
}
/* ===============================
   NEW + RELATED POSTS LIST
================================ */

.post-list-row {
  display: flex;
  justify-content: space-between;
  gap: 3%;
  margin: 60px 0;
}

.post-list-box {
  width: 48%;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Headers */
.list-header {
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.new-header {
  background: #10b981; /* green */
}

.related-header {
  background: #f59e0b; /* orange */
}

/* List */
.post-list {
  list-style: none;
  padding: 18px 20px;
  margin: 0;
}

.post-list li {
  margin-bottom: 14px;
}

.post-list a {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}

.post-list a:hover {
  text-decoration: underline;
}

.post-date {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-top: 2px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .post-list-row {
    flex-direction: column;
    gap: 30px;
  }

  .post-list-box {
    width: 100%;
  }
}
/* ===============================
   FAQ ACCORDION
================================ */
.srk-faq-section {
  margin: 60px 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
}

.srk-faq-header {
  background: #1e3a8a;
  color: #ffffff;
  padding: 18px 22px;
  font-size: 20px;
  font-weight: 700;
}

.srk-faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.srk-faq-question {
  width: 100%;
  background: #f8fafc;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.srk-faq-question:hover {
  background: #eef2ff;
}

.srk-faq-icon {
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.srk-faq-question[aria-expanded="true"] .srk-faq-icon {
  transform: rotate(45deg);
}

/* FAQ answers visible by default (SEO-safe) */
.srk-faq-answer {
  max-height: none;
  overflow: visible;
}

/* When JS is active, collapse */
.js-enabled .srk-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

/* Expanded state */
.js-enabled .srk-faq-question[aria-expanded="true"] + .srk-faq-answer {
  max-height: 500px;
}


.srk-faq-answer p {
  padding: 16px 22px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
}
/* FLOATING MENU */
.srk-float-menu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.srk-float-btn {
  background: #1e3a8a;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.srk-float-panel {
  display: none;
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 260px;
  max-height: 70vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  padding: 14px;
}

.srk-menu-group {
  margin-bottom: 14px;
}

.srk-menu-group h4 {
  margin: 6px 0;
  font-size: 14px;
  color: #1e3a8a;
  border-bottom: 1px solid #e5e7eb;
}

.srk-menu-group a {
  display: block;
  padding: 8px 6px;
  font-size: 14px;
  color: #0f172a;
  text-decoration: none;
}

.srk-menu-group a:hover {
  background: #eef2ff;
  border-radius: 6px;
}

