
  /* Base styles */
  body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 1.8; /* Increased from 1.6 */
    color: #333;
  }
  
  /* Headings */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 1.5em; /* Add space above headings */
    margin-bottom: 0.8em; /* Add space below headings */
  }
  
  /* Project title */
  .project-title {
    font-size: 2.5rem;
    margin-bottom: 2rem; /* Increased from 1.5rem */
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* Section headings */
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  /* Paragraph text */
  p {
    margin-bottom: 1.5em; /* Increased from 1rem */
  }
  
  /* Add space between paragraphs */
  p + p {
    margin-top: 1.5em;
  }
  
  /* Lists */
  ul, ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
  }
  
  li {
    margin-bottom: 0.5em;
  }
  
  /* Buttons */
  .button {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.8em 1.5em; /* Add padding to buttons */
    margin: 1em 0; /* Add space around buttons */
  }
  
  /* Navbar */
  #navbar {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    padding: 1em 0; /* Add padding to navbar */
  }
  
  #navbar .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
  }
  
  /* Add space between navbar items */
  #navbar .nav-links li {
    margin: 0 0.8em;
  }
  
  /* Project overview section */
 
  
  .content-wrapper {
    gap: 3em; /* Increase gap between carousel and project details */
  }
  
  .project-details h3 {
    margin-top: 0; /* Remove top margin for the first heading in project details */
  }
  
  /* Add space between different sections */
  section {
    margin-bottom: 4em;
  }
  


.video-section{
    text-align: center;
    padding-top: 50px;
}
.video-section video {
    max-width: 100%;
    height: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f0f0f0;
  padding-top: 70px; /* Add padding to body to prevent content from hiding behind the navbar */
}

.navbar {
  background-color: #2c3e50;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed; /* Change to fixed */
  top: 0; /* Stick to the top */
  left: 0; /* Stick to the left */
  right: 0; /* Stretch across the entire width */
  z-index: 1000; /* Ensure navbar stays on top of other content */
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-title {
  color: #ecf0f1;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-menu {
  display: flex;
}

.navbar-item {
  color: #ecf0f1;
  text-decoration: none;
  padding: 10px 15px;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-item:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #3498db;
  transition: all 0.3s ease;
}

.navbar-item:hover:after {
  width: 100%;
  left: 0;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #34495e;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s;
}

.dropdown-content a {
  color: #ecf0f1;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-content a:hover {
  background-color: #2980b9;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  body {
      padding-top: 110px; /* Increase padding for mobile to accommodate the taller navbar */
  }

  .navbar {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
  }

  .navbar::-webkit-scrollbar {
      display: none;
  }

  .navbar-content {
      flex-direction: column;
      align-items: center;
      padding: 10px 0;
  }

  .navbar-title {
      margin-bottom: 10px;
      font-size: 20px;
  }

  .navbar-menu {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding-bottom: 5px;
      width: 100%;
      justify-content: flex-start;
  }

  .navbar-menu::-webkit-scrollbar {
      display: none;
  }

  .navbar-item {
      flex: 0 0 auto;
      font-size: 14px;
      padding: 8px 12px;
  }

  .dropdown-content {
      position: static;
      display: none;
      background-color: #34495e;
      box-shadow: none;
      opacity: 1;
      transform: none;
  }

  .dropdown.active .dropdown-content {
      display: block;
  }
}

/* about */
.project-details {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .small-image {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .small-image img {
    max-width: 100%;
    height: auto;
  }
  
  .main-content {
    display: flex;
    gap: 40px;
  }
  
  .project-info {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .property-image {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .project-info.animate, .property-image.animate {
    opacity: 1;
    transform: translateX(0);
  }
  
  .project-title {
    margin-bottom: 20px;
  }
  
  .property-image img {
    max-width: 100%;
    height: auto;
  }
  
  @media (max-width: 768px) {
    .main-content {
      flex-direction: column;
    }
  
    .project-info, .property-image {
      transform: translateY(20px);
    }
  
    .project-info.animate, .property-image.animate {
      transform: translateY(0);
    }
  
    .project-info {
      margin-bottom: 20px;
    }
  }

  /* overview */
  .project-overview {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .project-title {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .content-wrapper {
    display: flex;
    gap: 40px;
  }
  
  .carousel-container, .project-details {
    flex: 1;
  }
  
  /* Full height carousel */
  .swiper {
    width: 100%;
    height: 600px; /* Increased height for more impact */
    border-radius: 10px; /* Rounded corners for a modern look */
    overflow: hidden; /* Ensure images don't overflow rounded corners */
  }
  
  .swiper-slide {
    width: 100%;
    height: 100%;
  }
  
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image covers the entire slide */
    object-position: center; /* Centers the image within the slide */
  }
  
  /* Smaller navigation buttons */
  .swiper-button-next,
  .swiper-button-prev {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }
  
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  /* Adjust the size of the arrow icons */
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 20px;
  }
  
  /* Position the buttons slightly inward */
  .swiper-button-next {
    right: 10px;
  }
  
  .swiper-button-prev {
    left: 10px;
  }
  
  /* Style for pagination bullets */
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
  }
  
  .swiper-pagination-bullet-active {
    background-color: #fff;
  }
  
  @media (max-width: 992px) {
    .content-wrapper {
      flex-direction: column;
    }
  
    .carousel-container {
      margin-bottom: 20px;
    }
  
    .swiper {
      height: 400px; /* Slightly reduced height for tablets */
    }
  }
  
  @media (max-width: 768px) {
    .swiper {
      height: 300px; /* Further reduced height for mobile */
    }
  
    /* Even smaller buttons for mobile */
    .swiper-button-next,
    .swiper-button-prev {
      width: 30px;
      height: 30px;
    }
  
    .swiper-button-next:after,
    .swiper-button-prev:after {
      font-size: 16px;
    }
  }

  /* gallery */
  .project-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .gallery-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #333;
  }
  
  .splide__slide {
    position: relative;
  }
  
  .splide__slide img {
    width: 100%;
    height: 80%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  
  .image-name {
    position: absolute;
    margin-bottom: 50px;
    bottom: 10PX;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    /* padding: 10px; */
    font-size: 14px;
    text-align: center;
  }
  
  @media screen and (max-width: 768px) {
    .image-name {
      font-size: 12px;
    margin-bottom: 5px;
    
    }
  }
  /* amenities */
  #amenities {
    padding: 50px 20px;
    overflow-x: hidden;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #2c3e50;
}

.amenities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: #3498db;
    color: #fff;
}

.amenity-item i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #3498db;
    transition: color 0.3s ease;
}

.amenity-item:hover i {
    color: #fff;
}

.amenity-item p {
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .amenities-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .amenity-item i {
        font-size: 2.5rem;
    }
    
    .amenity-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .amenities-container {
        grid-template-columns: 1fr;
    }
    
    #amenities {
        padding: 30px 10px;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .amenity-item {
        padding: 15px;
    }
    
    .amenity-item i {
        font-size: 2rem;
    }
    
    .amenity-item p {
        font-size: 0.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* projects */

.container {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  height: 90vh;
  max-height: 800px;
  overflow: hidden;
}

.slider-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #4a90e2;
  color: #ffffff;
}

.main-title {
  font-size: 24px;
  text-align: center;
}

.slider-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
}

.slide-heading {
  text-align: center;
  font-size: 24px;
  color: #333;
  margin: 15px 0;
  transition: opacity 0.3s ease;
}

.content-wrapper {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
}

.content-slider {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
  position: absolute;
  width: 300%;
}

.content {
  flex: 0 0 33.333%;
  width: 33.333%;
  padding: 15px;
  box-sizing: border-box;
  overflow-y: auto;
  height: 100%;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.project-info {
  flex: 1;
  padding-right: 20px;
}

.main-image {
  flex: 1;
  max-width: 50%;
}

.main-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.navigation-buttons {
  padding: 15px 0;
  display: flex;
  justify-content: center;
}

.nav-btn {
  background-color: #4a90e2;
  color: white;
  border: none;
  padding: 8px 12px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 5px;
}

.nav-btn.active {
  background-color: #2c3e50;
}

@media (max-width: 768px) {
  .container {
      height: 100vh;
      max-height: none;
      margin: 0;
      width: 100%;
  }

  .header {
      flex-direction: column;
  }
  
  .project-info, .main-image {
      width: 100%;
      max-width: 100%;
      padding-right: 0;
      margin-bottom: 20px;
  }

  .content {
      padding: 10px;
  }

  .slide-heading {
      font-size: 20px;
      margin: 10px 0;
  }
}

/* Location */
.unique-location-section {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  /* padding: 4rem 2rem; */
  max-width: 1200px;
  margin: 0 auto;
}

.unique-section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.unique-section-title h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.unique-section-title p {
  font-size: 1.1rem;
  color: #7f8c8d;
}

.unique-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background-color: #ffffff;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.unique-map-container, .unique-image-container {
  flex: 1;
  min-width: 300px;
  height: 400px;
}

.unique-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unique-advantages-container {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.unique-advantages-container h2 {
  margin-bottom: 1.5rem;
  color: #2c3e50;
  font-weight: 600;
}

.unique-advantages-list {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.unique-advantages-list li {
  flex-basis: calc(50% - 0.5rem);
  padding-left: 2rem;
  position: relative;
}

.unique-advantages-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .unique-content-wrapper {
      flex-direction: column;
  }

  .unique-map-container,
  .unique-image-container,
  .unique-advantages-container {
      width: 100%;
  }

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

  .unique-section-title p {
      font-size: 1rem;
  }

  .unique-advantages-list li {
      flex-basis: 100%;
  }
}
/* contact us */
.cr-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.cr-contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.cr-left-side, .cr-right-side {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  box-sizing: border-box;
}

.cr-section-title {
  margin-bottom: 20px;
}

.cr-company-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.cr-address, .cr-social-links {
  margin-bottom: 20px;
}

.cr-address i, .cr-social-links i {
  margin-right: 10px;
}

.cr-contact-form {
  display: flex;
  flex-direction: column;
}

.cr-contact-form input, .cr-contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.cr-submit-btn {
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.cr-submit-btn:hover {
  background-color: #45a049;
}

.cr-social-links a {
  color: #333;
  font-size: 24px;
  margin-right: 15px;
  text-decoration: none;
}

.cr-copyright {
  text-align: center;
  margin-top: 20px;
}

.cr-disclaimer-footer {
  background-color: #f8f8f8;
  border-top: 1px solid #ddd;
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 20px;
}

.cr-disclaimer-text {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
  text-align: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .cr-contact-section {
      flex-direction: column;
  }

  .cr-left-side, .cr-right-side {
      width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .cr-disclaimer-footer {
      padding: 5px 10px;
  }
  .cr-disclaimer-text {
      font-size: 0.7rem;
  }
}

@media screen and (min-width: 1920px) {
  .cr-disclaimer-text {
      font-size: 0.8rem;
      max-width: 1800px;
  }
}
/* showcase gallery */
.sg-gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.sg-gallery-title {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.sg-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 20px;
}

.sg-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.sg-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sg-image-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sg-gallery-item:hover {
  transform: scale(1.05);
}

.sg-gallery-item:hover .sg-image-name {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .sg-gallery-grid {
      display: flex;
      flex-direction: column;
  }

  .sg-gallery-item {
      margin-bottom: 20px;
  }
}
/* shoecase table */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  text-align: center;
  color: #2c3e50;
}

.table-responsive {
  overflow-x: auto;
}

.property-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 10px;
  background-color: transparent;
}

.property-table th,
.property-table td {
  padding: 15px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.property-table thead {
  background-color: #3498db;
  color: #fff;
}

.property-table tbody tr {
  display: inline-block;
  width: calc(50% - 10px);
  margin-bottom: 10px;
}

.property-table td {
  display: block;
}

.property-table td:first-child {
  font-weight: bold;
  background-color: #e8f4fd;
  color: #2980b9;
}

@media screen and (max-width: 768px) {
  .property-table tbody tr {
      width: 100%;
  }
  
  .property-table thead {
      display: none;
  }
}

@media screen and (max-width: 480px) {
  .property-table th,
  .property-table td {
      padding: 10px;
  }
}

@media screen and (min-width: 769px) {
  .property-table thead {
      display: table-header-group;
  }
  
  .property-table thead th {
      width: 50%;
  }
  
  .property-table tbody tr {
      display: table-row;
      width: 100%;
  }
  
  .property-table td {
      display: table-cell;
      width: 50%;
  }
}
/* floor plan project */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.floor-plan-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.floor-plan-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.floor-plan-item:hover {
  transform: translateY(-5px);
}

.floor-plan-item img {
  width: 100%;
  height: auto;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floor-plan-item:hover .overlay {
  opacity: 1;
}

.name {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.download-btn {
  background-color: #3498db;
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #2980b9;
}

@media screen and (max-width: 768px) {
  .floor-plan-gallery {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media screen and (max-width: 480px) {
  .container {
      padding: 1rem;
  }

  h1 {
      font-size: 1.5rem;
  }

  .name {
      font-size: 1.2rem;
  }
}
/* club rsidency */
.project-showcase {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
}

.project-showcase__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.project-showcase__content {
  flex: 1;
}

.project-showcase__title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.project-showcase__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1.5rem;
}

.project-showcase__cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.project-showcase__cta:hover {
  background-color: #0056b3;
}

.project-showcase__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-showcase__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 768px) {
  .project-showcase__container {
    flex-direction: row;
    align-items: center;
  }

  .project-showcase__content {
    padding-right: 2rem;
  }

  .project-showcase__image-wrapper {
    padding-left: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .project-showcase__title {
    font-size: 3rem;
  }

  .project-showcase__description {
    font-size: 1.2rem;
  }
}
/* club residency gallery */
.scenic-gallery-section {
  padding: 1rem 0;
  background-color: #f0f0f0;
}

.scenic-gallery-main-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scenic-gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.scenic-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  aspect-ratio: 1 / 1;
}

.scenic-gallery-card:hover {
  transform: scale(1.05);
}

.scenic-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scenic-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scenic-gallery-card:hover .scenic-gallery-overlay {
  height: 100%;
}

.scenic-gallery-title {
  color: white;
  font-size: 1.2rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scenic-gallery-card:hover .scenic-gallery-title {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .scenic-gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media screen and (max-width: 480px) {
  .scenic-gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .scenic-gallery-main-title {
    font-size: 2rem;
  }
}
/* floor plan */

/* location advantage */
.loc-adv-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  font-family: Arial, sans-serif;
}

.loc-adv-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.loc-adv-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.loc-adv-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.loc-adv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.loc-adv-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.loc-adv-icon {
  font-size: 2rem;
  margin-right: 1rem;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.loc-adv-card:hover .loc-adv-icon {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.3);
}

.loc-adv-card-title {
  font-size: 1.25rem;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin: 0;
  flex-grow: 1;
}

.loc-adv-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.loc-adv-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.loc-adv-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

/* Category-specific styles */
.loc-adv-connectivity {
  background-color: #f0f8ff;
}

.loc-adv-connectivity .loc-adv-card-title,
.loc-adv-connectivity .loc-adv-icon {
  background-color: #4169e1;
}

.loc-adv-connectivity .loc-adv-bullet {
  background-color: #4169e1;
}

.loc-adv-educational {
  background-color: #fff0f5;
}

.loc-adv-educational .loc-adv-card-title,
.loc-adv-educational .loc-adv-icon {
  background-color: #ff69b4;
}

.loc-adv-educational .loc-adv-bullet {
  background-color: #ff69b4;
}

.loc-adv-shopping {
  background-color: #f0fff0;
}

.loc-adv-shopping .loc-adv-card-title,
.loc-adv-shopping .loc-adv-icon {
  background-color: #32cd32;
}

.loc-adv-shopping .loc-adv-bullet {
  background-color: #32cd32;
}

.loc-adv-hospital {
  background-color: #f5f5f5;
}

.loc-adv-hospital .loc-adv-card-title,
.loc-adv-hospital .loc-adv-icon {
  background-color: #696969;
}

.loc-adv-hospital .loc-adv-bullet {
  background-color: #696969;
}

.loc-adv-banks {
  background-color: #fff5e6;
}

.loc-adv-banks .loc-adv-card-title,
.loc-adv-banks .loc-adv-icon {
  background-color: #ffa500;
}

.loc-adv-banks .loc-adv-bullet {
  background-color: #ffa500;
}

/* Responsive design for small screens */
@media screen and (max-width: 768px) {
  .loc-adv-container {
      display: flex;
      flex-direction: column;
  }

  .loc-adv-card {
      margin-bottom: 1.5rem;
  }
}
