/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




#download-brochure-container {
    display: inline-block;
    margin-left: 20px; /* Adjust as needed */
}

#download-brochure-btn {
    background-color: #cda549; /* Style it similarly to the other buttons */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

#download-brochure-btn:hover {
    background-color: #b78b34; /* Darken on hover */
}





@font-face {
    font-family: 'Jost';
    src: url('/font/Jost-Italic-VariableFont_wght.ttf') format('truetype'),
         url('/font/Jost-VariableFont_wght.ttf') format('truetype');
    
    
    
    font-weight: 100 900; /* Specifies the weight range of the variable font */
    font-style: normal;
}

/* Apply the font */
body {
    font-family: 'Jost', sans-serif;
    font-weight: 400; /* Default weight */
}

/* For bold text */
h1, h3, h4, h5, h6 {
    font-weight: 600; /* Adjust the weight as needed */
}


h2 {font-size: 40px;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
  color: #272566;}







body {
    
	background-color: white;
}



html {
    scroll-padding-top: 150px; /* Adjust this value according to your navbar height */
}


.call-info {
    display: none;
  color: black;
  font-size: 14px;
  margin-left: 20px;
  margin-top: 2px;
  background: #cda549;
  padding: 5px;
  border-radius: 10px;
}

/* Show the phone number only on screens larger than 768px */
@media (min-width: 768px) {
    .call-info {
        display: block;
    }
}

/* Header */
header {
    background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 3px 3px 7px #cda549;
  height: 85px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
	
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 15px;
    align-content: center;
}

nav ul li a {
text-decoration: none;
  color: black;
  box-shadow: transparent 0 0 0 3px, rgba(183, 172, 172, 0.1) 0 6px 20px;
  padding: 5px;
  border-radius: 8px;
  font-size: 14px;
  background: #cda549;
}

nav ul li a:hover {
  padding: 5px;
  box-shadow: #cda549 0 0 0 3px, transparent 0 0 0 0;
  background: #edf8fA;
  color: black;
}


.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Responsive Menu */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #f8f8f8;
        padding: 0px 0;
    }

    nav ul.active {
        display: flex;
        margin-top: 32px;
    }

    nav ul li {
        margin: 3px 0;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 10px 0;
        color: #333;
    }

    .menu-icon {
        display: block;color:black;
    }
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Back to Top Button */
#back-to-top {
   position: fixed;
  bottom: 2%;
  padding: 14px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 1001;
  right: 1%;
  width: 46px;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 70px; /* Positioned below the back-to-top button */
    right: 20px;
    background-color: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    z-index: 1000; /* Lower z-index to ensure back-to-top is above it */
}




/* Click to Call and Click to Mail Buttons */
.click-to-call-button, .click-to-mail-button {
    position: fixed;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
}

.click-to-call-button {
    bottom: 70px;
    left: 20px;
}

.click-to-mail-button {
    bottom: 20px;
    left: 20px;
}

/* Adjustments for Desktop */
@media (min-width: 769px) {
    .click-to-call-button {
        left: 20px;
        bottom: 70px;
    }

    .click-to-mail-button {
        left: 20px;
        bottom: 20px;
    }
}

/* Project Image Section */
#project-image-section {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    position: relative;
}

.project-image-container {
    position: relative;
    width: 100%;
    box-shadow: 3px 3px 7px #cda549;
    border: 1px solid #ddd;
    border-radius: 0px;
    overflow: hidden;
	
}

.project-image.desktop-image {
    display: block;
    width: 100%;
    max-height: 100vh;
    /* max-height:570px; */

}

/* Mobile Image */
.project-image.mobile-image {
    display: none;
    width: 100%;
    
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #333;
}

.image-overlay h1 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
	background-color: #272566;
  color: yellow;
  border-radius: 10px;
  padding: 10px;
  background-size: 200% auto;
}

.image-overlay p {
    font-size: 1.2rem;
    
    border: 1px solid #333;
    border-radius: 5px;
	background-color: #272566;
  color: yellow;
  border-radius: 10px;
  padding: 6px;
  background-size: 200% auto;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .project-image.desktop-image {
        display: none;
    }

    .project-image.mobile-image {
        display: block;
    }

    .image-overlay h1 {
        font-size: 20px
    }

    .image-overlay p {
        font-size: 15px;
        padding: 8px 15px;
    }

    .project-image-container {
        border-radius: 0px;
    }
}




/* Specific Section Spacing */

#project-image-section{ padding: 00px 0 00px 0;}

#gallery-section { padding: 80px 0 80px 0;}


/* Responsive Design for Mobile */
@media (max-width: 768px) {
    #project-image-section{ padding: 0px 0 0px 0;}
    h2 {font-size: 30px;}
}



/* Section Spacing */


/* Overview Section */
#overview-section {
    padding: 0px 0px 80px 0px;
    
    border-radius: 15px;
}




.section-headings {
  font-size: 40px;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
  color: #272566;
  background: linear-gradient(90deg, #272566, #ffcc00, #272566);
  -webkit-background-clip: text;
  color: transparent;
  animation: colorShift 4s ease-in-out infinite;
  background-size: 200% 200%; /* Allows the gradient to move */
}

/* Define the animation for the color shift */
@keyframes colorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .section-headings{
        font-size: 25px; /* Font size for mobile */
		text-align: center;
    }
}




.overview-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  max-width: 1280px;
  margin: 0 auto;
  height: 557px;
}




.overview-image img {
    
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #cda549;
    box-shadow: 3px 3px 7px #cda549;
}



#contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

#contact-form label {
    font-size: 0.9rem;
    font-weight: bold;
}

#contact-form input,#contact-form textarea {
  width: 100%;
  padding: 12px;
  
  border-radius: 5px;
  border: 1px solid #cda549;
  box-shadow: 3px 3px 7px rgba(224, 177, 27, 0.4);
  font-size: 1rem;
  background-color: #fff;
  font-family: 'Jost', sans-serif;
}

#contact-form textarea {
    resize: none;
    flex-grow: 1;
}

#contact-form button {
  padding: 10px;
  background-color: #f8dd4b;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 18px;
  box-shadow: 3px 3px 7px #cda549;
  font-family: 'Jost', sans-serif;
}

#contact-form button:hover {
    background-color: #2a71be;
    color: white;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    


    .overview-image img {
        max-width: 100%;
    }
}

/* Site Wrapper */
.site-wrapper {
    max-width: 90%;
    margin: 0 auto;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .site-wrapper {
        max-width: 95%;
        margin-top: 35px;
        
    }
}






#contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

#contact-form label {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}



#contact-form textarea {
    resize: none;
    flex-grow: 1;
}



#contact-form button:hover {
    background-color: #0056b3;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .overview-content {
        flex-direction: column;
        align-items: stretch;
        
    }





    .overview-image img {
        max-width: 100%;
    }
}





/* Project Highlights Section */
#project-highlights {
    text-align: center;
	padding: 0px 0px 80px 0px;
}



.highlights-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    
}

.highlight-item {
    flex: 1;
  max-width: 22%;
  height: 418px;
  border-radius: 15px 15px 0 0;
  box-shadow: rgba(214, 178, 68, 0.68) 0px 4px 6px, rgba(216, 172, 67, 0.4) 0px 10px 5px -2px, rgba(0, 0, 0, 0.2) 0px 15px 5px -5px, rgba(186, 114, 114, 0.2) 0px -5px 5px inset;
}

.highlight-item img {
    width: 100%;
  height: 100%;
  border-radius: 15px 15px 0 0;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .highlights-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 5%; /* Remove gap between images */
    }

    .highlight-item {
        flex: 0 0 100%; /* Each item takes full width */
        max-width: 100%;
        height: 418px;
        scroll-snap-align: start;
        border: none; /* Optional: Remove border on mobile */
    }

    .highlight-item img {
        height: 100%;
    }

    /* Optional: Hide scrollbar for a cleaner look */
    .highlights-container::-webkit-scrollbar {
        display: none;
    }
}




/* Configurations Section */
#configurations-section {
    text-align: center;
	padding: 30px 0px 80px 0px;
	background-color: #edf8fA;
}


.configurations-table-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;margin: auto;
    
}

.configurations-table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    border-radius: 15px;
    overflow: hidden;
   height: 300px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    
}

.configurations-table th, .configurations-table td {
    padding: 10px;
    text-align: center;
    width: 30%;
    
}

.configurations-table th {
    background-color: #cda549;
    font-weight: bold;
    font-size: 20px;
}

.configurations-table td {
    background-color: #fff;
    font-size: 19px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .configurations-table th, .configurations-table td {
        padding: 8px;
        font-size: 0.9rem;
    }

    .configurations-table {
        width: 100%;
        font-size: 0.9rem;
    }
}



/* Future Growth Section */
#future-growth-section {
    text-align: center;padding: 0px 0px 80px 0px;
}

.growth-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
     /* Hide overflowing content */
}

.growth-item {
    flex: 1;
  max-width: 18%;
  height: 150px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(38, 149, 55, 0.5) 0px 4px 6px, rgba(53, 144, 172, 0.4) 0px 8px 4px -2px, rgba(0, 0, 0, 0.2) 0px 10px 4px -5px, rgba(0, 0, 0, 0.2) 0px -5px 5px inset;
  background: #ffed89;
  font-weight: bold;
}

.growth-item p {
    margin: 9%;
  font-weight: 700;
  font-size: 20px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .growth-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 5%; /* Add gap between items */
    }

    .growth-item {
        flex: 0 0 95%; /* Each item takes 95% of the container width */
        height: 120px;
        scroll-snap-align: start;
        border: none; /* Optional: Remove border on mobile */
		max-width: 28%;
		
		border-radius: 15px;
  
  box-shadow: rgba(38, 149, 55, 0.5) 0px 4px 6px, rgba(53, 144, 172, 0.4) 0px 8px 4px -2px, rgba(0, 0, 0, 0.2) 0px 10px 4px -5px, rgba(0, 0, 0, 0.2) 0px -5px 5px inset;
  background: #ffed89;
  font-weight: bold;
    }

    /* Optional: Hide scrollbar for a cleaner look */
    .growth-container::-webkit-scrollbar {
        display: none;
    }
    
    .growth-item p {
    margin: 9%;
  font-weight: 600;
  font-size: 15px;
}
    
    
}


@media (max-width: 767px) {
  .luxury-list {
    font-size: 18px !important;
  }
}

@media (max-width: 768px) {
.image-overlay{display:none}}


.logo img {
    max-width: 100%; /* Ensures the logo doesn't exceed the width of its container */
    max-height: 85px; /* Maintains the aspect ratio */
}

/* Optional: You can set a specific size if needed */
.logo {
    width: 150px; /* Adjust this value to fit your design */
    height: auto; /* Adjust this value if you need to control the height */
}

/* Center the logo inside its container */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1%;
}


#navbar{margin-right: 2%;}




/* Section and filters */
#gallery {
    text-align: center;
    margin: 0px auto;
    padding: 10px;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
}

.filter-button {
    padding: 10px 20px;
    border: none;
    background-color: #cda549;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    width:15%;
    font-family: 'Jost', sans-serif;
    font-size: 20px;
}

.filter-button.active {
    background-color: #272566;
    color: white;
}

/* Gallery container for desktop */
.gallery-images {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    display: none; /* Hide initially */
}

.gallery-images.active {
    display: flex; /* Show the active set of images */
}

/* Default styling for images (250x250px for screens up to 1300px) */
.gallery-item {
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Media query for screens wider than 1300px (350x350px) */
@media (min-width: 1450px) {
    .gallery-item {
        width: 350px;
        height: 350px;
    }
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Mobile layout: Stack the images vertically */
@media (max-width: 768px) {
    .gallery-images {
        flex-direction: column; /* Stack the images vertically */
    }

    .gallery-item {
        width: 100%; /* Make each image take full width */
        height: auto; /* Adjust height automatically */
        margin-bottom: 15px; /* Add space between stacked images */
    }

    .gallery-item img {
        width: 100%;
        height: 100% !important; /* Let the image adjust height naturally */
    }
    
    .filter-button{width:100%}
}







/* Main container layout */
.location-container {
    display: flex;
    justify-content: space-between;
    gap: 5%;
    max-width: 1280px;
    height: 583px;
    margin: 0 auto;
    padding: 0px;
}

.location-image {
    flex: 1;
    width: 50%; /* Set the image container width to 50% */
    height: 100%; /* Let the image container take full height of the section */
}

/* Image styling */
.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    
    border: 3px solid #cda549;
  box-shadow: 3px 3px 7px #cda549
}

/* Right side collapsible content */
.location-details {
     flex: 1;
    width: 50%; /* Set the right container to 50% width */
    height: 100%; /* Full height of the section */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-item {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    
    background-color: #cda549;
}


.location-item:last-child {
    border-bottom: none;
}



.location-item .location-info {
    display: none;
}

.location-item.active .location-info {
    display: block;
    padding-top: 10px;
}

.location-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}


/* Default color for closed items */
.location-item h3 {
    color: black; /* Inactive color */
}

/* Highlight the active heading */
.location-item.active h3 {
    color: white; /* Active heading color */
    font-weight: bold;
}

/* Hide the paragraph for inactive items */
.location-info {
    display: none;
    padding: 10px;
    border-top: 1px solid #ccc;
    background-color: #f9f9f9;
    font-size: 18px;
    margin-top: 13px;
  border-radius: 5px;list-style: none;
}

/* Show the paragraph when the section is active */
.location-item.active .location-info {
    display: block;
}

/* Mobile layout */
@media (max-width: 768px) {
    .location-container {
        flex-direction: column;
        height: auto;
    }

    .location-image {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .location-details {
        width: 100%;
        height: auto;
    }

    .location-item {
        height: auto;
    }
}




footer {
  width: 100%;
  padding: 50px 0 20px 0;
  background-color: #0C0019;
}


.footer-social-page {
  width: 100%;
  padding: 20px 0 20px 0;
  display: flex;
  justify-content: space-between;
  gap:50px
}

.footer-box-one.about {
  width: 30%;
}
.footer-box-one {
  width: 28%;
  color: #fff;
}
.footer-box-one > p2 {
  font-size: 24px;
 
  font-weight: bold;
}
.footer-box-one-para {
  padding-top: 40px;
  font-size: 16px;
  line-height: 1.8;
  
  display: flex;
  flex-direction: column;
}


.footer-box-one.contact {
  width: 27%;
  font-family: 'Jost', sans-serif;
}
.footer-box-one {
  width: 28%;
  color: #fff;
}

.footer-box-one > p2 {
  font-size: 24px;
 
  font-weight: bold;
}

.footer-box-one.contact p:first-of-type {
  margin-top: 40px;
  font-family: 'Jost', sans-serif;
}
.footer-box-page-info {
  font-size: 16px;
 
}

.footer-box-page-info a {
  color: #fff;
  text-decoration: none;
}

.footer-box-one.contact p:not(:first-of-type) {
  margin-top: 20px;
  font-family: 'Jost', sans-serif;
}
.footer-box-page-info {
  font-size: 16px;
  font-family: mulish;
}

.footer-map {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}













/* Sticky buttons for PC */
.sticky-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Individual button styling */
.sticky-buttons .button {
    width: 113px;
  height: 42px;
  background-color: #cda549;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.sticky-buttons .button:hover {
    background-color: #1e1e4f;
}

/* Sticky buttons hidden on mobile */
@media (max-width: 768px) {
    .sticky-buttons {
        display: none;
    }
}

/* Sticky buttons for mobile at the bottom */
.sticky-bottom {
    display: none !important;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #272566;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

/* Mobile buttons */
.sticky-bottom .button {
    flex: 1;
    margin: 0 10px;
    padding: 5px;
    text-align: center;
    color: black;
    background-color: #cda549;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    align-content: center;
}

.sticky-bottom .button:hover {
    background-color: white;
}

/* Show sticky buttons on mobile */
@media (max-width: 768px) {
    .sticky-bottom {
        display: flex !important;
    }
}

@media (max-width: 768px) {
  
  
  .footer-box-one.about,.footer-box-one.contact,.footer-map{width:90%;margin:auto;margin-bottom: 25px;}
  
  .footer-social-page{display: block;}
  
  .location-image-map{flex: 1;width: 100% !important;height: 90%;}
 
}

.location-image-map{flex: 1;width: 40%;height: 90%;}




.features-list {
    max-width: 860px;
    margin: 20px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.features-list ul {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.features-list li::before {
    content: "✓"; /* Custom symbol */
    color: #272566; /* Color of the symbol */
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.8;
}












/* Default styles for .overview-image */
.overview-image {
  height: 557px;
  flex: 1;
  text-align: center;
  
}

/* Default styles for .overview-form */
.overview-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px 40px;
  border-radius: 10px;
  height: 557px;
  background: #cda549;
  width: 40%;
  margin-left: 5%;
  margin-right: 5%;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

/* Media query for screen sizes between 900px and 1400px */
@media (min-width: 900px) and (max-width: 1400px) {
  .overview-image {
    height: 450px; /* Adjusting height */
  }

  .overview-form {
    height: 450px; /* Adjusting height */
    padding: 20px 40px; /* Adjusting padding */
  }
  
  #contact-form input, #contact-form textarea {padding: 8px}
  
  h2 {font-size: 35px;}
}

/* Existing media query for mobile devices (max-width: 768px) */
@media (max-width: 850px) {
  .overview-form {
    width: 100% !important;
    height: auto !important;
    padding: 20px 20px !important;
    margin-bottom: 50px;
    margin-left: 0% !important;
    margin-right: 0% !important;
  }

  .overview-content {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Additional for column-reverse on small screens */
@media (max-width: 768px) {
  .overview-content {
    flex-direction: column-reverse;
    height: auto;
  }
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0b0016; /* Assuming a dark background similar to the image */
  color: #a1f3ea; /* Light teal color for text */
  padding: 20px;
}

.disclaimer, .footer-right {
  flex: 1;
  margin: 0% 4% 0 11%;
}

.footer-right {
  text-align: right;
}

/* Mobile view: stack elements */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
    margin-top: 20px;
  }
  
  .disclaimer, .footer-right {
  flex: 1;
  margin: 2% 2% 20% 2%;
}
}

/* Optional additional styling for emojis */
.heart {
  color: red;
}

.pray {
  font-size: 20px;
}

/* Style for ARB link */
.arb-link {
  color: #a1f3ea; /* Match the text color */
  text-decoration: none; /* No underline */
}

.arb-link:hover {
  text-decoration: underline; /* Optional underline on hover */
}


/* Project Features Section */
.project-features {
    background-color: #333;
    padding: 50px 20px;
    color: #fff;
}

.project-features .section-heading {
    font-size: 32px;
    text-align: center;
    color: #cda549;
    margin-bottom: 30px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px 70px;
}

.feature-item {
    display: flex;
    align-items: center;
    background-color: black;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    width: 40px;
    margin-right: 15px;
}

.feature-item p {
    font-size: 18px;
    color: #cda549;
    margin: 0;
}




/* Popup form styles */
.popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 400px;
    position: relative;
    box-shadow: 3px 3px 7px #cda549;
}

.popup-content h2 {
    color: #cda549;
    font-size: 30px;
}

.popup-content form {
    display: flex;
    flex-direction: column;
}

.popup-content form label {
    margin-top: 10px;
}

.popup-content form input {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.popup-content form button {
    margin-top: 20px;
    background-color: #cda549;
    color: white;
    border: none;
    padding: 10px 0;
    border-radius: 4px;
    cursor: pointer;
}

.popup-content form button:hover {
    background-color: #b78b34;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .popup-content {
        width: 90%;
    }
}



/* Rotating border button with animation */
#download-brochure-btn {
  position: relative;
  display: inline-block;
  padding: 10px 10px;
  font-size: 14px;
  font-weight: 600;
  color: black;
  text-decoration: none;
  background-color: white;
  border-radius: 10px;
  cursor: pointer;
  transition: filter 0.3s ease;
  font-family: 'Jost', sans-serif; 
}

#download-brochure-btn:hover {
  filter: contrast(1.1);
}

#download-brochure-btn:active {
  filter: contrast(0.9);
}

#download-brochure-btn::before,
#download-brochure-btn::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 3px solid #cda549; /* Dark blue border */
  transition: all 0.5s;
  animation: moveBorder 3s infinite linear;
  border-radius: 10px;
}

#download-brochure-btn::after {
  animation: moveBorder 3s infinite -1.5s linear; /* Delay for smoother effect */
}

/* Animation for moving the border */
@keyframes moveBorder {
  0%, 100% {
    clip-path: inset(0 0 98% 0); /* Starting at the top */
  }
  25% {
    clip-path: inset(0 98% 0 0); /* Moving to the right */
  }
  50% {
    clip-path: inset(98% 0 0 0); /* Moving to the bottom */
  }
  75% {
    clip-path: inset(0 0 0 98%); /* Moving to the left */
  }
}




/* Media Query for Mobile (768px and below) */
@media (max-width: 768px) {
    #download-brochure-li {
        height: 50px; /* Set height to 50px for mobile */
        display: flex; /* Ensures proper alignment if needed */
        align-items: center; /* Vertically center the content inside */
        align-self: center;
    }

    #download-brochure-btn {
        font-size: 14px; /* Adjust font size if needed for mobile */
    font-size: 12px;
    padding: 8px 8px;
       font-family: 'Jost', sans-serif; 
    }
    
    #download-brochure-container{
        margin-right:30px;
        margin-left: 0px;
    }
    
    .features-list {
    
    grid-template-columns: none;
}
}





/* Image Carousel Section */
#image-carousel {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    
}

.carousel-item {
    flex: 1 0 calc(100% / 3); /* Show 3 images per frame on desktop */
    max-height: 700px;
    height: 100%;
    box-sizing: border-box;
    padding: 0 10px;
    
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 4; /* Ensure the 3:4 aspect ratio */
    border-radius: 15px;
  border: 3px solid #cda549;
  box-shadow: 3px 3px 7px #cda549;
  cursor: pointer;
}

@media (max-width: 768px) {
    .carousel-wrapper {
        flex-wrap: nowrap;
    }

    .carousel-item {
        flex: 0 0 100%; /* Show 1 image per frame on mobile */
    }
}


/* Luxury Living Section */
#luxury-living {
    padding: 20px;
    background: #fff;
    text-align: left;
}

.luxury-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 25px;
    line-height: 1.6;
}

.luxury-list li {
    margin-bottom: 15px;
    font-weight: normal;
    color: #333;
    list-style: none;
    text-align: center;
}



/* Call Back Button */
.call-back-button-wrapper {
    text-align: center;
    margin-top: 20px;
}

.call-back-button {
    background-color: #cda549;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;margin-bottom: 50px;
}

.call-back-button:hover {
    background-color: #b28e3d;
}


/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

.modal-content {
    position: relative  ;
    top: 20%;
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 100px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}


.inner-sections {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px; /* Space between inner sections */
}

.inner-section {
    flex: 1 1 calc(25% - 20px); /* Each section takes 25% width with some gap */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s;
}

.inner-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.inner-section p {
    margin-top: 10px;
}

/* Hover effect for inner sections */
.inner-section:hover {
    transform: scale(1.05);
}

/* Pop-up Modal Styles */
.popup-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Background with opacity */
}

.popup-modal-content {
    position: absolute;
    max-width: 90%;
    max-height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    box-shadow: 3px 3px 10px #fff;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #ccc;
}

/* Main container */
.info-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  margin: auto;
}

/* Each info block */
.info-item {
  display: flex;
  align-items: center;
  flex: 1 1 22%; /* Flexbox: ensure 4 in a row on PC, adjusts on mobile */
  margin: 10px 0;
}

/* Icon styling (image icons) */
.info-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: grayscale(50%);
}

/* Text styling */
.info-text {
  font-size: 16px;
  color: #333;
}

/* Responsive behavior for mobile */
@media screen and (max-width: 768px) {
  .info-section {
    flex-direction: column;
    text-align: left;
  }

  .info-item {
    flex: 1 1 100%; /* Stacks one below the other on mobile */
    margin-bottom: 15px;
  }
}



/* Container styles for the new highlights */
#new-project-highlights-section {
    padding: 20px 0;
    margin: 0 auto;
    position: relative;
}

#new-project-highlights {
    text-align: center;
}

.new-highlights-container {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    width: 100%;
}

.new-highlights-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}

/* Individual item styles */
.new-highlight-item {
    flex: 0 0 auto;
    width: 100%; /* Default width for mobile */
    max-width: 25%; /* Desktop shows 4 images in a row */
    box-sizing: border-box;
    padding: 10px;
}

.new-highlight-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #cda549; /* Optional border color */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .new-highlight-item {
        width: 100%;
        max-width: 100%;/* 1 image per view on mobile */
    }

    .new-highlights-container {
        scroll-snap-type: x mandatory;
    }

    .new-highlight-item {
        scroll-snap-align: start;
    }
}




/* Desktop adjustments */
@media screen and (min-width: 769px) {
    .new-highlight-item {
        width: calc(25% - 10px); /* 4 images in a row on PC */
        margin-right: 10px; /* Optional margin between items */
    }
}

