@media (min-width: 1200px) {
  .col-lg-1-5 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.object-fit-cover {
  object-fit: cover;
}

.hero-section {
  min-height: 100vh; /* allows taller content to expand */
  height: auto; /* disables fixed viewport height on small screens */
}

@media (min-width: 768px) {
  .hero-section {
    height: 100vh; /* restore full-screen height on medium+ */
  }
}
/* Card Image Container for background and overlay effect */
.property-image-container {
    height: 300px; 
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: .75rem; /* Matches rounded-xl */
    overflow: hidden;
}

/* Dark overlay for text contrast and blur effect */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    /* Bootstrap does not have a native backdrop-filter utility, so we keep this style */
    backdrop-filter: blur(2px);
}

.badge-property {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    text-transform: uppercase;
}

.property-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.property-info-box {
  background-color: rgba(255, 255, 255, 0.6) !important; 
  backdrop-filter: blur(2px);
}
.hover-danger:hover{
    color: #df2c2c !important;
}
/* Mobile Menu CSS */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap');


:root {
  --bg-default: #222327;
  --primary-white: #ffffff;
  --primary-red: #ff3c41;
}



.navigation {
  display: inherit;
  width: 100%;
  max-width: 420px;
  height: 70px;
  background: var(--primary-white);
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px 10px 0 0;
  padding: 0 10px;
  z-index: 99;
}

.navigation .listWrap {
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  padding-left: 0rem !important;
}

.navigation .listWrap li {
  width: 60px;
  height: 70px;
  position: relative;
  z-index: 1;
}

.navigation .listWrap li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
  position: relative;
}

.navigation .listWrap li .icon {
  color: var(--bg-default);
  font-size: 2rem;
  transition: transform 0.3s, color 0.3s;
  line-height: 70px;
}

.navigation .listWrap li .text {
  font-size: 0.7rem;
  color: var(--bg-default);
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s;
  position: absolute;
  top: 40px;
}

.navigation .list.active a .icon {
  color: var(--primary-red);
  z-index: 1;
}
.navigation .list.active a .user_image{
  color: var(--primary-red);
  z-index: 1;
}

.navigation .list.active a .text {
  opacity: 1;
  color: var(--primary-red);
  transform: translateY(5px);
}

/* .navigation .listWrap .indicator {
  position: absolute;
  width: 60px;
  height: 60px;
  top: -40%;
  border-radius: 50%;
  background: var(--primary-red);
  border: 4px solid var(--bg-default);
  z-index: 0;
  transition: transform 0.3s;
} */

/* Position indicator under active icon */
/* .navigation .list:nth-child(1).active ~ .indicator { transform: translateX(calc(60px * 0)); }
.navigation .list:nth-child(2).active ~ .indicator { transform: translateX(calc(60px * 1 + 8px)); }
.navigation .list:nth-child(3).active ~ .indicator { transform: translateX(calc(60px * 2 + 16px)); }
.navigation .list:nth-child(4).active ~ .indicator { transform: translateX(calc(60px * 3 + 24px)); }
.navigation .list:nth-child(5).active ~ .indicator { transform: translateX(calc(60px * 4 + 32px)); }
.navigation .list:nth-child(6).active ~ .indicator { transform: translateX(calc(60px * 5 + 40px)); } */
/* .navigation .list:nth-child(1).active ~ .indicator { left: calc(100% / 6 * 0); }
.navigation .list:nth-child(2).active ~ .indicator { left: calc(100% / 6 * 1); }
.navigation .list:nth-child(3).active ~ .indicator { left: calc(100% / 6 * 2); }
.navigation .list:nth-child(4).active ~ .indicator { left: calc(100% / 6 * 3); }
.navigation .list:nth-child(5).active ~ .indicator { left: calc(100% / 6 * 4); }
.navigation .list:nth-child(6).active ~ .indicator { left: calc(100% / 6 * 5); } */

.pointer{cursor: pointer;}

/* form Css */
.multi-select {
  position: relative;
}

/* .select-box {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  /* padding: 10px 12px; 
  padding: .375rem 2.25rem .375rem .75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
} */

.select-box {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: .375rem 2.25rem .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.selected-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 24px;
  overflow-y: auto;
}

.tag {
  background: #007bff;
  color: #fff;
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 0.85rem;
}

.arrow {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") 
    no-repeat center center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.arrow.open {
  transform: rotate(180deg);
}
.select-box.open {
  transform: rotate(180deg);
}

.options-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-top: 4px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: none;
  z-index: 100;
}

.options-list {
  max-height: 180px;
  overflow-y: auto;
  padding: 8px 0;
}

.option {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.option:hover {
  background: #f1f1f1;
}

.option input {
  margin-right: 8px;
  accent-color: #007bff;
}

.actions {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  border-top: 1px solid #eee;
  background: #fafafa;
  border-radius: 0 0 8px 8px;
}

.dropbtn {
  padding: 6px 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
}

.dropbtn.ok {
  background: #007bff;
  color: white;
}

.dropbtn.cancel {
  background: #ccc;
  color: #000;
}

.dropbtn.ok:hover {
  background: #0056b3;
}

.dropbtn.cancel:hover {
  background: #999;
}
