/* ===== RERA PAGE FINAL CLEAN CSS ===== */

/* ===== BASE ===== */
.rera-page {
  font-family: 'Georgia', serif;
  color: #333;
}

/* ===== CONTENT WIDTH ===== */
.rera-page .jts-founder-text {
  max-width: 1100px;
  margin: auto;
}

/* ===== MAIN HEADING ===== */
.rera-page .jts-founder-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.3;
  max-width: 900px;
  margin: 50px auto 25px;
}

/* GOLD UNDERLINE (MAIN HEADING) */
.rera-page .jts-founder-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c9a14a;
  margin: 10px auto 0;
}

/* ===== HEADINGS ===== */
.rera-page h2,
.rera-page h3,
.rera-page h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #0b2e4f;
}

/* GOLD UNDERLINE FOR ALL HEADINGS */
.rera-page h3::after,
.rera-page h4::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #c9a14a;
  margin-top: 6px;
}

/* ===== PARAGRAPH ===== */
.rera-page p {
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* ===== STRONG TEXT (ALWAYS BLUE) ===== */
.rera-page strong {
  color: #0b2e4f;
}

/* ===== LIST ===== */
.rera-page ul {
  padding-left: 20px;
}

.rera-page ul li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* GOLD BULLETS ONLY */
.rera-page .jts-list li::marker {
  color: #c9a14a;
}

/* FORCE BLUE TEXT IN LIST */
.rera-page ul li strong {
  color: #0b2e4f !important;
}

/* ===== TABLE ===== */
.rera-page table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
  display: block;
  overflow-x: auto;
}

.rera-page table th {
  background: #0d2c4a;
  color: #fff;
  padding: 12px;
  text-align: center;
}

.rera-page table td {
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.rera-page table tr:nth-child(even) {
  background: #fafafa;
}

.rera-page table tr:hover {
  background: #f5f5f5;
}

/* ===== REMOVE GOLD TEXT GLOBALLY ===== */
.text-gold,
.gold,
span[style*="color:#c9a14a"],
span[style*="color: #c9a14a"] {
  color: #0b2e4f !important;
}

/* ===== RERA IMAGE + TEXT LAYOUT ===== */
.rera-page .rera-top {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .rera-page .rera-top {
    display: block;
  }

  .rera-page .jts-founder-img {
    margin-bottom: 20px;
  }

  .rera-page .jts-founder-title {
    font-size: 22px;
  }

  .rera-page p {
    font-size: 15px;
  }

}

/* ===== FIX HEADING UNDERLINE CENTER ===== */

.rera-page h2,
.rera-page h3,
.rera-page h4 {
  text-align: center;
  position: relative;
}

/* GOLD LINE CENTER */
.rera-page h2::after,
.rera-page h3::after,
.rera-page h4::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #c9a14a;
  margin: 8px auto 0;   /* ? center fix */
}

/* ===== FULL WIDTH AFTER IMAGE ===== */

.rera-page .jts-founder-text {
  max-width: 100% !important;
}

/* container bhi full stretch */
.rera-page .container-fluid {
  max-width: 100%;
}

/* ===== ONLY TOP SECTION SIDE BY SIDE ===== */

.rera-page .rera-top {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

/* mobile */
@media (max-width: 768px) {
  .rera-page .rera-top {
    display: block;
  }
}


/* ===== REMOVE TOP WHITE SPACE (RERA) ===== */

.rera-page.section-block,
.rera-page .jts-founder {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ===== FULL WIDTH CONTENT (AFTER IMAGE) ===== */

.rera-page .jts-founder-text {
  max-width: 100% !important;
  padding: 0 40px;   /* thoda side spacing for design */
}
/* ===== BELOW CONTENT FULL WIDTH ===== */

.rera-page .row + .row .jts-founder-text {
  max-width: 100% !important;
}



.rera-full-width {
  width: 100%;
  max-width: 100%;
  padding: 40px 100px; /* adjust spacing */
}




.rera-page .jts-founder-img {
  margin-top: 90px;   /* increase/decrease as needed (30–60px) */
}


/* remove gap before table section */
.rera-page h3.section-title {
  margin-bottom: 10px;
}

.rera-page .jts-list {
  margin-bottom: 10px;
}

/* table top gap tight */
.rera-page table {
  margin-top: 10px !important;
}

.rera-page .rera-full-width {
  padding-top: 20px;   /* reduce from 40px */
}

/* ===== RESPONSIVE FINAL FIX ===== */

/* ===== LARGE SCREEN (1200px+) ===== */
@media (min-width: 1200px) {
  .rera-full-width {
    padding: 50px 120px;
  }
}

/* ===== TABLET ===== */
@media (max-width: 992px) {

  .rera-full-width {
    padding: 30px 40px;
  }

  .rera-page .jts-founder-text {
    padding: 0 20px;
  }

  .rera-page .jts-founder-img {
    margin-top: 40px;
  }

}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  /* full width sections */
  .rera-full-width {
    padding: 25px 15px;
  }

  /* text spacing */
  .rera-page .jts-founder-text {
    padding: 0 15px;
  }

  /* heading */
  .rera-page .jts-founder-title {
    font-size: 22px;
    margin-top: 30px;
  }

  /* image fix */
  .rera-page .jts-founder-img {
    margin-top: 20px;
    text-align: center;
  }

  .rera-page .jts-founder-img img {
    width: 100%;
    max-width: 300px;
  }

  /* table mobile scroll */
  .rera-page table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* list spacing */
  .rera-page ul li {
    font-size: 14px;
  }

  /* paragraph */
  .rera-page p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {

  .rera-full-width {
    padding: 20px 10px;
  }

  .rera-page .jts-founder-title {
    font-size: 20px;
  }

}