/* ==========================================================
   Deen Dayal Jan Awas Yojna - Jind
   Main Stylesheet
========================================================== */

:root {
  --brand-blue: #0a3d7a;
  --brand-blue-dark: #072a56;
  --brand-orange: #ff7e1f;
  --brand-red: #e2372e;
  --brand-green: #2d5a27;
  --brand-peach: #fdf0e4;
  --text-dark: #1c1c1c;
  --text-muted: #5c6570;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-soft: 0 6px 24px rgba(10, 61, 122, 0.08);
  --shadow-card: 0 10px 30px rgba(10, 61, 122, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: var(--text-dark);
  background-color: #fafbfc;
}

a {
  text-decoration: none;
}

/* ---------- HEADER / LOGO ---------- */
.site-header {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 20;
}

.navbar {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.logo-img {
  height: 55px;
  width: auto;
}

/* ---------- NAV ---------- */
.main-nav .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.90rem;
  padding: 0.6rem 1.2rem;
  position: relative;
  transition: color 0.2s ease;
}

.main-nav .nav-link.active,
.main-nav .nav-link:hover {
  color: var(--brand-blue);
}

.main-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.2rem;
  height: 2px;
  background-color: var(--brand-orange);
  border-radius: 2px;
}

.btn-register {
  background: linear-gradient(90deg, #ff4d5e, #ff8a3d);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 16px rgba(255, 77, 94, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-register:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 77, 94, 0.45);
}

/* ---------- CALL STRIP ---------- */
.call-strip {
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue));
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.call-strip a {
  color: #ffcf5c;
  font-weight: 700;
}

/* ---------- INFO STRIP / MARQUEE ---------- */
.info-strip {
  background-color: var(--brand-peach);
  border-bottom: 1px solid #f3ddc7;
  overflow: hidden;
}

.info-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.75rem;
  font-size: 0.9rem;
  color: var(--brand-red);
}

.info-list li {
  display: flex;
  align-items: center;
  font-size: 12px;
  gap: 0.45rem;
  white-space: nowrap;
}

.info-list li strong {
  color: var(--text-dark);
  font-weight: 700;
}

.info-list i {
  color: var(--brand-red);
  font-size: 0.75rem;
}

/* Marquee track - fades at edges so text doesn't look abruptly cut off */
.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}

.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.75rem;
  padding-right: 1.75rem;
  flex-shrink: 0;
  animation: marquee-scroll 22s linear infinite;
}

.marquee-track li {
  white-space: nowrap;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* col-lg-7 / col-lg-5 are d-flex in HTML, so both direct children
   (hero-img-wrap and project-detail-card) auto-stretch to the
   tallest column's height - no percentage-height chain needed. */

.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
}

.hero-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* Ribbon badge on image */
.ribbon-badge {
  position: absolute;
  top: 24px;
  left: 0;
  background: linear-gradient(90deg, rgba(45,90,39,0.92), rgba(74,138,66,0.85));
  color: #fff;
  padding: 0.65rem 1.75rem 0.65rem 1.1rem;
  border-radius: 0 30px 30px 0;
  z-index: 5;
  line-height: 1.25;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.ribbon-line1 {
  display: block;
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 400;
}

.ribbon-line2 {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  /* font-family: 'Playfair Display', serif; */
}

/* RERA stamp */
.rera-stamp {
  position: absolute;
  bottom: -22px;
  left: -18px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  border: 3px dashed var(--brand-red);
  color: var(--brand-red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  z-index: 5;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  text-align: center;
  font-size: 0.6rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.rera-stamp i {
  font-size: 1.4rem;
}

/* ---------- PROJECT DETAIL CARD ---------- */
.project-detail-card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.pd-header {
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue));
  color: #fff;
  padding: 1.1rem 1.4rem;
  border-bottom: 4px solid var(--brand-orange);
}

.pd-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.pd-header-hindi {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
}

.pd-list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pd-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f2f2f2;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background-color 0.2s ease;
}

/*.pd-list li:last-child {
  flex: 1;
}*/

.pd-list li:hover {
  background-color: #f8fafc;
}

.pd-list li i {
  color: var(--brand-red);
  margin-top: 0.2rem;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.pd-list li.pd-highlight {
  background-color: var(--brand-peach);
  font-weight: 700;
}

.pd-list li.pd-highlight:hover {
  background-color: var(--brand-peach);
}

/* ---------- FLOATING CALL NOW ---------- */
.call-now-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #ff416c, #ff8a00);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
  box-shadow: 0 6px 18px rgba(255, 65, 108, 0.4);
  z-index: 999;
  animation: pulse-call 2s infinite;
}

@keyframes pulse-call {
  0% { box-shadow: 0 0 0 0 rgba(255,65,108,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(255,65,108,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,65,108,0); }
}

/* ==========================================================
   RESPONSIVE - TABLET
========================================================== */
@media (max-width: 991.98px) {
    
    .reg-declaration label{
        font-size:8px!important;
    }
  .logo-img { height: 45px; }

  .main-nav .nav-link { font-size: 0.9rem; }

  .info-list { font-size: 0.82rem; gap: 0.5rem 1rem; }

  .hero-img { min-height: 340px; }

  .rera-stamp { width: 82px; height: 82px; }
  .rera-stamp i { font-size: 1.1rem; }

  .marquee-track { animation-duration: 18s; }

  /* stack columns on tablet/mobile - remove forced equal height */
  .col-lg-7,
  .col-lg-5 {
    display: block !important;
  }
}

/* ==========================================================
   RESPONSIVE - MOBILE (fonts chote)
========================================================== */
@media (max-width: 767.98px) {
  .logo-img { height: 36px; }

  .call-strip {font-size: 0.65rem;padding-top: 0.5rem;padding-bottom: 0.5rem;}

  .info-list { font-size: 0.72rem; gap: 0.4rem; }

  .hero-img { min-height: 220px; }

  .ribbon-badge { top: 14px; padding: 0.5rem 1.2rem 0.5rem 0.9rem; }
  .ribbon-line1 { font-size: 0.62rem; }
  .ribbon-line2 { font-size: 1rem; }

  .rera-stamp {
    width: 64px;
    height: 64px;
    bottom: -14px;
    left: -10px;
    font-size: 0.45rem;
  }
  .rera-stamp i { font-size: 0.9rem; }

  .pd-header { padding: 0.85rem 1.1rem; }
  .pd-header h3 { font-size: 1.05rem; }
  .pd-header-hindi { font-size: 0.72rem; }

  .pd-list li {
    font-size: 0.78rem;
    padding: 0.7rem 1rem;
  }

  .call-now-float {
    width: 54px;
    height: 54px;
    font-size: 0.55rem;
    bottom: 14px;
    right: 12px;
  }

  .marquee-wrap {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
  }

  .marquee-track {
    animation-duration: 16s;
    gap: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (max-width: 480px) {
  .btn-register { font-size: 0.78rem; padding: 0.55rem 1.1rem; }
  .pd-list li { font-size: 0.72rem; }
}
/* ---------- DATES SECTION ---------- */
.dates-section {
  background-color: #eef2f6;
}

.date-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 1.6rem 1.5rem 1.4rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(10, 61, 122, 0.08);
  border-bottom: 4px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.date-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(10, 61, 122, 0.14);
}

.date-label {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.date-value {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
}

/* Blue card */
.date-card-blue {
  border-bottom-color: var(--brand-blue);
}
.date-card-blue .date-label {
  color: var(--brand-blue);
}

/* Red card - subtle peach/pink background like the reference */
.date-card-red {
  background-color: #fdeeee;
  border-bottom-color: var(--brand-red);
}
.date-card-red .date-label {
  color: var(--brand-red);
}

/* Green card */
.date-card-green {
  border-bottom-color: var(--brand-green);
}
.date-card-green .date-label {
  color: var(--brand-green);
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .date-card {
    padding: 1.2rem 1rem 1rem;
  }
  .date-label {
    font-size: 0.75rem;
  }
  .date-value {
    font-size: 0.95rem;
  }
}
/* ---------- PAYMENT PLAN SECTION ---------- */
.payment-plan-section {
  background-color: #f7f7f7;
}

.pp-heading {
  color: var(--brand-blue-dark);
  font-weight: 700;
  font-size: 1.8rem;
  font-family: 'Poppins', sans-serif;
}

.pp-table-wrap {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow-x: auto;
}

.pp-table {
  margin-bottom: 0;
  min-width: 720px;
}

.pp-table thead th {
  background-color: var(--brand-blue-dark);
  color: #fff;
  font-weight: 700;
  border: 1px solid #ddd;
  font-size: 0.78rem;
  text-align: center;
  vertical-align: middle;
  padding: 0.65rem 0.6rem;
  /* border: none; */
  white-space: normal;
  line-height: 1.25;
}

.pp-table tbody td {
  text-align: center;
  vertical-align: middle;
  padding: 0.65rem 0.6rem;
  border: 1px solid #ddd;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--text-dark);
  border-color: #e9ecef;
  white-space: normal;
}

.pp-table tbody td:first-child {
  font-weight: 700;
  text-align: left;
}

.pp-table tbody tr:nth-child(even) {
  background-color: #f8fafc;
}

/* Note box */
.pp-note {
  background-color: #fdf2c8;
  border-left: 5px solid var(--brand-orange);
  border-radius: 6px;
  padding: 1rem 1.4rem;
  text-align: center;
}

.pp-note p {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.pp-note-hindi {
  color: var(--brand-green);
  font-weight: 600;
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .pp-heading {
    font-size: 1.15rem;
  }

  .pp-table {
    min-width: 620px;
  }

  .pp-table thead th {
    font-size: 0.65rem;
    padding: 0.5rem 0.45rem;
  }

  .pp-table tbody td {
    font-size: 0.7rem;
    padding: 0.5rem 0.45rem;
  }

  .pp-note {
    padding: 0.8rem 1rem;
  }

  .pp-note p {
    font-size: 0.7rem;
  }
}
/* ---------- ABOUT + ENQUIRE SECTION ---------- */
.about-enquire-section {
  background-color: #fff;
}

.about-heading {
  color: var(--brand-blue-dark);
  font-weight: 800;
  font-size: 1.8rem;
}

.about-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Enquiry card */
.enquiry-card {
  border: 1px solid #e6e6e6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.enquiry-header {
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue));
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  padding: 1.1rem 1rem;
}

.enquiry-form {
  padding: 1.5rem;
}

.enquiry-input {
  border: 1px solid #dfe3e8;
  border-radius: 8px;
  padding: 0.65rem 0.50rem;
  font-size: 0.8rem;
  font-family: 'Poppins', sans-serif;
  background-color: #fafbfc;
}

.enquiry-input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(10, 61, 122, 0.12);
  background-color: #fff;
}

.enquiry-textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-send {
  background: linear-gradient(90deg, var(--brand-green), #4a8a42);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: none;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-send:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(45, 90, 39, 0.3);
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .about-heading {
    font-size: 1.4rem;
  }

  .about-text {
    font-size: 0.85rem;
    line-height: 1.65;
  }

  .enquiry-header {
    font-size: 0.85rem;
    padding: 0.9rem 0.8rem;
  }

  .enquiry-form {
    padding: 1.1rem;
  }

  .enquiry-input {
    font-size: 0.8rem;
    padding: 0.65rem 0.85rem;
  }

  .btn-send {
    font-size: 0.85rem;
    padding: 0.75rem 0.9rem;
  }
}
/* ---------- LOCATION ADVANTAGE SECTION ---------- */
.location-advantage-section {
  background-color: #fff;
}

.la-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.la-map-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.la-heading {
  color: var(--brand-blue-dark);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3;
}

.la-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.la-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  border-bottom: 1px dashed #eee;
}

.la-list li:last-child {
  border-bottom: none;
}

.la-list li i {
  color: var(--brand-orange);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.la-time {
  margin-left: auto;
  color: var(--brand-blue);
  font-weight: 800;
}

.la-photo-strip .la-photo {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .la-heading {
    font-size: 1.25rem;
  }

  .la-text {
    font-size: 0.78rem;
    line-height: 1.65;
  }

  .la-list li {
    font-size: 0.78rem;
    padding: 0.4rem 0;
  }

  .la-time {
    font-size: 0.75rem;
  }

  .la-photo-strip .la-photo {
    height: 70px;
  }
}
/* ---------- SITE MAP SECTION ---------- */
.sitemap-section {
  background-color: #f7f9fb;
}

.sitemap-heading {
  color: var(--brand-blue-dark);
  font-weight: 700;
  font-size: 1.8rem;
}

.sitemap-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: zoom-in;
  max-width: 950px;
  margin: 0 auto;
}

.sitemap-img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.sitemap-img-wrap:hover .sitemap-img {
  transform: scale(1.04);
}

.sitemap-zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 61, 122, 0.55);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sitemap-img-wrap:hover .sitemap-zoom-overlay {
  opacity: 1;
}

.sitemap-zoom-overlay i {
  font-size: 2rem;
}

.sitemap-zoom-overlay span {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
}

/* Modal */
.sitemap-modal-content {
  background: transparent;
  border: none;
  position: relative;
}

.sitemap-modal-img {
  width: 100%;
  border-radius: var(--radius-md);
}

.btn-close-custom {
  position: absolute;
  top: -45px;
  right: 0;
  background: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--brand-blue-dark);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 10;
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .sitemap-heading {
    font-size: 1.25rem;
  }

  .sitemap-zoom-overlay i {
    font-size: 1.4rem;
  }

  .sitemap-zoom-overlay span {
    font-size: 0.75rem;
  }

  .btn-close-custom {
    top: -40px;
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
}
/* ---------- AMENITIES SECTION ---------- */
.amenities-section {
  background-color: #f1f3f6;
}

.amenities-heading {
  color: var(--brand-blue-dark);
  font-weight: 800;
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
}

.amenity-card {
  background-color: #fff;
  border: 1px solid #e2e6eb;
  border-radius: var(--radius-md);
  padding: 0.6rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(10, 61, 122, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(10, 61, 122, 0.12);
}

.amenity-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.7rem;
}

.amenity-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.amenity-card:hover .amenity-img {
  transform: scale(1.06);
}

.amenity-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .amenities-heading {
    font-size: 1.3rem;
  }

  .amenity-img {
    height: 90px;
  }

  .amenity-label {
    font-size: 0.72rem;
  }

  .amenity-card {
    padding: 0.45rem;
  }
}

/* ---------- RERA STAMP - FIXED ---------- */
.rera-stamp-fixed {
  position: fixed;
  bottom: 24px;
  left: 20px;
  width: 75px;
  height: 75px;
  z-index: 999;
}

.rera-stamp-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* ---------- FLOATING CALL NOW ---------- */
.call-now-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff416c, #ff8a00);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 18px rgba(255, 65, 108, 0.4);
  z-index: 999;
  animation: pulse-call 2s infinite;
}

@keyframes pulse-call {
  0% { box-shadow: 0 0 0 0 rgba(255,65,108,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(255,65,108,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,65,108,0); }
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .rera-stamp-fixed {
    width: 64px;
    height: 64px;
    bottom: 14px;
    left: 12px;
  }

  .call-now-float {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    bottom: 14px;
    right: 12px;
  }
}
/* ---------- CONTACT DETAILS SECTION ---------- */
.contact-details-section {
  background-color: #fff;
}

.cd-heading {
  color: var(--brand-blue-dark);
  font-weight: 800;
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
}

.cd-card {
  background-color: #fff;
  border: 1px solid #e6eaee;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cd-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.cd-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 14px rgba(10, 61, 122, 0.3);
  margin-bottom: 0.4rem;
}

.cd-label {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-muted);
}

.cd-value {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-blue-dark);
  text-decoration: none;
  word-break: break-word;
}

a.cd-value:hover {
  color: var(--brand-orange);
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .cd-heading {
    font-size: 1.3rem;
  }

  .cd-card {
    padding: 1.4rem 1rem;
  }

  .cd-icon {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }

  .cd-label {
    font-size: 0.68rem;
  }

  .cd-value {
    font-size: 0.85rem;
  }
}
/* ---------- FOOTER ---------- */
.site-footer {
  background-color: #0e1115;
  color: #cfd4da;
  position: relative;
}

.footer-links {
  font-size: 0.75rem;
  letter-spacing: 0.2px;
}

.footer-links a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand-orange);
}

.footer-divider {
  margin: 0 0.75rem;
  color: #4a5058;
}

.footer-hr {
  border-color: #2a2e34;
  opacity: 1;
  margin: 0;
}

.footer-text {
  font-size: 0.8rem;
  color: #cfd4da;
}

.footer-bank-heading {
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

.footer-bank-logo {
  max-height: 55px;
  width: auto;
}

.footer-disclaimer {
  border-top: 1px solid #2a2e34;
  font-size: 0.7rem;
  color: #8b929b;
}

/* Scroll to top button */
.scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 44px;
  height: 44px;
  background-color: var(--brand-blue-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.2s ease;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background-color: var(--brand-blue);
  color: #fff;
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .footer-links { font-size: 0.75rem; }
  .footer-divider { margin: 0 0.4rem; }
  .footer-text { font-size: 0.72rem; }
  .footer-bank-heading { font-size: 0.85rem; }
  .footer-bank-logo { max-height: 40px; }
  .footer-disclaimer { font-size: 0.65rem; }

  .scroll-top-btn {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
    bottom: 85px;
    right: 14px;
  }
}
/* ---------- TOP BAR - 50/50 SPLIT ---------- */
.top-bar {
  font-size: 0.85rem;
  color: #fff;
}

.top-bar-left,
.top-bar-right {
  flex: 1 1 50%;
  padding: 0.40rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-left {
  background: linear-gradient(90deg, var(--brand-green), #4a8a42);
  justify-content: flex-start;
}

.top-bar-right {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-dark));
  justify-content: flex-end;
}

.top-bar-right a {
  color: #fff;
  font-weight: 600;
}

.top-bar-right a:hover {
  color: #ffcf5c;
}

/* ---------- STICKY NAVBAR ---------- */
#mainNavbar {
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

#mainNavbar.nav-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  animation: navSlideDown 0.35s ease;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* prevent content jump when nav goes fixed */
body.nav-fixed-active {
  padding-top: 78px;
}

/* ---------- CUSTOM MOBILE TOGGLER ---------- */
.custom-toggler {
  border: none;
  background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  padding: 0;
}

.custom-toggler:focus {
  box-shadow: 0 0 0 3px rgba(10, 61, 122, 0.25);
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .top-bar {
    font-size: 0.62rem;
  }
  .top-bar-left,
  .top-bar-right {
    padding: 0.4rem 0.8rem;
  }
  .top-bar-left span,
  .top-bar-right span {
    display: none;
  }

  body.nav-fixed-active {
    padding-top: 62px;
  }

  .custom-toggler {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
    .btn-register-mobile
    {
            font-size: 11px!important;
    }
    .footer-links a
    {
        font-size: 10px;
    }
  .top-bar-left { font-size: 0.58rem; }
  .top-bar-right { display: none; }
}
.btn-register {
  animation: register-blink 1.8s ease-in-out infinite;
}

@keyframes register-blink {
  0%, 100% {
    box-shadow: 0 6px 16px rgba(255, 77, 94, 0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 26px rgba(255, 77, 94, 0.75);
    transform: scale(1.04);
  }
}
.btn-register:hover {
  animation-play-state: paused;
}
.btn-register {
  animation: register-blink-fade 1.5s ease-in-out infinite;
}

@keyframes register-blink-fade {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
/* Mobile-only compact registration button between logo & toggler */
.btn-register-mobile {
  padding: 0.5rem 0.7rem;
  font-size: 1.1rem;
  border-radius: 8px;
  margin-left: auto;
  margin-right: 0.2rem;
}
/* ==========================================================
   Privacy Policy Page Styles
========================================================== */

.policy-page {
  background-color: #fff;
}

.policy-hero {
  border-bottom: 2px solid #eee;
  padding-bottom: 1.5rem;
}

.policy-title {
  color: var(--brand-blue-dark);
  font-weight: 800;
  font-size: 2.2rem;
  font-family: 'Poppins', sans-serif;
}

.policy-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 1.1rem;
}

.policy-heading {
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.policy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.2rem;
}

.policy-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--brand-orange);
}

.policy-contact-list li {
  padding-left: 1.8rem;
  font-weight: 600;
}

.policy-contact-list li::before {
  display: none;
}

.policy-contact-list li i {
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--brand-blue);
  font-size: 0.9rem;
}

.policy-contact-list a {
  color: var(--brand-blue-dark);
}

.policy-contact-list a:hover {
  color: var(--brand-orange);
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .policy-title {
    font-size: 1.4rem;
  }
  .policy-updated {
    font-size: 0.72rem;
  }
  .policy-heading {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
  .policy-content p,
  .policy-list li {
    font-size: 0.8rem;
    line-height: 1.7;
  }
}
/* ==========================================================
   Registration Page Styles
========================================================== */

.reg-page {
  background-color: #f7f9fb;
}

.reg-title {
  color: var(--brand-blue-dark);
  font-weight: 800;
  font-size: 1.9rem;
  font-family: 'Poppins', sans-serif;
}

.reg-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Form sections */
.reg-form {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.reg-section {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eef1f4;
}

.reg-section:last-of-type {
  border-bottom: none;
}

.reg-section-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.reg-section-head h5 {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin: 0;
}

.reg-step {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reg-check-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-blue);
}

.reg-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  display: block;
}

.reg-input {
  border: 1px solid #dfe3e8;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  font-family: 'Poppins', sans-serif;
  background-color: #fafbfc;
}

.reg-input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(10, 61, 122, 0.12);
  background-color: #fff;
}

/* Plot size radio boxes */
.plot-option {
  display: block;
  cursor: pointer;
  margin: 0;
}

.plot-option input {
  display: none;
}

.plot-option-box {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border: 2px solid #dfe3e8;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  transition: all 0.2s ease;
}

.plot-option-box strong {
  font-size: 1rem;
  color: var(--text-dark);
}

.plot-option-box small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.plot-option input:checked + .plot-option-box {
  border-color: var(--brand-blue);
  background-color: #eef4fb;
  box-shadow: 0 0 0 3px rgba(10, 61, 122, 0.1);
}

/* Declaration */
.reg-declaration {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.reg-declaration a {
  color: var(--brand-blue);
  font-weight: 700;
}

.btn-reg-submit {
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue));
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 1rem;
  border-radius: 50px;
  font-size: 1rem;
  border: none;
  box-shadow: 0 8px 20px rgba(10, 61, 122, 0.25);
  transition: transform 0.2s ease;
}

.btn-reg-submit:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* Sidebar */
.reg-sidebar-card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.reg-sidebar-title {
  font-weight: 700;
  color: var(--brand-blue-dark);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.reg-info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px dashed #eee;
  font-size: 0.85rem;
}

.reg-info-list li:last-child {
  border-bottom: none;
}

.reg-info-list li span {
  color: var(--text-muted);
}

.reg-info-list li strong {
  color: var(--text-dark);
  text-align: right;
}

.reg-help-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brand-blue-dark);
  padding: 0.5rem 0;
}

.reg-help-link:hover {
  color: var(--brand-orange);
}

.reg-sidebar-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.btn-reg-enquiry {
  background: linear-gradient(90deg, var(--brand-green), #4a8a42);
  color: #fff;
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: none;
  font-size: 0.9rem;
}

.btn-reg-enquiry:hover {
  color: #fff;
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .reg-title { font-size: 1.2rem; }
  .reg-sub { font-size: 0.60rem; }
  .reg-form { padding: 1.1rem; }
  .reg-section-head h5 { font-size: 0.9rem; }
  .reg-step { width: 28px; height: 28px; font-size: 0.72rem; }
  .reg-label { font-size: 0.72rem; }
  .reg-input { font-size: 0.78rem; padding: 0.55rem 0.75rem; }
  .plot-option-box strong { font-size: 0.85rem; }
  .plot-option-box small { font-size: 0.68rem; }
  .btn-reg-submit { font-size: 0.85rem; }
}
/* Sticky sidebar - desktop only */
.reg-sidebar-sticky {
  position: sticky;
  top: 100px;
}

/* Locked/readonly permanent address fields visual feedback */
.reg-fields-locked .reg-input[readonly] {
  background-color: #eef1f4;
  color: var(--text-muted);
  cursor: not-allowed;
}

/* Mobile - sticky hata do, normal flow rahe */
@media (max-width: 991.98px) {
  .reg-sidebar-sticky {
    position: static;
    top: auto;
  }
}
/* Plot size radio boxes */
.plot-option {
  display: block;
  cursor: pointer;
  margin: 0;
}

.plot-option input {
  display: none;
}

.plot-option-box {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 2px solid #dfe3e8;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  min-height: 60px;
  transition: all 0.2s ease;
}

.plot-option-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.plot-option-text strong {
  font-size: 1rem;
  color: var(--text-dark);
}

.plot-option-text small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Custom radio dot */
.plot-radio-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #b7bec7;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}

.plot-radio-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--brand-blue);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}

/* Checked state */
.plot-option input:checked + .plot-option-box {
  border-color: var(--brand-blue);
  background-color: #eef4fb;
  box-shadow: 0 0 0 3px rgba(10, 61, 122, 0.1);
}

.plot-option input:checked + .plot-option-box .plot-option-text strong {
  color: var(--brand-blue-dark);
  font-weight: 800;
}

.plot-option input:checked + .plot-option-box .plot-radio-dot {
  border-color: var(--brand-blue);
}

.plot-option input:checked + .plot-option-box .plot-radio-dot::after {
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 767.98px) {
  .plot-option-box {
    min-height: 48px;
    padding: 0.7rem 0.8rem;
    gap: 0.5rem;
  }
  .plot-option-text strong {
    font-size: 0.85rem;
  }
  .plot-option-text small {
    font-size: 0.68rem;
  }
  .plot-radio-dot {
    width: 16px;
    height: 16px;
  }
  .plot-radio-dot::after {
    width: 8px;
    height: 8px;
  }
}
.general
{
    background-color: #ff565d;
    text-align: center;
    font-size: 19px;
    font-weight: 600;
    padding: 5px;
    color: #fff;
    letter-spacing: 0.2px;
}
.reserved
{
    background: linear-gradient(90deg, var(--brand-green), #4a8a42);
    text-align: center;
    font-size: 19px;
    font-weight: 600;
    padding: 5px;
    color: #fff;
    letter-spacing: 0.2px;
}
 .reserved-alert-strip {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 14px;
  background: #fff8e6;
  border: 1px solid #ffe08a;
  border-left: 4px solid #f0a500;
  border-radius: 6px;
  color: #8a6300;
  font-size: 14px;
  font-weight: 500;
}

.reserved-alert-strip.reserved-alert-show {
  display: flex;
  animation: fadeSlideIn 0.25s ease;
}

.reserved-alert-strip i {
  font-size: 16px;
  color: #f0a500;
}

.gender-mismatch-strip {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 14px;
  background: #fdeaec;
  border: 1px solid #f7c1c9;
  border-left: 4px solid #d9364a;
  border-radius: 6px;
  color: #a3283b;
  font-size: 13.5px;
  font-weight: 500;
}

.gender-mismatch-strip.gender-mismatch-show {
  display: flex;
  animation: fadeSlideIn 0.25s ease;
}

.gender-mismatch-strip i {
  font-size: 16px;
  color: #d9364a;
  flex-shrink: 0;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.payment-page {
  background: #f7f8fa;
  padding: 48px 16px;
}

.payment-card {
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.payment-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #e6f7ee;
  color: #1a9e5c;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 18px;
  line-height: 1.4;
}

.payment-title {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
  color: #1a1a1a;
}

.payment-reg-no {
  text-align: center;
  font-size: 12.5px;
  color: #888;
  margin-bottom: 18px;
}

.payment-reg-no strong {
  color: #0b5ed7;
}

.payment-details {
  text-align: left;
  margin-bottom: 16px;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 10px;
}

.payment-row span {
  color: #888;
  font-size: 12.5px;
  flex-shrink: 0;
}

.payment-row strong {
  font-size: 13.5px;
  color: #222;
  text-align: right;
  word-break: break-word;
  font-weight: 600;
}

.payment-amount-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f8ff;
  border: 1px solid #dbe7ff;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.payment-amount-box span {
  font-size: 13px;
  color: #555;
  font-weight: 500;
}

.payment-amount-box strong {
  font-size: 20px;
  color: #0b5ed7;
  font-weight: 700;
}

.btn-pay-now {
  width: 100%;
  padding: 13px;
  background: #0b5ed7;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease;
}

.btn-pay-now:hover {
  background: #0a4fc0;
}

.payment-hint {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .payment-page {
    padding: 32px 14px;
  }
}

@media (max-width: 480px) {
  .payment-card {
    padding: 22px 18px;
    border-radius: 10px;
  }
  .payment-title {
    font-size: 15.5px;
  }
  .payment-row {
    flex-direction: column;
    gap: 2px;
    padding: 7px 0;
  }
  .payment-row strong {
    text-align: left;
    font-size: 13px;
  }
  .payment-amount-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .payment-amount-box strong {
    font-size: 22px;
  }
  .btn-pay-now {
    font-size: 14px;
    padding: 12px;
  }
}