@font-face {
  font-family: 'collierthin';
  src: url('../fonts/fonnts.com-collier-thin-webfont.woff') format('woff2'),
    url('../fonts/fonnts.com-collier-thin-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}




@font-face {
  font-family: 'uni_neueregular';
  src: url('../fonts/fontfabric_-_unineueregular-webfont.woff2') format('woff2'),
    url('../fonts/fontfabric_-_unineueregular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

body {
  background: #000;
  color: #fff;
  font-family: 'collierthin';
}

.highlight-card h5 {
  font-size: 1rem;
  font-family: 'uni_neueregular';
  font-weight: normal !important;
}

/* Header */
header {
  background: #3a220a;
  color: #fff;
  padding: 14px 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.logo {
  position: absolute;
  color: gold;
  text-align: center;
  padding: 1px 39px 32px;
  width: auto;
}
.logo img {
  margin-right: 10px;
  width: 213px;
}
.logo span {
  font-size: 18px;
  font-weight: bold;
  color: #f5d76e;
  /* Gold */
}

/* Navbar */
nav {
  display: flex;
  float: right;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s;
  padding: 20px 10px;
}

nav ul li a:hover {
  color: #f5d76e;
  /* Gold Hover */
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  font-size: 34px;
  cursor: pointer;
  background: none;
  border: none;
  color: #fff;
  float: right;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: #3a220a;
    width: 220px;
    flex-direction: column;
    overflow: hidden;

    /* Animation setup */
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
  }

  nav.active {
    max-height: 400px;
    /* enough height for menu */
    opacity: 1;
  }

  nav ul {
    flex-direction: column;
    padding: 15px;
  }

  nav ul li {
    margin: 10px 0;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }
}

/* ================================
   Banner
================================ */
.banner {
  position: relative;
  height: auto;
  overflow: hidden;
}

.banner img {
  width: 100%;
}

.banner .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.banner h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #f5f5f5;
}

.banner p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #d4a373;
  /* brown highlight */
}

/* ================================
   Section Titles
================================ */
.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #ffe574;
  /* Brown accent */
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================================
   Highlights
================================ */
.highlight-card {
  background: #0d0d0d;
  /* Deep black */
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  transition: 0.3s;
  color: #f2f2f2;
}

.highlight-card:hover {
  transform: translateY(-5px);
  background: #1a1a1a;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.8);
}

.highlight-card h6 {
  color: #ffe574;
  /* Brown titles */
  font-weight: 600;
  text-align: center;
}

.highlight-card i {
  color: #ffe574;
  /* Brown icons */
}

/* ================================
   Badges
================================ */
.badge {
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 12px;
  background: #ffe574;
  color: #0d0d0d;
  font-weight: 600;
}

/* ================================
   Gallery
================================ */
.gallery img {
  border-radius: 0px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(184, 115, 51, 0.4);
  /* brown glow */
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 36px;
  padding: 16px;
  transition: 0.3s;
  user-select: none;
  font-weight: 400;
  text-decoration: none;
}

/* ================================
   Footer
================================ */
footer {
  background: #000000;
  padding: 40px 0;
  text-align: center;
  color: #bbb;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer a {
  color: #ffe574;
  /* Brown links */
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #e09f5c;
  /* lighter copper */
  text-decoration: underline;
}

/* ================================
   Buttons (extra utility)
================================ */
.btn-brown {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  background: #ffe574;
  color: #0d0d0d;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-brown:hover {
  background: #e09f5c;
  transform: translateY(-3px);
}

/* ===========================
   Overview Section (Black + Brown Theme)
   =========================== */
#overview {
  background: #000000;
  padding: 40px 20px;
  text-align: center;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: #fff !important;
}

.text-white {

  color: #ffe574 !important;
}

#overview h2 {
  color: #ffe574 !important;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#overview p {
  color: #ffffff !important;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

/* ================================
   Overview Boxes
================================ */
.overview-box {
  background: transparent !important;
  color: #fff;
  padding: 30px;
  border-radius: 0px;
  box-shadow: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
}

.text-info {
  color: #ffe574 !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.75) !important;
}

.overview-box h5 {
  color: #ffe574;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.overview-box i {
  color: #ffe574;
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

/* ================================
   Fact Cards
================================ */
.fact-card {
  background: #050000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.fact-card h5 {
  color: #ffe574;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.fact-card p {
  color: #ddd;
  font-size: 0.95rem;
}

.fact-card i {
  color: #ffe574;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

/* ================================
   Buttons
================================ */
.btn-brown {
  display: inline-block;
  padding: 12px 22px;
  border: none;
  border-radius: 8px;
  background: #ffe574;
  color: #0d0d0d;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-brown:hover {
  background: #e09f5c;
  transform: translateY(-3px);
}

/* ================================
   Divider Line (Accent)
================================ */
.section-divider {
  width: 80px;
  height: 4px;
  background: #ffe574;
  margin: 20px auto;
  border-radius: 2px;
}

/* Highlight Cards */
.highlight-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.highlight-card h6 {
  color: #ffe574;
  /* Brown heading */
}

.highlight-card p {
  color: #ccc;
  /* Light gray text */
}

.highlight-card i {
  color: #ffe574;
  padding: 0px;
  text-align: center;
  font-size: 46px !important;

}

.fact-card,
.highlight-card,
.overview-box {
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, background 0.3s ease;
}

.fact-card:hover,
.highlight-card:hover {
  transform: translateY(-6px);
  background: #1c0f01;
}

.project-highlights {
  background: #000000;
  color: #fff;
  height: auto;
  align-content: center;

}

.overview-box {
  border: none !important;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1rem;
  color: #9ca3af;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  background: #000;
  background-color: rgb(0, 0, 0);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease forwards;
  text-align: center;
  display: grid;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.badge {
  display: inline-block;
  background: #ff9100;
  color: #fff;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.highlight-card h5 {
  font-size: 1rem;
  font-weight: 600;
  padding-top: 20px;
}

.highlight-card h6 {
  font-size: 1.4rem;
  margin: 0.25rem 0 0.5rem;
  font-weight: 500;
  color: #ffe574;
}

.highlight-card p {
  font-size: 1.2rem;
  color: #d1d5db;
  line-height: 1.5;
  text-align: center;
}

.nav-link {
  padding: 20px 0px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery img {
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  animation: zoom 0.5s ease;
}

@keyframes zoom {
  from {
    transform: scale(0.7);
  }

  to {
    transform: scale(1);
  }
}

#caption {
  margin-top: 10px;
  color: #fff;
  font-size: 18px;
}

/* Close Button */
.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #ff4c4c;
}

/* Navigation */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 50px;
  padding: 16px;
  transition: 0.3s;
  user-select: none;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  color: #ff4c4c;
}

.amenities {
  background: #000000;
  color: #fff;

}

.sub-heading {
  font-size: 1rem;
  font-weight: 500;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 100px;
}

.amenity-card {
  background: #060606;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease forwards;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.amenity-icon {
  font-size: 2rem;
  color: #d9c464;
  margin-bottom: 1rem;
}

.amenity-card h5 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.amenity-card p {
  font-size: 0.9rem;
  color: #d1d5db;
  line-height: 1.5;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonials {
  background: #000000;
  color: #fff;
  height: auto;
  align-content: center;
  padding: 200px 0px !important;
}

#floorplans {
  height: 100vh;
  align-content: center;
  margin-bottom: 100px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
}

.rating-summary {
  font-size: 1rem;
  color: #a5b4fc;
}

.stars {
  font-size: 1.2rem;
  color: #facc15;
  /* gold stars */
}

.score {
  margin-left: 0.5rem;
  color: #9ca3af;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgb(0, 0, 0) !important;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #060606;
  border-radius: 14px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease forwards;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.testimonial-text {
  font-size: 0.95rem;
  color: #d1d5db;
  margin: 1rem 0;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #a5b4fc;
}

.testimonial-author .role {
  font-size: 0.85rem;
  color: #9ca3af;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Section */
#contact {
  background: #0d0d0d;
  color: #fff;
}

/* Section Title */
#contact .section-title {
  color: #ffe574;
  /* brown */
}

/* Map */
.map-box {
  border: 0px solid #ffe574;
  background: #1a1a1a;
}

/* Address Box */
.address-box {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.address-box h5 {
  color: #ffe574;
}

.address-box i {
  color: #ffe574;
}

/* Inquiry Form */
.form-box {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.form-box h5 {
  color: #ffe574;
}

.form-box i {
  color: #ffe574;
}

.form-control {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.form-control:focus {
  border-color: #ffe574;
  box-shadow: none;
  outline: none;
}

.btn-brown {
background: #3a220a;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px;
  transition: 0.3s;
}

.btn-brown:hover {
  background: #944d1c;
}

.navbar-brand {
  width: var(--size);
  width: var(--size);
  height: calc(var(--height));
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 100% 66%, 50% 100%, 0 66%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  font-weight: 700;
  position: absolute;
  height: 205px;
  background: #2d1700;
  width: 211px;
  padding: 48px 33px;
}

.navbar {
  flex-wrap: nowrap;
  justify-content: flex-start;
  background: #2d1700 !important;
}

.navbar-toggler {
  background: #f2c200 !important;
  color: #fff !important;
  padding: 10px;
  border-radius: 0px;
}

.navbar-toggler span svg {
  vertical-align: middle;
  fill: #fff;
}

.navbar {
  padding: 0px !important;
}

/* ✅ Mobile view only (≤ 991px) */
@media (max-width: 991px) {
  .navbar-brand {
    width: var(--size);
    width: var(--size);
    height: calc(var(--height));
    background: var(--bg);
    clip-path: none !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-weight: 700;
    height: auto !important;
    background: #2d1700;
    width: 211px;
    padding: 0px !important;
    margin-top: 0px !important;
  }

  #floorplans {
    height: auto;
    align-content: center;
  }

  nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: #3a220a;
    width: 100% !important;
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
  }

  #overview {
    background: #000000;
    padding: 0px 0px !important;
    text-align: center;
  }

  header {

    padding: 0px 20px !important;

  }

  .highlight-card i {
    color: #ffe574;
    font-size: 42px;
    font-weight: bold;
    padding: 13px;
    text-align: center;
  }

  .address-box {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    margin-bottom: 13px;
    margin-top: 13px;
    

  }

  .section-title {
    font-size: 2rem;
    font-weight: 700;
  }

  .map-box {
    border: 0px solid #ffe574;
    background: #1a1a1a;
    margin: 0px 35px;
    border-radius: 30px;
  }

  .highlight-card h6 {
    font-size: 1.4rem;
    margin: 0.25rem 0 0.5rem;
    font-weight: 500;
    color: #ffe574;
  }

  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 0rem !important;
  }

  .logo img {
    margin: 10px;
  }

  .gallery div {
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .highlight-card {
    margin-bottom: 10px;
  }

  .logo {
    position: absolute;
    background: #3a2311;
    color: gold;
    text-align: center;
    padding: 0px !important;
    clip-path: none;
    width: auto;
  }
}

.form-box {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  margin: 20px;
}

.address-box {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  margin: 0px 20px 20px ;
  text-align: center;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: 0px !important;
  margin-left: 0px !important;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}