.hero-video {
  position: absolute; /* Ensure the video covers the entire screen */
  top: 0;
  left: 0;
  width: 100vw; /* Full viewport width */
  height: 100vh; /* Full viewport height */
  object-fit: cover; /* Maintain aspect ratio while covering the screen */
  z-index: -1; /* Ensure the video stays in the background */
}
.logo {
  width: 50px; /* Adjust this value as needed */
  height: auto;
  margin-top: 2px; /* Keeps the aspect ratio intact */
}
@font-face {
  font-family: 'Franie-Regular';
  src: url('fonts/Franie-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Franie-Light';
  src: url('fonts/Franie-Light.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
.socialmedia-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 0;
}

.note {
  opacity: 0.4;
  font-size: 12px;
  margin: 5px 0;
}

.socialmedia-align {
  text-align: right;
}
.social-icons {
  display: flex;
  gap: 15px; /* Space between icons */
  margin-top: 5px;
}

.icon svg {
  width: 20px;  /* Set icon width */
  height: 20px; /* Set icon height */
  object-fit: contain; /* Ensures proper scaling */
}
.banner-contact {
  position: fixed;
  right: 0px;
  bottom: 60px;
  z-index: 9999999999;
  display: flex
  ;
  align-items: center;
  gap: 20px;
  }
  
  #contact-main {
  display: flex
  ;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  gap: 10px;
  }
  .contact-item {
  background: #ffffff0a;
  /* backdrop-filter: blur(10px); */
  width: 80px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px 0 0 25px;
  border-right: none;
  border-top: 1px solid #ffffff99;
  border-left: 1px solid #ffffff99;
  border-bottom: 1px solid #ffffff99;
  cursor: pointer;
  transition: all 0.3s ease-in-out;  /* Smooth transition on all properties */
  }
  
  .contact-item:hover {
  background: #ffffff20; /* Slight background change on hover */
  transform: scale(1.1);   /* Slight scaling effect on hover */
  }

  .marquee-logo {
      width: 100%;
      overflow: hidden;
      white-space: nowrap;
      position: relative;
  }
  
  .marquee-logo-content {
      display: flex;
      gap: 30px; /* Space between logos */
      animation: marquee-scroll 15s linear infinite;
      width: max-content; /* Ensure smooth animation */
  }
  
  .marquee-logo-item img {
      width: 200px; /* Adjust size as needed */
      height: auto;
      display: block;
  }
  
  /* Keyframes for horizontal scrolling */
  @keyframes marquee-scroll {
      from {
          transform: translateX(0);
      }
      to {
          transform: translateX(-50%);
      }
  }

  .about-heading{
      font-family: 'Franie-Regular';
          font-size: 25px;
          font-weight: bold;
          margin-top: 5px;
          margin-bottom: 60px;
      
  }
  .about-description{
      font-size: 11px;
  }
.about-subheading{
  font-size: 18px;
  font-family: 'Franie-Regular';
}
/* For mobile screens */
@media (max-width: 767px) {
  .youtube-iframe {
      width: 100% !important;   /* Make iframe take up full width on mobile */
      height: 200px !important; /* Adjust height for mobile */
      margin-top: 20px;         /* Add top margin */
  }


}


.news-detail {
  font-family: 'Franie-Light';

}
/* Container for the entire item */
.news-item {
  position: relative;
  width: 100%;
  margin-bottom: 20px; /* Space between items */
}

/* Image container with fixed dimensions and borders (no bottom border) */
.image-container {
  position: relative;
  width: 100%;
  height: 300px; /* Fixed height */
  overflow: hidden;
 /* Right border */
}

/* Image fills the container */
.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay that slides up from the bottom of the image */
.news-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%; /* Adjust overlay height as needed */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  transform: translateY(100%); /* Start hidden (moved down) */
  opacity: 0;              /* Fully transparent initially */
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 2;              /* Ensure overlay is on top of the image */
}

/* On hover of the image container, slide the overlay up */
.image-container:hover .news-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* Text inside the overlay */
.news-text {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
  padding: 5px 10px;
  border-radius: 5px;
  font-family: 'Franie-Light';

}

/* Extended details section below the image */
.news-details-section {
  padding: 10px;
  background-color: white;
  text-align: center;
  /* Slim borders on left, right, and bottom */
  border-left: 1px solid rgb(234 234 234); 
  border-right: 1px solid rgb(234 234 234); 
  border-bottom: 1px solid rgb(234 234 234); 
  box-sizing: border-box;
  font-family: 'Franie-Light';

}

/* Text for the extended details */
.news-details-text {
  font-size: 14px;
  color: #333;
  margin: 0;
}
/* Container for the gallery block */
/* Gallery container */
#gallery .container {
  padding: 20px;
}

/* Grid layout for property cards */
.property-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Each property card (3 per row) */
.property-card {
  flex: 1 1 calc(33.33% - 20px);
  max-width: calc(33.33% - 20px);
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

/* Adjust to 2 per row on small screens */
@media (max-width: 768px) {
  .property-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

/* On extra small screens, show one per row */
@media (max-width: 480px) {
  .property-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Property image styling */
.property-card img {
  width: 100%;
  height: 200px; /* Fixed height; adjust as needed */
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;

}

/* Container for details under the image */
.property-details {
  padding: 10px;
      text-transform: uppercase;

}

/* Top row: property name & location */
.property-name-location {
  justify-content: center; /* Centers content horizontally */
  align-items: center; /* Centers content vertically */
  gap: 10px; /* Adds spacing between elements */
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 5px;
}

.property-name{
  font-family:  'Franie-Regular';
}
.property-location{
  font-family:  'Franie-Light';
}
/* Bottom row: property info with divider */
.property-info {
  display: flex;
  justify-content: center; /* Centers content horizontally */
  align-items: center; /* Centers content vertically */
  text-align: center; /* Ensures text alignment */
  font-size: 12px;
  padding-top: 5px;
  border-top: 1px solid #ccc;
  font-family: 'Franie-Light';

}
.property-card:hover {
  transform: translateY(-5px);
}

/* On hover, zoom the image slightly */
.property-card:hover img {
  transform: scale(1.05);
}
.gallery-heading{
  font-family:  'Franie-Light';
}
.icon-text {
  display: inline-flex;
  align-items: center; /* vertically centers the items */
  gap: 5px; /* optional: adds some space between the icon and text */
}

@media (max-width: 575.98px) {
  .modal-content {
      width: 100%;
      margin: auto;
      padding:5px;
  }

  .modal-header, .modal-body {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
  }

  .close.fixed-close {
      position: absolute;
      top: 10px;
      right: 10px;
              z-index: 1000; /* Ensures the close button is on top of other elements */
  }

  .img-fluid {
      max-width: 100%;
      height: auto;
  }

  .modal-content .left, .modal-content .right {
      width: 100%;
  }

  .nav-tabs {
      width: 100%;
      display: flex;
      justify-content: space-around;
  }

  .tab-content .tab-pane {
      width: 100%;
  }
  .tab-content img {
      width: 168% ;  /* Make iframe take up full width on mobile */
              margin: 0 auto;
  }
  .tab-content .gallery .one-item-carousel img {
      width: 80%; /* Adjust the width as needed */
      margin-left: 0px;
  }
  
  .nav-tabs {
      text-align: left;
      padding-left: 10px; /* Adjust the left margin as needed */
  }

  .nav-tabs li {
      display: inline-block;
  }

  .nav-tabs li a {
      display: block;
      padding: 10px 15px;
  }
}



.close-button {
  position: absolute;
  top: 5px; /* Adjust as needed */
  right: 10px; /* Adjust as needed */
  z-index: 1000; /* Ensure it appears above other content */
}
@media only screen and (max-width: 600px) {
  .close-button {
      top: 5px; /* Adjust as needed */
      right: 380px !important; /* Adjust as needed */
      font-size: 1.5em; /* Increase size for better visibility */
      max-width: 90%; /* Ensure it stays within the view */
      overflow: hidden;
  }
}
.clickable-card {
  cursor: pointer;
}
.modal-content {
  font-family:  'Franie-Regular';
  
}

.modal-header {
  width: 100%;
  padding: 0 20px; /* Adding left and right padding to the modal-header */
}

.property-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 15px;
  margin-bottom: 2px;
  padding: 0 16px; /* Adding left and right padding */
}

.title {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.title .row {
  display: flex;
  margin: 0; /* Remove default margin to eliminate extra space */
  padding: 0; /* Remove default padding to align elements properly */
}

.property-location {
  text-align: right;
  margin-left: auto; /* Ensures the location is aligned to the right */
  font-family:  'Franie-Regular';

}

.property-price {
  text-align: right;
  margin-left: auto; /* Ensures the price is aligned to the right */
}

.modal-title {
  font-size: 24px;
  text-align: left;
}
.separator-line {
border-top: 1px solid #ccc; /* Adds a light gray line */
margin: 4px 20px; /* Adds margin left and right to match the content */

}




.modal-description {
  font-family: 'Franie-Light';
  font-size: 12px;
  margin: 38px 32px 0 49px; /* Top Right Bottom Left */
  word-wrap: break-word; /* Ensures words break properly */
  overflow-wrap: break-word;
  white-space: normal; /* Allows text wrapping */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .modal-description {
      font-size: 11px; /* Adjust font size */
      margin: 20px 16px; /* Reduce margins */
  }
  .modal-dialog {
    position: relative;
    width: auto;
    margin: -8px !important;
}
.modal.apartment-selector .modal-dialog {
  width: 423px;
}
}

@media (max-width: 480px) {
  .modal-description {
      font-size: 10px;
      margin: 39px;
      max-height: 200px; /* Limit height to avoid overflow */
      /* overflow-y: auto;  */
      padding: 10px; /* Ensure content has spacing */
      background-color: #fff; /* Ensure readability */
  }

  .modal-dialog {
    position: relative;
    width: auto;
    margin: -8px !important;
}
.modal.apartment-selector .modal-dialog {
  width: 423px;
}

}



@media (max-width: 768px) {
.property-modal-header {
    flex-direction: column; /* Stacks the elements vertically on small screens */
    align-items: flex-start; /* Aligns the content to the left */
    text-align: left; /* Ensures text aligns left */
}

.property-location,
.property-price {
    margin-left: 0; /* Removes the right alignment */
    margin-top: 5px; /* Adds space between the rows */
    text-align: left; /* Aligns the text to the left on mobile */
}

.separator-line {
    margin: 10px 0; /* Removes the side margins on mobile */
}

.title {
    padding-left: 10px; /* Adds padding on left to ensure proper alignment */
    padding-right: 10px; /* Adds padding on right */
}
}
.custom-margin-left {
margin-left: -6px !important; /* Adjust the value as needed */
}
.center-propertycontent {
display: flex;
justify-content: center; /* Centers content horizontally */
align-items: center; /* Ensures vertical alignment */
width: 100%;
text-align: center;
}
.vertical-line {
width: 1px; /* Thickness of the vertical line */
height: 15px; /* Ensures visibility */
background-color: black; /* Line color */
}
.property-name {
padding: 0 15px;
}

.full-image-container {
    width: 101vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
    display: flex; /* Centers image */
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevents extra scroll */
}

.fullscreen-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Use cover if you prefer no empty spaces */
    max-width: 100%;
    max-height: 100%;
}


@media (max-width: 768px) { /* Tablets & Mobile Phones */
    .full-image-container {
        height: 50vh; 
        width: 105vw;/* Reduce height for smaller screens */
    }

    .fullscreen-image {
        object-fit: contain; /* Avoids excessive cropping on small screens */
    }
}
@media (min-width: 769px) and (max-width: 1024px) { 
    .full-image-container {
        height: 75vh; /* Adjust height for tablets */
    }

    .fullscreen-image {
        object-fit: cover; /* Ensures full-screen look */
        width: 100vw; /* Prevents right-side space issue */
        height: 100%; /* Keep aspect ratio */
    }
}

.mobile-video {
  display: none;
}

@media (max-width: 768px) {
  .desktop-video {
      display: none;
  }

  .mobile-video {
      display: block;
  }
}

.blog-heading {
  font-size: 22px; /* Equivalent to text-2xl */
  font-weight: 600; /* Semi-bold */
  margin-top: 16px; /* Equivalent to mt-3 */
}

.blog-description {
  font-size: 12px; /* Equivalent to text-base */
  line-height: 19px; /* Improves readability */
}
.hero-section {
  width: 100%;
  height: 400px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-title {
  width: 100%;
  height: 100%;
}

.hero-title img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures full section coverage */
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.blog-post{
  font-family:  'Franie-Light';

}
.header-menus{
      font-family:  'Franie-Regular';

}
