/* Base styles */
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
}
.main{
    margin: 0;
}
.apartment-btn {
  background-color: #ffffff;
  color: #000000;
  border: black solid 1px;
  padding: 5px 15px;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;

}

/* Modal styles */

  





  
/* Main container styles */
.property-container {
  padding: 20px;
  max-width: 1350px;
  margin: 0 auto;
 
  border-radius: 8px;
  
}
.apartment-btn {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 25px;
}
.apartment-btn:hover {
  opacity: 0.9;
  cursor: pointer;
}
   /* Fullscreen icon in the main image container */
    .image-layout {
      padding: 20px;
      max-width: 1350px;
      margin: 0 auto;
      display: flex;
      gap: 20px;
      flex-direction: row;
      align-items: flex-start;
    }

    /* Main image styles */
    .main-image-container {
      flex: 1;
      position: relative;
      max-width: 60%;
    }

    .main-image, .main-video {
      width: 100%;
      height: 510px;
      object-fit: cover;
      border-radius: 8px;
    }

    .fullscreen-icon {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 1.5rem;
      color: white;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.3s;
    }

    .fullscreen-icon:hover {
      background: rgba(0, 0, 0, 0.8);
    }

    /* Thumbnails container */
    .thumbnails-container {
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 0.4;
      max-width: 40%;
    }

    .thumbnail-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .thumbnail {
      position: relative;
      width: 48%;
      height: 250px;
      border-radius: 5px;
      overflow: hidden;
      margin-bottom: 10px;
      cursor: pointer;
    }

    .thumbnail-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-radius: 5px;
    }

    .thumbnail-image:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .remaining-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
      border-radius: 5px;
    }

    .remaining-overlay:hover {
      background: rgba(0, 0, 0, 0.8);
    }

    /* Fullscreen modal styles */
    .fullscreen-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      z-index: 1000;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }

    .fs-modal-content {
      position: relative;
      width: 90%;
      max-width: 1200px;
      height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .fullscreen-images {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .fullscreen-image, .fullscreen-video {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: 5px;
      display: none;
    }

    .close, .prev, .next {
      position: absolute;
      color: white;
      font-size: 2rem;
      cursor: pointer;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }

    .close:hover, .prev:hover, .next:hover {
      background: rgba(0, 0, 0, 0.8);
    }

    .close {
      top: 20px;
      right: 20px;
    }

    .prev {
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
    }

    .next {
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
    }

    @media (max-width: 768px) {
      .image-layout {
        flex-direction: column;
      }

      .main-image-container, .thumbnails-container {
        max-width: 100%;
      }

      .thumbnail {
        width: 48%;
        height: 150px;
      }
    }
  /* Main carousel container */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin: 20px 0;
  }
  
  .carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
  }
  
  .carousel-slide {
    flex: 0 0 100%;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
  }
  
  /* Thumbnail container */
  .carousel-container1 {
    position: relative;
    width: 100%;
    height: 120px;
    margin-top: 10px;
  }
  
  .carousel-image1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
  }
  
  /* Navigation buttons */
  .carousel-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
  }
  
  #prev-btn {
    left: 20px;
  }
  
  #next-btn {
    right: 20px;
  }
  

@media (min-width: 768px) {
  .mobile-swiper {
    display: none !important;
  }
  .isfw {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .mobile-swiper {
    display: block !important;
  }
  .isfw {
    display: none !important;
  }
}

/* Swiper container and slide styling */
.mySwiper {
  width: 100%;
  height: 400px; /* Increased height for better visibility */
  position: relative;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #f9f9f9;
}

/* Image and video styling */
.swiper-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensures images scale properly */
  border-radius: 8px;
}

.swiper-video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensures videos scale properly */
  border-radius: 8px;
}

/* Navigation buttons styling */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}

/* Pagination styling */
.swiper-pagination {
  bottom: 10px !important;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: #007bff;
  opacity: 1;
}
  
  /* Fullscreen modal */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
  }
  
  
  .modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }



  .remaining-images {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 2;
    width: 100px;
    height: 59px;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    margin-top: 570px;
    margin-left: 17px;
  }
  
  .remaining-images span {
    display: inline-block;
    padding: 4px 10px;
    text-align: center;
  }
  
  .fullscreen-icon {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    z-index: 10;
  }
  
  .fullscreen-icon:hover {
    color: #074b72;
  }
  
  @media (max-width: 1200px) {
    .property-container {
      padding: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }
 
}


@media (max-width: 767px) {
    /* Mobile-specific styles if needed */
    .carousel-container {
        display: none;
    }
    .carousel-container1 {
        display: block;
    }
   
}

.container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 50px;
  }
  
  .content-wrapper {
    
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
  }
  
  .home-description {
    width: 100%;
    background-color: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  
  

  .details-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border: 2px ridge #074b72; /* Top border to separate section */
    border-radius: 25px; /* Bottom border to match the image design */
    padding: 50px;
  }

  .detail-item {
    display: flex;
    flex-direction: column;
    text-align: start;
    font-size: 16px;
    color: #555; 
  }

  .detail-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #074b72;
    margin-bottom: 5px;
  }

  .detail-value {
    font-size: 2rem;
    font-weight: bold;
    color: black;
  }

  .detail-item + .detail-item {
    border-left: 1px solid #ccc; /* Divider between items */
    padding-left: 50px; /* Spacing between the label and value */
  }

/* Mobile (Max-width: 768px) */
@media (max-width: 768px) {
  .details-grid {
      flex-direction: column;
      text-align: center;
      padding: 20px;
  }

  .detail-item {
      flex: 1 1 100%;
      text-align: center;
  }

  .detail-item + .detail-item {
      border-left: none;
      padding-left: 0;
      border-top: 1px solid #ccc; /* Add top border for better separation */
      padding-top: 15px;
  }
}

/* Smallest screens (Max-width: 480px) */
@media (max-width: 480px) {
  .details-grid {
      padding: 15px;
  }

  .detail-value {
      font-size: 1.8rem;
  }

  .detail-label {
      font-size: 1rem;
  }
}
.contact-form {
    width: 100%;
    margin-left: 20px;
    padding: 20px;
    background-color: #add1fa;
    border-radius: 30px;
}

.description h3 {
    font-size: 30px;
    text-align: left;
}
.description span{
  color: #074b72;
}

.description p,.description ul,.description ul  {
    font-size: 20px;
    margin-top: 20px;
    text-align: left;
}
.prodet {
  background-color: #dceffd;
  padding: 40px;
}

@media (max-width: 500px) {
  .prodet {
    padding: 0px;
  }
}
.tab-container {
  width: 100%;
  background-color: white;
  border-radius: 12px;
  margin: 0 auto;
  max-width: 1350px; /* To keep content centered and contained */
}

.tabs {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  
}

.tab {
  padding: 15px 30px;
  cursor: pointer;
  color: black;
  background-color: white;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 3px solid transparent;
  flex: 1;
}

.tab.active {
  background-color: #074b72;
  border-bottom: 3px solid #074b72;
  color: white;
}

.tab-content {
  display: block;
  padding-right: 20px;
  border: 2px solid #074b72;
}
.features{
  display: flex !important;
  flex-direction: row;
  justify-content: space-between;
}

.property-details-container {
  width: 100%;
  margin-top: 20px;
  background-color: white;
  border-radius: 10px;
}

.property-details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  color: #333;
}

.property-details-table td {
  padding: 10px 15px;
}

.property-details-table tr:nth-child(even) {
  background-color: #cfdef1;
}

.property-details-table tr:nth-child(odd) {
  background-color: #fff;
}

.property-details-table td:first-child, .property-details-table td:nth-child(3) {
  font-weight: bold;
  color: black;
}

.property-details-table td:nth-child(2), .property-details-table td:nth-child(4) {
  text-align: left;
  font-weight: normal;
}

.view-360 iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
}



.location {
    text-align: center;
    width: 100%;
    color: black;
}

.location-map {
    width: 85%;
    height: 500px;
    margin: 10px 50px;
}
.view-360 {
    width: 100%;
}
.view-360 iframe {
    width: 90%;
    height: 500px;
    margin: 10px 50px;
}

/* contact agent */
.cas1 {
  background-color: #e2f1fd;
  padding: 40px;
}

.cas2 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.cas3 {
  margin-left: 30px;
  margin-right: 20px;
}

.cas3 img {
  width: 350px;
  height: 400px;
  object-fit: cover;
  border-radius: 25px;
}

.cas4 {
  margin-left: 100px;
  color: black;
  position: relative;
  display: flex;
  flex-direction: row;
}

.cas4 h3 {
  font-size: 48px;
  font-weight: 700;
  margin: 0; /* Remove margin to decrease space */
  width: 100px;
}

.cas5 {
  margin-top: 5px;
  font-size: 32px;
  color: #074b72;
}

.cas6 p {
  font-size: 24px;
  margin: 10px 0;
}
.cas6 p strong {
  font-size: 26px;
  margin-right: 50px; /* Space between label and value */
}

.cas6 i {
  color: #074b72;
  margin: 10px 10px;
}
.cas6 a {
  text-decoration: none;
}
.phone-icon {
  position: relative;
  top: 20px;
  right: 20px;
}
.phone-icon i {
  font-size: 1.5rem;
  padding: 8px;
  cursor: pointer;
  border: 2px solid #074b72;
  color: #074b72;
  border-radius: 50%;
  padding: 10px;
  transition: font-size 0.3s ease, padding 0.3s ease;
}
@media (max-width: 768px) {
  .cas2 {
    flex-direction: column;

  }

  .cas4 {
    margin-left: 0px;
    
  }
  .cas3 img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 25px;
  }
    .phone-icon i {
    font-size: 1.2rem;
    padding: 6px;
  }
}

@media (max-width: 480px) {
  .property-details-table {
    font-size: 12px;
  }
  .cas4 h3 {
    font-size: 1.5rem;
    text-align: start;
  }
  .cas5 {
    text-align: start;
    font-size: 1.2rem;
  }
  .cas6 p {
    font-size: 1rem;
  }
    .phone-icon i {
    font-size: 1rem;
    padding: 4px;
  }
}
/* contact agent */



/* newsletter */

.newsletter-section {
  background-image: url('/static/images/news.png');
  background-size: cover;
  background-position: center;
  height: 50vh;
  position: relative;
  margin-top: 0;
}

.newsletter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10%;
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  flex-wrap: wrap;
  text-align: left;
}

.newsletter-content h2 {
  color: white;
  font-size: 3em;
  font-weight: bold;
  flex: 1;
  margin-right: 20px;
}




.newsletter-wrapper
 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 500px;
}
@media (max-width: 580px) {
.newsletter-wrapper{
min-width:0;

}
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 50px;
  padding: 5px 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.newsletter-form input {
  border: none;
  outline: none;
  padding: 15px 20px;
  font-size: 1em;
  border-radius: 50px;
  flex: 1;
}

.newsletter-form button {
  background-color: #074b72;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #0056b3;
}

.newsletter-agreement {
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.newsletter-agreement a{
  color: white;
}


/* Responsive Design */
@media (max-width: 768px) {
  .newsletter-content {
      flex-direction: column;
      text-align: center;
  }

  .newsletter-content h2 {
      margin-bottom: 20px;
      text-align: center;
  }

  .newsletter-form {
      max-width: 100%;
  }
}

/* newsletter */



/* Responsive styles */
@media (max-width: 1200px) {
    .property-container {
        margin-left: 50px;
    }
    .carousel-nav {
        top: 350px;
        left: 700px;
    }
}

@media (max-width: 992px) {
    .carousel-slide.large .carousel-image {
        width: 600px;
        height: 375px;
    }
    .carousel-slide.small .carousel-image {
        width: 400px;
        height: 250px;
    }
    .carousel-nav {
        top: 300px;
        left: 500px;
    }
    .container {
        margin: 50px;
    }
    .content-wrapper {
        flex-direction: column;
    }
    .home-description {
        width: 100%;
    }
    .contact-form {
        width: 100%;
        margin-left: 0;
        padding: 10px;
    }
    .details-grid {
        grid-template-columns: 1fr;
    }
    .detail-item {
        font-size: 30px;
    }
    .description h3 {
        font-size: 25px;
    }
    .description p,.description ul {
        font-size: 18px;
    }
    .location h3 {
        font-size: 25px;
    }
    .location p {
        font-size: 18px;
    }
    .location-map, .view-360 iframe {
        height: 300px;
        margin: 10px;
    }
}

@media (max-width: 768px) {
    .carousel-slide.large .carousel-image {
        width: 400px;
        height: 250px;
    }
    .carousel-slide.small .carousel-image {
        width: 300px;
        height: 200px;
    }
    .carousel-nav {
        top: 150px;
        left: 10px;
        width: calc(100% - 20px); /* Full width minus padding */
        justify-content: space-between;
    }
    #prev-btn {
        left: 0;
    }
    #next-btn {
        right: 0;
    }
   
}

@media (max-width: 576px) {
    .property-container {
        margin-left: 20px;
    }
    .carousel-nav {
        top: 120px;
        left: 5px;
        width: calc(100% - 10px); /* Full width minus padding */
        justify-content: space-between;
    }
    #prev-btn {
        left: 0;
    }
    #next-btn {
        right: 0;
    }
    .home-details h2 {
        font-size: 20px;
    }
    .description h3 {
        font-size: 22px;
    }
    .description p,.description ul, .location p {
        font-size: 16px;
    }
    .location-map, .view-360 iframe {
        height: 200px;
        margin: 5px;
    }
}


.contact-section {
    max-width: 600px;
    margin: auto;
    background-color: #fffaf0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
  }
  
  .contact-card {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .agent-info {
    margin-bottom: 20px;
  }
  
  .agent-name {
    font-size: 24px;
    font-weight: bold;
  }
  
  .agent-title {
    font-size: 18px;
    color: #ff4500;
  }
  
  .agent-phone,
  .agent-email,
  .agent-location,
  .agent-website {
    font-size: 14px;
    margin: 5px 0;
  }
  
  .agent-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .contact-form .btn-submit {
    background-color: #ff4500;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .contact-form .btn-submit:hover {
    background-color: #ff6347;
  }
  







  .nls1-section {
    background-color: #dceffd;
    padding: 40px 120px;
}
@media (max-width:580px){
    .nls1-section {
        padding: 40px 10px;
    }
}


.nls2-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.nls3-header-left {
    text-align: left;
}

.nls6-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.nls7-icon {
    height: 20px;
    width: auto;
}

.nls8-title {
    font-size: 32px;
    font-weight: 700;
    color: #074b72;
}

.nls10-explore-all {
    background-color: #074b72;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.nls10-explore-all:hover {
    background-color: #0050cc;
}

.nls11-card-container {
  display: flex; /* Use flex for responsiveness */
  flex-wrap: wrap; /* Wrap cards to the next line if needed */
  gap: 20px;
  justify-content: center; /* Center the cards in the section */
  margin-top: 20px;
}


.nls4-shape {
    position: absolute;
    z-index: 0;
}

.nls5-shape-left {
    top: 100%;
    left: 1%;
    height: 100px;
}

.nls19-shape-right {
    right: 10%;
    height: 120px;
}

.nls12-property-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    padding: 15px;
    transition: transform 0.2s ease;
    width: 350px; /* Set the width to 350px */
    margin-left: 15px;
  }
  
.nls12-property-card:hover {
    transform: translateY(-10px);
}
  

.nls-badge-wrapper {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 10px; /* spacing between badges */
}

.nls13-badge {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  background-color: #074b72;
}

.nls14-badge-sale {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  color: #074b72;
  background-color: white;
}

  
  .nls15-property-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 5px;
  }
  
  .nls16-property-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    
}
  
  .property-link{
    text-decoration: none;
    color: #333 !important;
  }
  
  .nls17-property-location {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
  }
  
  .nls18-property-details {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
  }
  
  .nls18-property-details div {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .nls18-property-details i {
    font-size: 14px;
    color: #888;
  }
  
  .property-footer {
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ddd; /* Optional if you want an additional border */
  }
  
  .footer-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ddd; /* Adjust color as needed */
  }
  
  .redirect-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #074b72; /* Adjust for desired background color */
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .redirect-icon:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
  }

  .nls20-property-location {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  
  .nls21-location-tag-apartment {
    border: 2px solid #074b72; /* Blue border */
    background-color: #fff; /* White background */
    color: #333; /* Black text */
    font-size: 14px;
    
    padding: 5px 15px;
    border-radius: 25px;
  }
  
 
  .nls21-location-tag-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    
    color: #000; 
  }
  
  .nls21-location-tag-location i {
    font-size: 14px;
    color: #074b72;
  }
 .heart-icon {
font-size: 20px;
  border: 2px solid #074b72;
  color: #074b72;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
}


.shortlisted {
  color: #C837AB;
}

.not-shortlisted {
  color: #074b72;
}
/* Responsive for New Listings Section */
.nls8-title {
    font-size: 48px;
    font-weight: 600;
    color: #074b72;
}
  .custom-alert {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
    z-index: 10000;
  }

  .alert-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 90%;
  }

  .alert-message {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
  }

  .alert-btn {
    background-color: #074b72;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .alert-btn:hover {
    background-color: #05537f;
  }

      .phone-icon1 {
      font-size: 20px;
      border: 2px solid #074b72;
      color: #074b72;
      border-radius: 50%;
      padding: 10px;
      cursor: pointer;
    }

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center; align-items: center;
}

.contact-modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
}


.modal input,
.modal textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1em;
  box-sizing: border-box;
}

.checkbox-container {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
  width: 10%;
}

.checkbox-container label { 
  align-items: center;
  gap: 6px;
}

.contact-modal-content button {
    width: 100%;
    padding: 10px;
    background-color: #074b72;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}