  
      :root {
      --primary: #d4af37;   /* Golden */
      --secondary: #8bc34a; /* Light Green */
      --dark: #2e2e2e;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #f9f9f9;
      scroll-behavior: smooth;
    }

    .section-title {
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 40px;
      text-align: center;
      color: var(--primary);
    }

    .navbar-brand {
      color: var(--primary) !important;
    }
    .nav-link:hover {
      color: var(--secondary) !important;
    }
    .fw-bold {
    font-weight: 700 !important;
    color: #d7b85c;
}

    .hero {
      min-height: 95vh;
      background: url('../images/banner.jpg') no-repeat center center/cover;
      position: relative;
      padding-top: 30px;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.55); /* Dark overlay */
    }
    .hero .container {
      position: relative;
      z-index: 2;
      width: auto;
    }
    @keyframes float { 0%,100%{transform:translateY(0)}50%{transform:translateY(-20px)} }

    .glass-card {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 15px;
   /*   padding: 25px;
      border: 1px solid var(--secondary);*/
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      transition: all 0.4s;
    }
    .glass-card:hover { transform: translateY(-10px) scale(1.05); }

    .price-box {
      border: 2px solid #fff;
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      transition: all 0.4s;
      background: #f3f3f3;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }
    .price-box:hover {
     background: #f9f9f9; 
     color:#000000; 
   }
    .btn-custom {
      background: #d7b85c;
      color: #fff;
      border-radius: 30px;
      padding: 12px 30px;
      transition: 0.3s;
    }
    .btn-custom:hover {
      background: var(--secondary);
      color: #fff;
    }

    .pulse-btn {
      animation: pulse 2s infinite;
      background-color: #e5ce73;
    }
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(212,175,55, 0.7); }
      70% { box-shadow: 0 0 0 20px rgba(212,175,55, 0); }
      100% { box-shadow: 0 0 0 0 rgba(212,175,55, 0); }
    }

    footer {
      background: var(--dark); 
      color:#ccc; 
      padding: 25px 0 5px; 
      text-align:center;
    }
    footer a { color: var(--primary); }

    .contact-icon {
      font-size: 30px;
      color: var(--secondary);
      margin-right: 15px;
    }
    .section-title1 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.amenity-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  .amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
.bg-light {
    background-color: rgb(255 255 255) !important;
}

li.mb-3.card-high {
    border: 1px #dfdfdf solid;
    padding: 4px;
    border-radius: 6px;
    margin-bottom: 15px !important;
    font-size: 18px;
    font-weight: 400;
}
li.mb-3.card-high i {
    margin: 0 10px;
}

    li.mb-3.card-high:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
}

.ico.mb-3 {
    padding: 10px 15px;
    background: #f9f9f9;
    border-left: 4px solid #b8860b; /* golden left border */
    border-radius: 6px;
    font-weight: 400;
    font-size: 18px;
    display: flex;
    align-items: center;
  }
  .contact-info h5 {
    color: #b8860b;
    font-weight: 600;
  }
  a.nav-link {
    font-size: 19px;
    color: #d1b052;
}
a.btn.btn-warning.btn-sm.d-flex.align-items-center {
    font-size: 16px;
    padding: 10px;
    background-color: #e5ce73;
    border-color: #e2ca6d;
        color: #fff;
}
a.btn.btn-success.btn-sm.d-flex.align-items-center {
  font-size: 16px;
  padding: 10px;
}


/* Floating icons for desktop */
.floating-icons {
  position: fixed;
  top: 65%;
  right: 15px;
  z-index: 1050;
}
.floating-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: transform 0.2s;
  text-decoration: none;
}
.floating-icons a:hover {
  transform: scale(1.1);
}
.floating-icons .whatsapp {
  background-color: #e5ce73;
}
.floating-icons .phone {
    background-color: #e5ce73;
}
.text-success {
    --bs-text-opacity: 1;
    color: rgb(229 206 115) !important;
}

/* Mobile bottom bar */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 1050;
}
.mobile-bottom-bar a {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.mobile-bottom-bar .whatsapp {
  background-color: #e5ce73;
  border-right: 0.5px solid;
}
.mobile-bottom-bar .phone {
  background-color: #e5ce73;
  border-left: 0.5px solid;
}

i.fa-solid.fa-road.text-warning.me-2 {
    color: #e5ce73 !important;
}
i.fa-solid.fa-building.text-warning.me-2 {
  color: #e5ce73 !important;
}
i.fa-solid.fa-train-subway.text-warning.me-2 {
  color: #e5ce73 !important;
}
i.fa-solid.fa-tree.text-warning.me-2 {
  color: #e5ce73 !important;
}

ul.navbar-nav.me-3 {
    margin-right: 40px !important;
    gap: 30px;
}
@media (max-width: 767px) {
  .pulse-btn {
    display: none !important;
  }
}



/* Mobile Devices */
@media (max-width: 575.98px) {
    .hero {
        min-height: 70vh;
        padding-top: 3rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .col-md-4, .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .price-box h4 {
        font-size: 1.25rem;
    }

    .price-box p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-title1 {
        font-size: 1.25rem;
    }

    .navbar-brand img {
        height: 50px;
    }

    .btn-custom {
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    footer p {
        font-size: 0.9rem;
    }
}



@media (max-width: 575.98px) {
  .btn-custom {
    padding: 12px 25px;
    font-size: 1rem;
  }
}


/* Stop horizontal scroll issue */
html, body {
  overflow-x: hidden;
}

/* Fix container spacing */
@media (max-width: 767px) {
    .container, .container-fluid {
  max-width: 100%;
  overflow-x: hidden;
  padding-left: 15px;
  padding-right: 15px;
 }
}

/* Images should not exceed screen */
@media (max-width: 767px) {
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
}

/* Prevent elements from overflowing */
@media (max-width: 767px) {
    .row {
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 20px;
    }
}
