.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: 100px; /* 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: 10px !important;
        font-family: 'Franie-Light' ;
        line-height: 14px !important;
    }
.about-subheading{
    font-size: 15px;
    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;
    overflow: hidden;
  }
  
  .news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* The gradient overlay at the bottom */
  .news-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%; /* Adjust height as needed */
    background: linear-gradient(to top, rgba(0, 0, 0, 0), transparent);
    z-index: 1;
  }
  
  /* Your link text, positioned above the overlay */
  .news-text {
    position: absolute;
    bottom: 15px;
    left: 39%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 2; /* Make sure it's on top of the overlay */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
    padding: -1px 15px;
    border-radius: 5px;
    text-decoration: none;
  }
  
  .news-text:hover {
    cursor: pointer;
  }
  /* Extended details section below the image */
  .news-details-section {
    padding: 10px;
    text-align: center;
    /* Slim borders on left, right, and bottom */
    box-sizing: border-box;
    font-family: 'Franie-Light';

  }
  
  /* Text for the extended details */
  .news-details-text {
    font-size: 14px;
    color: #ffffff;
    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);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    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: 18px;
  }
  
  /* 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';
    text-transform: uppercase;
  }
  .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);
  }
  .container-heading{
    font-family:  'Franie-Light';
    color: #ffffff !important; 
    }
  .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: 80% ;  /* 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: 1px;
    }
    
    .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 20px; /* 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 {
  margin-left: 48px;
  margin-right: 32px;
}


@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: rgb(255, 255, 255); /* Line color */
}
.property-name {
  padding: 0 15px;
}

/* Desktop layout */
.navigation .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.left-nav, .right-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.left-nav li, .right-nav li {
  margin: 0 15px;
}

.center-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.center-logo .logo {
  height: 44px;
}

/* Mobile layout */
@media screen and (max-width: 768px) {
  .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  /* Center the logo */
  .center-logo {
    order: -1; /* Ensures the logo stays at the top */
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .center-logo .logo {
    height: 50px;
  }

  /* Hide menus by default */
  .left-nav, .right-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 25px;
    background: transparent; /* Removes black background */
  }

  /* Show stacked menus */
  .left-nav.show, .right-nav.show {
    display: flex;
  }

  .left-nav li, .right-nav li {
    margin-bottom: 15px;
  }

  /* Burger icon */
  .nav-btn {
    cursor: pointer;
    margin-bottom: 20px;
  }

  .nav-btn figure {
    background-color: white;
    height: 3px;
    margin: 5px 0;
    width: 30px;
  }
  .navigation .nav {
    margin: 60px 0px;
}
}



.btn-small {
  font-size: 12px;
  padding: 8px 11px;
  margin-top: 35px;
}

hr {

  border-top: 1px solid #000 !important;
}

body {
  font-family: 'Franie-Light' !important;
  font-size: 12px;

}

.form-control {
  color: #ffffff !important;
}

.description-heading{
  font-size: 16px;
}
.description-detail{
  font-size: 12px;
  color: #acacac;
}

.blog-subheading{
  font-size: 18px;
  line-height:1.5;
}
.blog-description{
  font-size: 14px;
  line-height:1.5;
  color:#343434;
}
.blog-points{
  color:#636363;
  font-size: 12px;
  line-height:1.7;
}
.blog-heading{
  color:#000000;
  font-size: 17px;
}

.blog-bold{
  font-family: 'Franie-Regular';
}
.blog-banner {
padding: 300px !important;
}





/* Wrapper */
.video-grid {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

/* Main video takes 60% of the width */
.main-video {
  flex: 0 0 60%;
}

.main-video iframe {
  width: 100%;
  height: 350px;
  border-radius: 12px;
}

/* Side videos take 40% */
.side-videos {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.side-video {
  display: flex;
  align-items: flex-start;
}

.side-video iframe {
  width: 50%;
  height: 140px;
  border-radius: 8px;
}

/* Meta text style */
.video-meta {
  margin-top: 5px;
  font-size: 12px;
  color: #ffffff;
  margin-left: 10px;
}

/* Smaller description */
.sub-video-desc {
  font-size: 10px;
  margin-top: 8px;
}

/* ✅ MOBILE VIEW (stack vertically) */
@media (max-width: 768px) {
  .video-grid {
    flex-direction: column;
  }

  .main-video,
  .side-videos {
    width: 100%;
    flex: unset;
  }

  .main-video iframe {
    height: 250px;
  }

  .side-video {
    flex-direction: column;
  }

  .side-video iframe {
    width: 100%;
    height: 200px;
  }
}
.youtube-sec{
  margin-top: 20px !important;
}