:root {
  --bg:#0f1410;
  --card:#0f1a14;
  --accent1:#1d2d22;
  --accent2:#4b5d51;
  --gold1:#B47963;
  --gold2:#D4AF37;
  --muted:#c9d0c9;
  --radius:14px;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

* { box-sizing:border-box }
body {
  margin:0;
  background:#ffffff;
  color:var(--muted);
  line-height:1.45;
}

/* ===== HEADER ===== */
.gradient-text {
  background: linear-gradient(90deg, #c59d37, #a97159);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}
.subtitle { color: rgba(255, 255, 255, 0.85); }

/* KPI */
.kpi-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}
.kpi-box strong {
  display:block;
  color:#fff;
  font-size:23px;
  margin-bottom:4px;
}
.kpi-box span {
  color:rgba(255,255,255,0.8);
  font-size:13px;
}

/* Buttons */
.btn-gold {
  background: linear-gradient(to right, #c59d37, #a97159);
  color:#000;
  border:none;
  border-radius:8px;
}
.btn-gold:hover { opacity:0.9; }

.lead-form {
  background-color:#f8f9fa;
  border-radius:12px;
}

/* ===== GENERAL ===== */
.container { max-width:1200px; margin:28px auto; padding:0 20px; }
.card {
  background:#ffffff;
  padding:20px;
  border-radius:var(--radius);
  box-shadow:0 8px 30px rgba(3,6,3,0.6);
  border:1px solid rgba(255,255,255,0.03);
  margin-bottom:18px;
}
h2 { margin:0 0 12px; color:#000;}
.muted { color:var(--muted);}

.two-cols {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.feature-list {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.feature {
  background:#000;
  padding:12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.03);
}
.feature h3 {
  margin:0 0 6px;
  font-size:20px;
  color:#fff;
}
.feature p {
  margin:0;
  color:var(--muted);
  font-size:13px;
}


/* ===== FLOOR PLANS ===== */
.floor-plans-section {
  padding:40px 20px;
  background:#f9f9f9;
  color:#000;
}
.plans-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  margin-top:20px;
}
.plan {
  background:#fff;
  padding:20px;
  border-radius:10px;
  box-shadow:0 2px 6px rgba(0,0,0,0.1);
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  align-items:center;
}
.plan img {
  width:100%;
  max-height:200px;
  object-fit:cover;
  border-radius:5px;
  cursor: pointer;
  transition:transform 0.2s ease;
}
/* .plan img:hover { transform:scale(1.03); } */

.request-btn {
  margin-top:15px;
  padding:10px 20px;
  background:linear-gradient(90deg,#c59d37,#a97159);
  color:#000;
  border:none;
  border-radius:8px;
  cursor:pointer;
  font-weight:600;
  text-transform:uppercase;
  transition:background 0.3s ease;
}
.request-btn:hover {
  background:linear-gradient(90deg,#b9962c,#946550);
  border:1px solid #0d6efd;
}

/* ===== FLOOR PLAN MODAL ===== */
.floor-modal {
  display:none;
  position:fixed;
  z-index:9999;
  inset:0;
  background:rgba(0,0,0,0.6);
  justify-content:center;
  align-items:center;
  padding:20px;
}
.floor-modal.show { display:flex; }
.floor-modal .modal-content {
  background:#fff;
  padding:30px;
  border-radius:8px;
  width:100%;
  /* max-width:500px; */
  position:relative;
}
.floor-modal .close {
  position:absolute;
  top:10px;
  right:15px;
  font-size:24px;
  cursor:pointer;
}

/* ===== APARTMENT PLANS ===== */
.plan-img {
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:10px;
  display:block;
}
.plan-features {
  margin-top:8px;
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
  font-size:14px;
}
.plan-features span {
  display:flex;
  align-items:center;
  color:#000;
}
.plan-features i { margin-right:4px; color:#000; }
.plan-btn {
  width:100%;
  text-align:center;
  font-size:18px;
  margin-top:10px;
  background:linear-gradient(90deg,#c59d37,#a97159);
  color:#000!important;
  border:none;
  border-radius:8px;
}
.plan-btn:hover {
  background:linear-gradient(90deg,#b9962c,#946550);
  color:#fff!important;
}

/* ===== AMENITIES LIST ===== */
.amenities { margin-top:15px; }
.amen-list { list-style:none; padding:0; margin:0 0 20px; }
.amen-list li {
  margin-bottom:12px;
  font-size:15px;
  line-height:1.4;
  position:relative;
  padding-left:28px;
}
.amen-list li i {
  position:absolute;
  top:2px;
  left:0;
  font-size:16px;
}
@media (max-width:576px) {
  .amen-list li { font-size:14px; line-height:1.3; }
}

/* ===== GALLERY GRID ===== */
.gallery {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
}
.gallery img {
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:10px;
  cursor:pointer;
  display:block;
}


@media (max-width:767.98px) {
  .two-cols { display:flex; flex-direction:column-reverse; }
  .key-facts img {
    margin-bottom:20px;
    width:100%;
    height:auto;
    border-radius:5px;
  }
}

/* For Imges Open on Click */
/* Lightbox overlay */
#lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
}

#lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}

#projects {
    padding: 40px 5% 80px;
    background-color: #fff;
    color: #333;
    text-align: left;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(3, 6, 3, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 18px;
}

#projects h2 {
    font-size: 2.2rem;
    color: #B38F00;
    margin-bottom: 50px;
    letter-spacing: 1px;
    text-align: left;
    margin-top: 0;
    padding-left: 10px;
    display: inline-block;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    justify-items: center;
}

.project-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(179, 143, 0, 0.3);
}

.project-card .img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-card .info {
    padding:18px;
    text-align: left;
}

.project-card h3 {
    color: #B38F00;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight:700;
}

.project-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 6px;
}

.project-card span {
    display: block;
    font-size: 0.85rem;
    color: #888;
}

@media (max-width: 1200px) {
    .project-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
}

.plan-img,
.preview-image,
#supernova-gallery-images img {
    transition: transform 0.3s ease; 
}

.plan-img:hover,
.preview-image:hover,
#supernova-gallery-images img:hover {
    transform: scale(1.05);
}


/* Header Form CSS */
.btn-outline-primary {
    display: inline-block;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    border:1px solid #0d6efd;
    color: #fff;
    text-decoration: none;
}

.call-btn {
    display: inline-block;
    padding: 10px 28px;
    background: #000;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-btn:hover {
    background: #a97159;
    color: #ffffff;
     border:1px solid #0d6efd;
}

.call-btn:active {
    transform: scale(0.98);
}
.paragraph
{
  color:#000;
  font-size: 23px;
  font-weight: bold;
}

/* .modal-content input, .modal-content textarea

 {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: -10px;
} */
/* Other CSS Overhide  */

