  
    .nav-link.active {
    font-weight: 600;
    color: #c8a142 !important; /* gold tone or your brand color */
    border-bottom: 2px solid #c8a142;
    }

  .navbar-nav .nav-link {
    font-weight: 600;
    color: #000;
    transition: color 0.3s ease, background-color 0.3s ease;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    color: #d4af37 !important;
    background-color: rgba(212, 175, 55, 0.05);
    border-radius: 4px;
  }

  .navbar-nav .nav-link:active {
    background-color: rgba(212, 175, 55, 0.1);
    color: #d4af37 !important;
  }
  
  /* Fixed full-page background video */
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* Video section height */
.video-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rounded-heading {
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  color:#c68922;
  padding: 1rem 2rem;
  border-radius: 2rem; /* Round the corners */
  font-weight: 900; /* Extra bold */
  font-family: 'Poppins', sans-serif; /* Optional: use a modern rounded font */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Soft shadow */
}


/* About Reveal animation */
.about-reveal {
  clip-path: circle(0% at 50% 100%);
  opacity: 0;
  transition: clip-path 1s ease-out, opacity 1s ease-out;
  color: white;
}

.about-reveal.reveal-active {
  clip-path: circle(150% at 50% 50%);
  opacity: 1;
}

.pillars-section {
  background-color: #fff; /* or any non-transparent color */
  color: #000;
}


    .pillars-section .pillar-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: transform 0.3s ease;
    height: 100%;
    }

    .pillars-section .pillar-card:hover {
    transform: translateY(-5px);
    }

    .pillar-image {
    background-size: cover;
    background-position: center;
    height: 300px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
    cursor: pointer;
    }

    #imageModal {
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    }

    #imageModal img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    }

    #imageModal .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    }
    /* Modal container */
    .modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    padding: 1rem;
    }

    /* Modal image */
    .modal-content-img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    background-color: #fff;
    }

    /* Close button */
    .modal .close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1060;
    }

    .modal .close:hover {
    color: #d4af37;
    }



    .zoom-image {
        transition: transform 0.3s ease-in-out;
    }

    .zoom-image:hover {
        transform: scale(1.05);
    }

    .property-img {
        height: 300px;
        object-fit: cover;
    }

    .property-features {
    margin-top: 1rem;
    padding: 0;
    list-style: none;
    gap: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    }

    .property-features .feature {
    background-color: #f1f1f1;
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
    }

    .property-features .feature:hover {
    background-color: #fef5dc; 
    }

    .property-features .feature img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    }

  .modal {
    display: flex;
  }

  .modal-content {
    animation: zoomIn 0.3s ease;
  }

  @keyframes zoomIn {
    from {
      transform: scale(0.7);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  .explore-section,
  .proposed-section {
    background-color: #f8f9fa;
  }

  .swiper-button-next,
  .swiper-button-prev {
    color: #000;
  }

  .proposed-slide-img {
    height: 700px;
    width: 100%;
    object-fit: cover;
    border-radius: 0.375rem;
  }

  .blogs-section {
    background-color: #fdf5e6;
  }

  .blogs-section .blog-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .inspection-section {
    background-color: #fff8e1;
  }

  /* Newsletter Section Styles */
  .newsletter-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
  }

  .newsletter-section h1 {
    font-size: 2rem;
    font-weight: bold;
  }

  .newsletter-section p {
    font-size: 1.1rem;
    color: #555;
  }

  .newsletter-section form .form-control {
    border-radius: 0.375rem;
    padding: 1rem;
    font-size: 1rem;
  }

  .newsletter-section form .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-radius: 0.375rem;
  }

  .footer-section {
    background-color: #101010;
  }

  .footer-logo {
    max-height: 60px;
  }

  .social-icons a {
    display: inline-block;
    color: #fff;
    font-size: 1.2rem;
    margin: 0 8px;
    transition: color 0.3s ease;
  }

  .social-icons a:hover {
    color: #d4af37; /* gold */
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #fff;
  }

  .newsletter-form input[type="email"] {
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #444;
  }

  .newsletter-form input::placeholder {
    color: #ccc;
  }

  .footer-bottom {
    background-color: #0a0a0a;
    font-size: 0.9rem;
    border-top: 1px solid #333;
  }

  /* services */
  header.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('img/frame-13.png') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    position: relative;
    min-height: 40vh;


    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0; 
    }

    header.hero .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    }


    header.hero h1 {
      font-size: 3rem;
      font-weight: bold;
    }
    


  @media (max-width: 768px) {

    .video-section {
        height: 250px; 
    }

  .video-section video {
    height: 100%;
  }
    .pillar-image,
    .unsplash-chfjabwyu {
      height: 200px;
    }

    .property-image img {
      height: 180px;
    }
    .property-features .feature {
        font-size: 0.85rem;
        padding: 0.35rem 0.6rem;
    }

    .property-features .feature img {
        width: 18px;
        height: 18px;
    }

    .proposed-slide-img {
      height: 200px;
    }

    .newsletter-section form .form-control,
    .newsletter-section form .btn {
      width: 100%;
    }

    .footer-section .text-center {
      text-align: center !important;
    }
  }
  
.visual {
  padding: 30px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.visual h2 {
  font-family: "Inria Serif", serif;
  font-size: 36px;
  color: #5f5b5b;
  margin-bottom: 30px;
}

.property-display {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.overview {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: left;
}

.overview h2 {
  font-family: "Inria Serif", serif;
  font-size: 42px;
  font-weight: 300;
  color: #5f5b5b;
  margin-bottom: 20px;
}

.overview .feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.overview .feature img {
  width: 60px;
  height: 60px;
}

.overview .feature p {
  font-family: "Times New Roman", serif;
  font-size: 18px;
  color: #000;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.9px;
}
.floor-plans {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Times New Roman", serif;
  color: #000;
}

.floor-plans h2 {
  font-family: "Inria Serif", serif;
  font-size: 42px;
  font-weight: 300;
  color: #d69a2b;
  margin-bottom: 30px;
  text-align: center;
}

.plan-selector {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.plan-selector button {
  padding: 10px 20px;
  font-size: 16px;
  border: 1px solid #d69a2b;
  background: transparent;
  color: #ecebe8;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.plan-selector button.active,
.plan-selector button:hover {
  background-color: #d69a2b;
  color: #fff;
}

.plan-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.plan-details h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.plan-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.plan-details ul li {
  font-size: 16px;
  line-height: 28px;
}

.plan-details ul li span {
  font-weight: bold;
  color: #d69a2b;
}

.plan-details img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

h2 {
  font-family: "Inria Serif", serif;
  font-weight: 300;
  font-size: 42px;
  color: #5f5b5b;
  margin-bottom: 1rem;
}

.description p {
  font-size: 18px;
  max-width: 600px;
}

.property-display {
  margin-top: 2rem;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature img {
  width: 60px;
  height: 60px;
}



.plan-details {
  display: flex;
  justify-content: space-between;
}

.plan-details h3 {
  font-family: "Inria Serif", serif;
  font-size: 42px;
  color: #d69a2b;
  margin-bottom: 1rem;
}

.plan-details ul {
  list-style-type: none;
  padding: 0;
}

.plan-details li {
  margin-bottom: 1rem;
}

.plan-details span {
  font-weight: 700;
  margin-right: 0.5rem;
}

.amenities ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  list-style-type: none;
  padding: 0;
}

.amenities li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.amenities img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.property-info c{
  color:#d69a2b;
}
.contact {
  display: flex;
  gap: 4rem;
}

.contact-info h2 span {
  display: block;
  font-weight: 700;
}

.contact-info ul {
  list-style-type: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 1rem;
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 0.5rem;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input[type="text"],
.contact-form input[type="tel"] {
  padding: 0.5rem;
  border: 1px solid #000000;
  border-radius: 5px;
}

.contact-form fieldset {
  border: none;
  padding: 0;
}

.contact-form legend {
  margin-bottom: 0.5rem;
}

.contact-form label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1rem;
}

.contact-form button {
  background-color: #5f5b5b;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #d69a2b;
}
.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #d69a2b;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 0.8s linear infinite;
  margin: 1rem auto;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.map img {
  width: 100%;
  height: auto;
}
.btn-primary {
  background-color: #d69a2b;
  border-color: #d69a2b;
}

.btn-primary:hover {
  background-color: #c68922;
  border-color: #c68922;
}

.cont-options {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.cont-button {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 15px;
  position: relative;
  flex: 0 0 auto;
  background-color: #5f5b5b;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cont-button:hover,
.cont-button:focus {
  background-color:goldenrod;
  color: white;
}

.but-text {
  position: relative;
  width: fit-content;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.icon-wraper {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .cont-options {
    flex-direction: column;
    gap: 10px;
  }

  .cont-button {
    width: 100%;
  }
}
.floating-icons {
  position: fixed;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.floating-icons.show {
  opacity: 1;
  pointer-events: auto;
}

.hidden {
  display: none;
}

    @keyframes floatUpDown {
      0%, 100% {
        transform: translateY(-50%) translateY(-10px);
      }
      50% {
        transform: translateY(-50%) translateY(10px);
      }
    }