/* ================= GLOBAL RESET ================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
}

/* ================= GLOBAL SECTION SPACING ================= */
section {
  padding: 60px 0;
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
}

/* ================= NAVBAR ================= */
.custom-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  padding: 8px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  z-index: 1000;
}

.custom-navbar.scrolled {
  background: #000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* LOGO */
.navbar-logo {
  height: 60px;
  width: auto;
}

/* NAV LINKS */
.navbar-dark .nav-link {
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff !important;
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover {
  transform: scale(1.15);
}

/* ================= HERO SECTION (FIXED) ================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* REMOVE ANY OVERLAY / BLACK BOX */
.hero::after {
  display: none !important;
  content: none !important;
}

/* HERO IMAGE */
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;

  /* STOP SLIDER / PARALLAX */
  animation: none !important;
  transform: none !important;
  background-attachment: initial !important;
}

/* ================= BREADCRUMB (NO OVERLAP) ================= */
.breadcrumb-strip {
  position: relative;
  margin-top: 0;
  background: #fff;
  padding: 18px 0;
  z-index: 5;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= TITLES ================= */
.iconic-title {
  font-size: 48px;
  margin-bottom: 30px;
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
}

/* ================= ICONIC GRID ================= */
.iconic-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
  text-align: center;
}

.iconic-item {
  transition: 0.4s;
}

.iconic-item:hover {
  transform: translateY(-8px);
}

.iconic-item img {
  width: 60px;
  height: auto;
  margin-bottom: 12px;
}

/* ================= AMENITIES ================= */
.skyarc-amenities {
  height: 75vh;
  position: relative;
  padding-bottom: 40px;
}

.amenity-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.amenity-slide.active {
  opacity: 1;
}

.amenity-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* WHITE RECTANGLE CONTAINER */
.amenity-label {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);

  background: #ffffff;      /* ✅ ONLY WHITE BOX */
  padding: 8px 22px;

  display: flex;
  align-items: center;
  gap: 14px;

  border-radius: 10px;      /* smooth rectangle */
  box-shadow: none !important;
  border: none !important;
}

/* AMENITY TITLE */
.amenity-label span {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
}

/* ARROW BUTTONS */
.amenity-label button {
  background: transparent;   /* ❌ no black bg */
  border: none;              /* ❌ no rectangle border */
  color: #000;

  font-size: 22px;
  line-height: 1;
  cursor: pointer;

  padding: 0;
  margin: 0;

  box-shadow: none !important;
  outline: none !important;
}

/* HOVER EFFECT (SUBTLE) */
.amenity-label button:hover {
  opacity: 0.6;
}

/* REMOVE FOCUS RING COMPLETELY */
.amenity-label button:focus {
  outline: none !important;
  box-shadow: none !important;
}



.price-table-section {
  padding: 70px 0;
  background: #fff;
}

.price-table-wrap {
  border: 1px solid #e5e1d8;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table thead {
  background: #f7f3ec;
}

.price-table th {
  padding: 18px;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  border-bottom: 1px solid #e5e1d8;
  font-family:"FormaDJRDisplayNarrow-Thin-Testing";
}

.price-table td {
  padding: 18px;
  font-size: 16px;
  border-bottom: 1px solid #eee;
  font-family:"FormaDJRDisplayNarrow-Thin-Testing";
}

.price-table tbody tr:hover {
  background: #faf7f1;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}
.rera-strip {
  background: #f8f8f8;        /* light grey strip */
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 14px 0;
}

.rera-strip .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.rera-strip p {
  margin: 0;
  font-size: 14px;
  color: #000;
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
  text-align: center;
}

.rera-strip strong {
  color: #000;
  font-weight: 600;
}

.rera-strip span {
  color: #777;
  font-size: 13px;
  margin-left: 6px;
}
.project-price-table {
  max-width: 1000px;
  margin: 40px auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
}

.project-price-table table {
  width: 100%;
  border-collapse: collapse;
}

.project-price-table th {
  background: #777;
  color: #fff;
  padding: 18px;
  text-align: left;
  font-size: 20px;
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
}

.project-price-table td {
  padding: 18px;
  border-bottom: 1px solid #eee;
  font-size: 18px;
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
}

.project-price-table tr:last-child td {
  border-bottom: none;
}

.project-price-table tbody tr:hover {
  background: #f9f9f9;
}

/* Responsive */
@media(max-width: 768px) {
  .project-price-table table,
  .project-price-table thead,
  .project-price-table tbody,
  .project-price-table th,
  .project-price-table td,
  .project-price-table tr {
    display: block;
  }

  .project-price-table thead {
    display: none;
  }

  .project-price-table tr {
    padding: 20px;
    border-bottom: 1px solid #eee;
  }

  .project-price-table td {
    padding: 8px 0;
  }

  .project-price-table td::before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    color: #555;
  }
}
.location-section {
  padding: 100px 80px;
  background: #ffffff;
}

/* HEADING */
.section-heading {
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 48px;
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
  text-align: left;           /* 🔥 control maintained */
  letter-spacing: 1px;
}

/* WRAPPER */
.location-wrapper {
  display: flex;
  align-items: flex-start;     /* 🔥 better vertical balance */
  justify-content: space-between;
  gap: 80px;

}

/* LEFT CONTENT */
.location-content {
  width: 45%;
}

.location-item {
  padding: 22px 0;
  border-bottom: 1px solid #e6e6e6;
  transition: all 0.3s ease;
}

.location-item:last-child {
  border-bottom: none;
}

/* subtle hover polish */
.location-item:hover {
  padding-left: 10px;
}

.location-item .time {
  display: block;
  font-size: 17px;
  color: #b07a67;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.location-item p {
  font-size: 22px;             /* 🔥 more premium */
  font-weight: 500;
  color: #000;
  line-height: 1.4;
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";

}

/* RIGHT IMAGE */
.location-image {
  width: 50%;
}

.location-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2); /* 🔥 luxury depth */
}
.location-section .section-heading h2 {
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
  font-weight: 300;
}

/* ================= FLOOR PLAN ================= */
.floorplan-section {
  padding: 60px 0;
}

.floorplan-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 25px;
}

.floorplan-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
}

.fp-card {
  flex: 0 0 48%;
  position: relative;
}

.fp-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 14px;
}

.fp-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 6px 16px;
  font-size: 22px;
}

/* Arrows */
.fp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 5;
}

.fp-arrow.left { left: 40px; }
.fp-arrow.right { right: 40px; }

/* ================= FOOTER ================= */
/* Footer */
.footer{
  background:#000;
  box-shadow: 0 4px 15px rgba(63, 45, 45, 0.4);
   color:#fff;
  padding:60px 80px 30px;
  font-family: Poligon Regular, sans-serif;
}

/* TOP */
.footer-top{
  display:flex;
  gap:80px;
  align-items:flex-start;
}

/* Columns */
.footer-col{
  text-align:left;
}

.footer-logo{
  max-width:160px;
  margin-bottom:20px;
}

.footer-col p{
  font-size: 20px;
  line-height:1.7;
  opacity:0.85;
}

/* Lists */
.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col li{
  margin-bottom:12px;
}

.footer-col a{
  color:#fff;
  text-decoration:none;
  font-size: 20px;
}

.footer-col a:hover{
  opacity:0.7;
}

/* Headings */
.footer-col h4{
  font-size: 20px;
  margin-bottom:18px;
  font-weight:500;
}

/* Social */
.social-icons a{
  margin-right:15px;
  font-size: 20px;
}

/* Bottom */
.footer-bottom{
  margin-top:40px;
  padding-top:15px;
  border-top:1px solid #222;
  display:flex;
  justify-content:flex-end;
}    
.footer-bottom-right a{
  color:#fff;
  margin-left:20px;
  font-size:18px;
  text-decoration:none;
}
/* ================= POLICY POPUP OVERLAY ================= */

.policy-modal{
  position: fixed;
  inset: 0;
  display: none;                 /* JS se show/hide */
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}

/* ================= POPUP BOX ================= */

.policy-content{
  background: #fff;
  width: 90%;
  max-width: 650px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 10px;
  position: relative;

  /* 🔥 Control heading–paragraph gap here */
  --hp-gap: 28px;
}

/* ================= HEADING ================= */

.policy-content h2{
  margin-bottom: var(--hp-gap);
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
}

/* ================= PARAGRAPH ================= */

.policy-content p{
  margin-top: 0;
  margin-bottom: 18px;
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* ================= CLOSE BUTTON ================= */

.policy-close{
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #555;
  transition: color 0.3s ease;
}

.policy-close:hover{
  color: #000;
}

/* ================= SCROLLBAR (OPTIONAL PREMIUM) ================= */

.policy-content::-webkit-scrollbar{
  width: 6px;
}

.policy-content::-webkit-scrollbar-thumb{
  background: #ccc;
  border-radius: 10px;
}

.policy-content::-webkit-scrollbar-track{
  background: transparent;
}




