 :root {
      --primary: #d8bb6f;
      /* Gold */
      --secondary: #1a1a1a;
      /* Dark Gray */
      --light: #f8f9fa;
      --dark: #212529;
      --text: #555;
      --transition: all 0.3s ease;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.6;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-weight: 700;
      color: var(--secondary);
      letter-spacing: -0.5px;
    }

    .bg-primary {
      background-color: var(--primary) !important;
    }

    .text-primary {
      color: var(--primary) !important;
    }

    .btn-primary {
      background-color: var(--primary);
      border-color: var(--primary);
      transition: var(--transition);
    }

    .btn-primary:hover {
      background-color: #9a754a;
      border-color: #9a754a;
      transform: translateY(-2px);
    }

    .btn-outline-primary {
      color: var(--primary);
      border-color: var(--primary);
      transition: var(--transition);
    }

    .btn-outline-primary:hover {
      background-color: var(--primary);
      border-color: var(--primary);
      color: white;
    }
	
	

.privacy-page {
	padding:60px 0 60px 0;
}

.thank-you 	{
	padding:140px 0 100px 0 !important;
}
	


.mobileform .contact-form form .row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobileform .contact-form form .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: var(--transition);
    margin: 15px 0 0 0;
}

.mobileform .contact-form h4{
	text-align:center;
}	

.mobileform .contact-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}


 
	
	
	
	
	
	
	
	
	
	
	
	
	

    /* Header */
   .navbar {
    padding: 5px 0;
    transition: var(--transition);
    background-color: #263b32;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .navbar-brand {
      font-weight: 700;
    }
	
	.navbar-brand img{
		width:120px;
	}

    .nav-link {
      font-weight: 500;
      position: relative;
	  color:#fff;
    }

    .nav-link:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--primary);
      transition: var(--transition);
    }
	
	.nav-link.active {
    color: #d8bb6f !important;
}

.nav-link:focus, .nav-link:hover {
    color: #d8bb6f;
}



    .nav-link:hover:after {
      width: 100%;
    }
	
	.slide {
		margin-top:70px;
	}

    /* Hero Section Styling */
    .hero {
      height: 100vh;
      min-height: 700px;
      background-color: #000;
      margin-top: 98px;
    }

    /* Slideshow Styling */
    .hero-slideshow {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .hero-slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
    }

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

    /* Overlay Styling */
    .hero-overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      /* background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%); */
    }

    /* Text Styling */
    .hero h1 {
      font-size: 3.5rem;
      line-height: 1.2;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    }

    .hero-subtitle {
      font-size: 1.8rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.9);
      margin-top: 0.5rem;
    }

    .hero-description {
      font-size: 1.2rem;
      max-width: 600px;
      line-height: 1.6;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
      opacity: 0.9;
    }

    /* Button Styling */
    .cta-button {
      transition: all 0.3s ease;
      border-radius: 50px;
      font-weight: 500;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    /* Animation */
    @keyframes popIn {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }

      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-pop-in {
      animation: popIn 0.8s ease-out forwards;
      opacity: 0;
    }

    /* Scroll Down Indicator */
    .scroll-down {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 1.5rem;
      animation: bounce 2s infinite;
    }

    @keyframes bounce {

      0%,
      20%,
      50%,
      80%,
      100% {
        transform: translateY(0) translateX(-50%);
      }

      40% {
        transform: translateY(-20px) translateX(-50%);
      }

      60% {
        transform: translateY(-10px) translateX(-50%);
      }
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 2.8rem;
      }

      .hero-subtitle {
        font-size: 1.5rem;
      }

      .hero-description {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 768px) {
	
	
	
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url(../image/menu.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
	
	a.navbar-brand img {
    width: 85px;
}

.slide {
    margin-top: 55px;
}
	
	
      .popup{
        display: none;
      }
      .hero {

        min-height: 600px;
        text-align: center;
        margin-top: -130px;
      }

      .hero h1 {
        font-size: 2.2rem;
      }

      .hero-subtitle {
        font-size: 1.3rem;
      }

      .hero-description {
        margin-left: auto;
        margin-right: auto;
      }

      .d-flex {
        justify-content: center;
      }
    }

    /* Section Styling */
    .section {
      padding: 80px 0;
    }

    .section-title {
      position: relative;
      margin-bottom: 50px;
      text-align: center;
      font-size: 2.5rem;
    }

    .section-title:after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: var(--primary);
      margin: 15px auto 0;
    }

    /* Features */
    .feature-box {
      padding: 30px;
      border-radius: 10px;
      background: white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
      height: 100%;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .feature-icon {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 20px;
    }

    /* Configurations */
    .unit-card {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
      margin-bottom: 30px;
      height: 100%;
      border: 1px solid rgba(0, 0, 0, 0.05);
		padding: 50px;
    }

   

    /* Amenities */
    .amenity-card {
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .amenity-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .amenity-image {
      height: 300px;
      background-size: cover;
      background-position: center;
      position: relative;
      transition: var(--transition);
    }

    .amenity-overlay {
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
      height: 100%;
      width: 100%;
      position: absolute;
      bottom: 0;
    }

    .amenity-overlay h3 {
      font-size: 1.5rem;
      letter-spacing: 1px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* Carousel Controls */
    .carousel-control-prev,
    .carousel-control-next {
      width: auto;
      opacity: 1;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-size: 1rem;
    }

    /* Gallery Styles */
    .gallery-card {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
      height: 100%;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .gallery-card img {
      width: 100%;
      height: 350px;
     
    }
   .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      opacity: 0;
      transition: var(--transition);
      display: flex;
      align-items: flex-end;
    }

    .overlay-content {
      padding: 20px;
      color: white;
      transform: translateY(20px);
      transition: var(--transition);
      width: 100%;
    }
    .gallery-lightbox {
      color: white;
      font-size: 1.5rem;
      background: var(--primary);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      opacity: 0;
      transition: var(--transition);
      display: flex;
      align-items: flex-end;
    }

    .overlay-content {
      padding: 20px;
      color: white;
      transform: translateY(20px);
      transition: var(--transition);
      width: 100%;
    }
   .overlay-content h5 {
      font-weight: 600;
      margin-bottom: 5px;
    }

    .overlay-content p {
      font-size: 0.9rem;
      margin-bottom: 10px;
    }



    .gallery-lightbox:hover {
      transform: scale(1.1);
      background: white;
      color: var(--primary);
    }

    .gallery-card:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-card:hover .overlay-content {
      transform: translateY(0);
    }

    .gallery-card:hover img {
      transform: scale(1.05);
    }
 
 
    /* Testimonials */
    .testimonial-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      margin: 15px;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .testimonial-text {
      font-style: italic;
      margin-bottom: 20px;
      position: relative;
    }

    .testimonial-text:before {
      content: '"';
      font-size: 4rem;
      color: var(--primary);
      opacity: 0.2;
      position: absolute;
      left: -15px;
      top: -20px;
    }

    .testimonial-author {
      font-weight: 700;
      color: var(--primary);
    }

    /* Contact Form */
    .contact-form {
      background: white;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 0, 0, 0.05);
    }
	
.devlogo {
    background: #fff;
    padding: 5px 5px 5px 5px;
    border-radius: 5px;
    width: 265px !important;
}

    /* Footer */
    footer {
      background: #263b32;
      color: white;
      padding: 60px 0 20px;
    }
	
	footer .text-primary{
		text-decoration:none;
	} 

    .footer-links a {
      color: #bbb;
      text-decoration: none;
      transition: var(--transition);
      display: block;
      margin-bottom: 10px;
    }

    .footer-links a:hover {
      color: white;
      padding-left: 5px;
    }

    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      border-radius: 50%;
      margin-right: 10px;
      transition: var(--transition);
      text-decoration: none;
    }

    .social-links a:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .section {
        padding: 60px 0;
      }

      .section-title {
        font-size: 2rem;
      }

      .hero {
        min-height: auto;
        padding: 100px 0;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .amenity-image {
        height: 200px;
      }

      .bank {
        margin-top: 100px;
      }
    }

    .btn-custom {
      min-width: 200px;
      /* Set your desired width */
      padding: 12px 24px;
      /* Match padding */
      text-align: center;
    }

    /* Walkthrough Section Styling */
    #walkthrough .section-title {
      margin-bottom: 1.5rem;
    }

   

    #walkthrough .lead {
      font-weight: 500;
      color: var(--secondary);
    }

    #walkthrough iframe {
      transition: var(--transition);
    }

    #walkthrough iframe:hover {
      transform: scale(1.02);
    }

    /* Amenities Section Styling */
    #amenities .amenity-card {
      background: white;
      transition: all 0.3s ease;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    #amenities .amenity-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    #amenities .amenity-icon {
      transition: transform 0.3s ease;
    }
	
	.amenity-icon img {
    width: 31px;
}

.location-advantage .bg-white img {
    width: 37px;
}

    #amenities .amenity-card:hover .amenity-icon {
      transform: scale(1.1);
    }

    #amenities h5 {
      font-weight: 600;
      color: var(--secondary);
    }

    /* Add this to your existing CSS */
    .about-content p {
      margin-bottom: 1.2rem;
      line-height: 1.7;
    }

    .stat-box {
      transition: all 0.3s ease;
      height: 100%;
    }

    .stat-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .stat-box h3 {
      font-size: 2.2rem;
      font-weight: 700;
    }

    .stat-box p {
      font-size: 0.9rem;
      color: #555;
    }

    .disclaimer {
      border-left: 4px solid var(--primary);
    }
    /* Floating Enquire Now Button */
.floating-enquire-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  transition: all 0.3s ease;
}

.floating-enquire-btn button {
  padding: 12px 24px;
  font-weight: 600;
  animation: pulse 2s infinite;
}

/* Pulse animation for attention */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(179, 139, 89, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(179, 139, 89, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(179, 139, 89, 0);
  }
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .floating-enquire-btn {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-enquire-btn button {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  /* For very small devices */
  @media (max-width: 480px) {
    .floating-enquire-btn {
      bottom: 15px;
      right: 15px;
    }
    
    .floating-enquire-btn button {
      padding: 8px 16px;
      font-size: 13px;
    }
  }
}