
@media only screen and (max-width: 600px) {
.locationlist{
    padding-top: 136px !important;
}
}

/* property slider */
/* General styles for the slider container */
.properties-slider2 {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  .single-properties {
    flex: 0 0 100%;
    max-width: 100%;
    transition: transform 0.5s ease-in-out;
  }
  
  .item-single {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .slidesimage img {
    width: 100%;
    height: auto;
  }
  
  .content-slider {
    padding: 15px;
    text-align: center;
  }
  
  /* Optional: Add some styling for the image caption */
  .image-cap {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
  }
  
  .image-cap i {
    font-size: 18px;
  }
  
  /* Hide overflow for parent container */
  .properties-area {
    overflow: hidden;
  }
  
  /* Responsive styles (optional) */
  @media (max-width: 768px) {
    .single-properties {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }
  
  /* rating review */
  .userreview-star-rating {
    direction: rtl;
    display: inline-block;
    font-size: 1.5em;
    position: relative;
}

.userreview-star-rating input {
    display: none;
}

.userreview-star-rating label {
    color: #ccc;
    cursor: pointer;
    display: inline-block;
    font-size: 1em;
    padding: 0;
    position: relative;
}

.userreview-star-rating input:checked ~ label {
    color: #f5c518;
}

.userreview-star-rating label:hover,
.userreview-star-rating label:hover ~ label {
    color: #f5c518;
}

  /* rating review */

  /* custom css for review slider */
  .reviewslider-section {
    padding: 40px 0;
}

.reviewslider-container {
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto; /* Adjust this if necessary */
    padding: 20px; /* Optional: Add some padding */
}

.reviewslider-star-rating {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000; /* Adjust navigation button color */
}

.swiper-pagination-bullet {
    background: #000; /* Adjust pagination bullet color */
}
.customblogcard-row {
  display: flex;
  flex-wrap: wrap;
}

.customblogcard-grid {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px; /* Adjust as needed */
  padding: 0 15px; /* Adjust as needed for spacing */
}

.customblogcard-single {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #ddd; /* Optional border for visual separation */
  padding: 15px; /* Adjust padding as needed */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Optional shadow for a card effect */
  background-color: #fff; /* Ensure card background is white */
}

.customblogcard-single img {
  width: 100%;
  height: auto; /* Adjust based on image aspect ratio */
  object-fit: cover; /* Ensure image covers the area without distortion */
}

.customblogcard-content {
  flex: 1; /* Allows the content to fill available space */
  display: flex;
  flex-direction: column;
}

.customblogcard-content h4 {
  margin-top: 0;
  margin-bottom: 10px; /* Adjust spacing as needed */
  font-size: 1.25rem; /* Adjust font size as needed */
}

.customblogcard-content span {
  color: #666; /* Adjust color as needed */
  font-size: 0.875rem; /* Adjust font size as needed */
  margin-bottom: 10px; /* Adjust spacing as needed */
}

.customblogcard-content p {
  flex: 1;
  margin-bottom: 15px; /* Adjust spacing as needed */
  font-size: 0.875rem; /* Adjust font size as needed */
  color: #333; /* Adjust text color as needed */
}

.customblogcard-btn {
  margin-top: auto; /* Pushes the button to the bottom */
  text-align: center;
  display: block;
  padding: 10px 20px; /* Adjust padding as needed */
  background-color: #da1111; /* Adjust button color as needed */
  color: #fff; /* Button text color */
  text-decoration: none;
  border-radius: 4px; /* Rounded corners */
  font-size: 0.875rem; /* Adjust font size as needed */
}

.customblogcard-btn:hover {
  background-color: #df380e; /* Adjust hover color as needed */
  text-decoration: none;
}

@media (max-width: 767px) {
  .customblogcard-grid {
      padding: 0 10px; /* Adjust for smaller screens */
  }
}

/* custom blog show */
@media (min-width: 1024px) {
  figure.customblogshow {
    height: 700px !important;
}
img.customblogview-blog-show-image {
  height: 100% !important;
}
}
/* custom blog show */
  /* custom css for review slider */

  .header-v1 {
    position: relative;
    z-index: 999;
  }
  
  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff; /* add your navbar background color here */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  
  .sticky .header-navbar {
    padding-top: 10px; /* adjust the padding to match your navbar height */
  }
  
 /* Blog Page CSS */

.customblogview-banner-area {
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.customblogview-banner-content {
  text-align: center;
}

.customblogview-banner-content h3 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.customblogview-banner-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.customblogview-banner-content ul li {
  margin-right: 10px;
}

.customblogview-banner-content ul li a {
  color: #fff;
  text-decoration: none;
}

.customblogview-blog-area {
  padding: 50px 0;
}

.customblogview-blog-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Add this to make 3 columns on large screens */
@media (min-width: 992px) {
  .customblogview-blog-grid {
    width: calc(33.33% - 20px);
    margin: 10px;
  }
}

/* Add this to make 3 columns on medium screens */
@media (min-width: 768px) and (max-width: 991px) {
  .customblogview-blog-grid {
    width: calc(50% - 20px);
    margin: 10px;
  }
}

/* Add this to make 1 column on small screens */
@media (max-width: 767px) {
  .customblogview-blog-grid {
    width: 100%;
    margin: 10px;
  }
}

.customblogview-blog-grid {
  margin: 20px;
}

.customblogview-blog-single {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.customblogview-blog-single:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);
}

.customblogview-blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.customblogview-blog-content {
  padding: 20px;
}

.customblogview-blog-content h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.customblogview-blog-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.customblogview-blog-btn {
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
}

/* Media Queries */

/* Tablet and Mobile Devices */
@media (max-width: 768px) {
  .customblogview-banner-area {
      height: 50vh;
  }
  .customblogview-blog-grid {
      margin: 10px;
  }
  .customblogview-blog-single {
      padding: 15px;
  }
  .customblogview-blog-image {
      height: 150px;
  }
}

/* Mobile Devices */
@media (max-width: 480px) {
  .customblogview-banner-area {
      height: 30vh;
  }
  .customblogview-blog-grid {
      margin: 5px;
  }
  .customblogview-blog-single {
      padding: 10px;
  }
  .customblogview-blog-image {
      height: 100px;
  }
}
/* Laptop and Large Computer View */
@media (min-width: 1200px) {
  .customblogview-blog-grid {
    width: calc(33.33% - 20px);
    margin: 10px;
  }
}

/* Laptop View */
@media (min-width: 992px) and (max-width: 1199px) {
  .customblogview-blog-grid {
    width: calc(33.33% - 20px);
    margin: 10px;
  }
}

/* Blog Show Page CSS */

.customblogview-blog-show-area {
  padding: 50px 0;
}

.customblogview-blog-show-single {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.customblogview-blog-show-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.customblogview-blog-show-content {
  padding: 20px;
}

.customblogview-blog-show-content h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.customblogview-blog-show-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.customblogview-comments-area {
  padding: 50px 0;
}

.customblogview-comment-single {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.customblogview-comment-single h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.customblogview-comment-form-area {
  padding: 50px 0;
}

.customblogview-comment-form-area h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Media Queries */

/* Tablet and Mobile Devices */
@media (max-width: 768px) {
  .customblogview-blog-show-image {
      height: 200px;
  }
  .customblogview-comment-single {
      padding: 15px;
  }
}

/* Mobile Devices */
@media (max-width: 480px) {
  .customblogview-blog-show-image {
      height: 150px;
  }
  .customblogview-comment-single {
      padding: 10px;
  }
}
/* blog page custom css */

/* customcss for review section */
.customreviewview-section {
  padding: 40px 0;
}

.customreviewview-container {
  position: relative;
  overflow: hidden;
}

.customreviewview-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto; /* Adjust this if necessary */
  padding: 20px; /* Optional: Add some padding */
  background-color: #f7f7f7; /* Add a background color */
  border-radius: 10px; /* Add a border radius */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a box shadow */
}

.customreviewview-star-rating {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.customreviewview-heading {
  margin-bottom: 20px;
}

/* Add media queries for responsiveness */
@media (max-width: 768px) {
  .customreviewview-slide {
      padding: 15px;
  }
}

@media (max-width: 480px) {
  .customreviewview-slide {
      padding: 10px;
  }
  .customreviewview-star-rating {
      font-size: 1.2em;
  }
}
/* customcss for review section */

/* modal */
.modal-content.animated.fadeIn {
  position: relative;
  z-index: 1050; /* Bootstrap's default z-index for modals */
  width: 100%;
  max-width: 500px;
  margin: auto;
  /* background: url('/assets/images/ENQUIRFORM.webp') no-repeat center center; */
  background-color: white;
  background-size: cover;
  /* color: #ccc; */
  border-radius: 10px !important;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 3px 12px;
  
}



.modal-body {
  padding: 20px;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 10px;
}

.modal-title {
  color: black; /* Make sure the modal title is readable */
}

.close {
  color: black; /* Make the close button visible */
}

.btn-secondary, .btn-primary {
  border-radius: 0.3rem; /* Match button style to modal */
  width: 100%;
}
.modelheaderandfooter{
  border: 0px !important;
}
h3#enquiryModalLabel {
  text-align: center;
  font-weight: 600;
}

/* modal */
/* legal section view */
/* General Styles */
.custlegal-client-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

.custlegal-client-item {
  display: inline-block;
  text-decoration: none;
  color: #333;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100px;
  height: 100px;
}

.custlegal-client-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.custlegal-client-content {
  font-size: 16px;
  color: #666;
  margin: 20px auto;
  max-width: 100%;
}


/* legal section view */
/* for calls and whatsapp */
.customfixedReview-icons {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 10px; /* Space between icons */
  z-index: 1000; /* Ensure icons are on top of other content */
}

/* Style for each icon */
.customfixedReview-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px; /* Adjust size as needed */
  height: 50px; /* Adjust size as needed */
  border-radius: 50%; /* Make the icons circular */
  background-color: #fff; /* White background for better visibility */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* Optional shadow for better visibility */
  transition: background-color 0.3s, transform 0.3s; /* Smooth transitions */
}

.customfixedReview-icon img {
  width: 24px; /* Icon size */
  height: 24px; /* Icon size */
}

/* Hover effects */
.customfixedReview-icon:hover {
  background-color: #f0f0f0; /* Light grey on hover */
  transform: scale(1.1); /* Slightly enlarge icon on hover */
}

/* Media query for responsiveness */
@media (max-width: 600px) {
  .customfixedReview-icons {
      bottom: 5px;
      right: 5px;
      gap: 5px; /* Less space between icons on smaller screens */
  }
  
  .customfixedReview-icon {
      width: 40px;
      height: 40px;
  }
  
  .customfixedReview-icon img {
      width: 20px;
      height: 20px;
  }
}
.Review-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 400px;
}
h1 {
  text-align: center;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  /* padding: 10px; */
  border: 1px solid #ccc;
  /* border-radius: 5px; */
  box-sizing: border-box;
}
textarea {
  height: 100px;
}
button {
  background-color: #b7a865;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
button:hover {
  background-color: #b7a865;
}

/* enquiry model */
img.img-fluid.enquiryimage {
  max-height: 300px;
  width: 100%;
  border-radius: 5px;
}
/* enquiry model */
/* thankyou model */
.row.customrowcss {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
button.filter-button.btn-a.btn-danger {
  margin: 5px;
}
/* legal section view */
/* for calls and whatsapp */
.customfixedcontact-icons {
  position: fixed;
  bottom: 10px;
  right: 130px;
  display: flex;
  gap: 10px; /* Space between icons */
  z-index: 1000; /* Ensure icons are on top of other content */
}

/* Style for each icon */
.customfixedcontact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px; /* Adjust size as needed */
  height: 50px; /* Adjust size as needed */
  border-radius: 50%; /* Make the icons circular */
  background-color: #b7a865; /* White background for better visibility */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* Optional shadow for better visibility */
  transition: background-color 0.3s, transform 0.3s; /* Smooth transitions */
}

.customfixedcontact-icon img {
  width: 24px; /* Icon size */
  height: 24px; /* Icon size */
}

/* Hover effects */
.customfixedcontact-icon:hover {
  background-color: #f0f0f0; /* Light grey on hover */
  transform: scale(1.1); /* Slightly enlarge icon on hover */
}

/* Media query for responsiveness */
@media (max-width: 600px) {
  .customfixedcontact-icons {
      bottom: 5px;
      /* right: 123px; */
      margin: auto;
      gap: 5px; /* Less space between icons on smaller screens */
  }
  
  .customfixedcontact-icon {
      width: 40px;
      height: 40px;
  }
  
  .customfixedcontact-icon img {
      width: 20px;
      height: 20px;
  }
}
/* Main dropdown styling */
.dropdown-menu {
  display: none; /* Hide by default */
  position: absolute;
  z-index: 1000;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

/* Show the dropdown menu when the parent is clicked */
.dropdown.show .dropdown-menu {
  display: block; /* Show dropdown on click */
}

/* Submenu styling */
.dropdown-submenu {
  position: absolute;
  left: 100%; /* Position it to the right of the parent item */
  top: 0; /* Align the top of the submenu with the parent */
  display: none; /* Hide by default */
  z-index: 1000;
  background-color: #fff;
  /* border: 1px solid rgba(0, 0, 0, 0.15); */
}

/* Show the submenu if the parent item is active */
.dropdown-item.active .dropdown-submenu {
  display: block; /* Show submenu if the parent is active */
}

/* Style for dropdown and submenu items */
.dropdown-item,
.submenu-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #000;
  text-decoration: none;
  transition: background-color 0.2s;
}

/* Change color on hover */
.dropdown-item:hover,
.submenu-link:hover {
  background-color: #f8f9fa;
  color: #b7a865;
}

/* Responsive Styles */
@media (max-width: 768px) {
  /* Stack dropdown items vertically */
  .dropdown-menu {
    position: static; /* Change position for stacking */
    width: 100%; /* Full width */
    box-shadow: none; /* Remove box shadow for smaller screens */
  }

  /* Adjust padding for smaller screens */
  .dropdown-item,
  .submenu-link {
    padding: 0.75rem 1rem; /* Increase padding for touch targets */
  }

  /* Change submenu position */
  .dropdown-submenu {
    position: static; /* Stack below the parent */
    left: 0; /* Reset left position */
    top: auto; /* Reset top position */
    margin-top: -1px; /* Remove gap between parent and submenu */
  }
}

@media (max-width: 480px) {
  /* Further adjustments for very small screens */
  .dropdown-item,
  .submenu-link {
    font-size: 14px; /* Smaller font size */
  }
 
}
/* 
.filter-buttons {
  display: none;
} */

/* thankyou model */
/* for calls and whatsapp */