
 /* --------------------------
   PROJECT PAGE HERO SECTION (DARK MODE)
   -------------------------- */
.pjt-hero-sec{
  padding: 120px 0 40px; 
  background: #0b0f19;     /* deep dark navy-black */
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}

@media(max-width: 768px){
  .pjt-hero-sec{ padding: 110px 0 32px; }
}

/* Breadcrumb */
.pjt-breadcrumb{
  margin-bottom: 10px;
}

.pjt-breadcrumb ol{
  list-style: none;
  padding: 0;
  margin: 0;
  display:flex;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
}

.pjt-breadcrumb ol li{
  color: rgba(255,255,255,0.75);
  position: relative;
}

.pjt-breadcrumb ol li:not(.active)::after{
  content: "/";
  margin-left: 6px;
  color: rgba(255,255,255,0.35);
}

.pjt-breadcrumb a{
  color: #4fa6ff;                /* soft blue for dark bg */
  text-decoration: none;
  font-weight: 600;
}

.pjt-breadcrumb a:hover{
  text-decoration: underline;
}

.pjt-breadcrumb .active{
  color: #ffffff;
  font-weight: 700;
}

/* Title */
.pjt-title{
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.4px;
}

/* Subtitle */
.pjt-sub{
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 720px;
}






    /* -----------------------------------------------------------
   PROJECT OVERVIEW & FEATURES — General / Reusable Styles
   ----------------------------------------------------------- */

/* variables (keep in global if possible) */
:root{
  --proj-bg: #ffffff;
  --proj-card-bg: #ffffff;
  --proj-text: #222222;
  --muted: #6b7280;
  --primary-red: #d71c1c;
  --secondary-blue: #1169ad;
  --card-shadow: 0 12px 40px rgba(11,17,30,0.06);
}

/* Section base */
.project-overview-section,
.project-features-section{
  background: var(--proj-bg);
  color: var(--proj-text);
}

/* Project title/subtitle */
.proj-title{
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3.6vw, 34px);
  margin-bottom: 6px;
}
.proj-subtitle{
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 15px;
}

/* Headings inside project */
.proj-heading{
  font-family: 'Playfair Display', serif;
  margin-top: 6px;
  margin-bottom: 10px;
  font-size: 20px;
}

/* Quick facts card (right column) */
.proj-quickcard{
  background: var(--proj-card-bg);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(18,22,30,0.04);
}
.quickcard-title{
  margin: 0 0 12px 0;
  font-weight:700;
  color: var(--proj-text);
}

/* Quick facts list */
.quick-facts li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:8px 0;
  border-bottom: 1px dashed rgba(18,22,30,0.03);
  font-size:14px;
}
.quick-facts li:last-child{ border-bottom:none; }
.fact-label{ color: var(--muted); font-weight:600; }
.fact-value{ font-weight:700; color: var(--proj-text); }

/* status badge */
.badge-status{
  background: linear-gradient(90deg, var(--secondary-blue), #0a5a8f);
  color:#fff;
  padding:4px 8px;
  font-size:12px;
  border-radius:6px;
  font-weight:700;
}

/* project CTA buttons (reusable) */
.btn-project-cta{
  background: linear-gradient(90deg, var(--primary-red), #b31313);
  color:#fff !important;
  border: none;
  border-radius:0;
  padding:10px 16px;
  font-weight:700;
  text-transform:uppercase;
  box-shadow: 0 10px 28px rgba(0,0,0,0.16);
}
.btn-outline-project{
  background: transparent;
  border:1px solid rgba(18,22,30,0.06);
  color: var(--secondary-blue);
  padding:10px 16px;
  border-radius:6px;
  font-weight:700;
}

/* Project bullets and body */
.proj-body p{ color:#444; line-height:1.7; margin-bottom:12px; font-size:15.5px; }
.proj-body ul{ margin-left:18px; }

/* -----------------------------
   FEATURES GRID (reusable)
   ----------------------------- */
.section-title{
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom:6px;
}
.section-sub{ color: var(--muted); margin-bottom:18px; }

/* Feature card */
.feature-card{
  background:#fff;
  border-radius:10px;
  padding:18px;
  box-shadow: var(--card-shadow);
  height:100%;
  transition: transform .22s ease, box-shadow .22s ease;
}
.feature-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(11,17,30,0.12);
}

/* Feature icon */
.feature-icon{
  width:58px;
  height:58px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, rgba(17,105,173,0.04), rgba(215,28,28,0.02));
  color: var(--primary-red);
  font-size:26px;
  margin-bottom:12px;
}

/* Feature title/desc */
.feature-title{ font-size:18px; margin-bottom:8px; font-weight:700; }
.feature-desc{ color:#444; font-size:14.5px; line-height:1.65; }

/* Responsive tweaks */
@media (max-width: 991px){
  .project-overview-section{ padding-top:20px; padding-bottom:20px; }
  .proj-title{ font-size:24px; }
  .feature-icon{ width:50px; height:50px; font-size:22px; }
}

/* small helper to keep spacing consistent if nav is transparent */
.project-overview-section { padding-top: 28px; padding-bottom: 36px; }
.project-features-section { padding-top: 28px; padding-bottom: 36px; }







    /* PROJECT GALLERY - reusable styles */
.proj-gallery-section { background: #faf9f8; color: #222; }
.section-title{ font-family:'Playfair Display', serif; font-size:22px; margin-bottom:6px; }
.section-sub{ color: #6b7280; margin-bottom:18px; }

/* Thumbnails grid */
.proj-gallery-grid .gallery-item{
  display:block;
  position:relative;
  overflow:hidden;
  border-radius:8px;
  box-shadow: 0 10px 30px rgba(11,17,30,0.06);
  cursor: pointer;
  background:#fff;
}
.proj-gallery-grid .gallery-item img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
  transition: transform .45s ease, filter .35s ease;
  filter: grayscale(6%);
}
.proj-gallery-grid .gallery-item figcaption{
  padding:10px;
  font-size:13px;
  color:#333;
  background: #fff;
}

/* Hover / focus */
.proj-gallery-grid .gallery-item:hover img,
.proj-gallery-grid .gallery-item:focus img{
  transform: scale(1.06);
  filter: none;
}
.proj-gallery-grid .gallery-item:focus{ outline: 3px solid rgba(17,105,173,0.08); outline-offset:4px; }

/* make thumbnails taller on large screens */
@media(min-width:992px){
  .proj-gallery-grid .gallery-item img{ height:150px; }
}

/* Modal gallery - dark transparent background and centered captions */
.modal .modal-content{ background: transparent; border: none; }
.modal .modal-body{ padding:0; position:relative; }

/* Carousel caption styling */
.carousel-caption{
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.18));
  bottom: 0;
  left:0;
  right:0;
  padding: 16px;
  text-align:left;
}
.carousel-caption h5{ margin:0; color:#fff; font-weight:700; font-family:'Playfair Display', serif; }

/* Close button styling (top-right) */
.gallery-modal-close{
  position:absolute;
  top:14px;
  right:16px;
  z-index:1051;
  background: rgba(0,0,0,0.5);
  color:#fff;
  border-radius:6px;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:none;
}

/* Ensure carousel images cover the modal area nicely */
.carousel-item img{ width:100%; height:75vh; object-fit:cover; }

/* Fullscreen behavior on small devices */
@media(max-width:575px){
  .carousel-item img{ height:60vh; object-fit:cover; }
  .proj-gallery-grid .gallery-item img{ height:140px; }
}








    /* ============================
   INVENTORY & RERA STYLES (GENERAL)
   Reusable across project pages
   ============================ */

/* Section base */
.project-inventory-section{ background: #ffffff; color: #222; padding-top:36px; padding-bottom:36px; }
.rera-details-section{ background: #fbfbfb; color: #222; padding-top:36px; padding-bottom:36px; }

/* headings/reuse */
.section-title{ font-family:'Playfair Display', serif; font-size:22px; margin-bottom:6px; }
.section-sub{ color: #6b7280; margin-bottom:18px; }

/* Inventory table card */
.inventory-wrap{ border-radius:10px; background:#fff; box-shadow: 0 12px 40px rgba(11,17,30,0.06); border:1px solid rgba(18,22,30,0.04); }
.inventory-table thead th{ border-bottom: 2px solid rgba(18,22,30,0.05); font-weight:700; background:transparent; }
.inventory-table tbody td{ border-top: none; vertical-align: middle; }

/* Muted helper */
.muted{ color: #6b7280; }

/* Badges (availability) */
.badge-available{
  background: linear-gradient(90deg, #2fbf71, #1e9e55);
  color:#fff;
  padding:6px 8px;
  border-radius:6px;
  font-weight:700;
  font-size:13px;
}
.badge-limited{
  background: linear-gradient(90deg, #ffb020, #d68a00);
  color:#fff;
  padding:6px 8px;
  border-radius:6px;
  font-weight:700;
}
.badge-reserved{
  background: linear-gradient(90deg, #6b7280, #51565a);
  color:#fff;
  padding:6px 8px;
  border-radius:6px;
  font-weight:700;
}

/* rera card */
.rera-card{ background:#fff; border-radius:10px; border:1px solid rgba(18,22,30,0.04); box-shadow: 0 12px 30px rgba(11,17,30,0.06); }
.rera-row{ display:flex; gap:18px; flex-wrap:wrap; align-items:center; }
.rera-item{ min-width:140px; }
.rera-label{ font-size:13px; color:var(--muted); font-weight:600;}
.rera-value{ font-weight:700; color:#111; }

/* documents list */
.rera-doc-list li{ padding:10px 0; border-bottom:1px dashed rgba(18,22,30,0.04); }
.rera-doc-list li:last-child{ border-bottom:none; }
.rera-doc-list a{ color: var(--secondary-blue); text-decoration:none; font-weight:700; }
.rera-doc-list .doc-meta{ margin-left:8px; color:var(--muted); }

/* rera-cta aside */
.rera-cta{ background:#fff; border-radius:10px; box-shadow: 0 12px 40px rgba(11,17,30,0.06); border:1px solid rgba(18,22,30,0.04); }
.rera-cta .btn { border-radius:0; font-weight:700; }

/* small responsive tweaks */
@media (max-width:991px){
  .inventory-table thead th{ font-size:13px; }
  .rera-row{ gap:12px; }
  .rera-item{ min-width:120px; }
  .inventory-table tbody td{ font-size:14px; }
}

/* Accessibility: focus for action links */
.inventory-table a:focus, .rera-doc-list a:focus, .rera-cta a:focus { outline: 3px solid rgba(17,105,173,0.1); outline-offset:4px; border-radius:4px; }

