* {
  margin: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
/*header*/

.sub-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item {
  color: white !important;
}
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*padding: 10px 0;*/
  border-radius: 4px;
}
/*.header .logo {*/
/*  padding: 12px 30px;*/
/*}*/
.header .logo img {
  width: 136px;
}
.header .logo a {
  font-size: 30px;
  text-transform: capitalize;
  color: #e91e63;
  font-weight: 600;
  /* margin: 100px; */
}
.header .nav-menu {
  padding: 0 125px;
}
.header .menu > .menu-item {
  display: inline-block;
  margin-left: 30px;
  position: relative;
}
.header .menu > .menu-item > a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: white;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus {
  display: inline-block;
  height: 12px;
  width: 12px;
  position: relative;
  margin-left: 5px;
  pointer-events: none;
  color: white;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background-color: #000000;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after {
  background-color: #e91e63;
}
.header .menu > .menu-item > a .plus:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a {
  color: cyan;
}
.header .menu > .menu-item > .sub-menu {
  width: 150px;
  position: absolute;
  left: 0;
  top: 100%;
  padding: 10px 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  left: 0;
  line-height: 40px;
  background: #1e1240;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  text-align: center;
  color: white;
}
@media (min-width: 992px) {
  .header .menu > .menu-item-has-children:hover > .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .header .menu > .menu-item-has-children:hover > a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.header .menu > .menu-item > .sub-menu > .menu-item {
  display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: white !important;
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.header .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: white;
}
.header .open-nav-menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: #000000;
  position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  box-sizing: border-box;
}
.header .open-nav-menu span:before {
  top: -7px;
}
.header .open-nav-menu span:after {
  top: 7px;
}
.header .close-nav-menu {
  height: 40px;
  width: 40px;
  color: #ffffff;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}
.header .close-nav-menu img {
  width: 16px;
}
.header .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

/*home section*/
.home-section {
  width: 100%;
  display: block;
  min-height: 100vh;
  background-image: url("../img/home.jpg");
  background-position: center top;
  background-size: cover;
}

/* responsive */

@media (max-width: 991px) {
  .header .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  .header .nav-menu {
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    height: 100%;
    top: 0;
    overflow-y: auto;
    background-color: #000526;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }
  .header .nav-menu.open {
    visibility: visible;
    right: 0px;
  }
  .header .menu > .menu-item {
    display: block;
    margin: 0;
  }
  .header .menu > .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .menu > .menu-item > a {
    color: #ffffff;
    padding: 12px 15px;
    border-bottom: 1px solid #333333;
  }
  .header .menu > .menu-item:first-child > a {
    border-top: 1px solid #333333;
  }
  .header .menu > .menu-item > a .plus:before,
  .header .menu > .menu-item > a .plus:after {
    background-color: #ffffff;
  }
  .header .menu > .menu-item-has-children.active > a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .header .menu > .menu-item > .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
  }
  .header .menu > .menu-item > .sub-menu > .menu-item > a {
    padding: 12px 45px;
    color: #ffffff;
    border-bottom: 1px solid #333333;
  }
  .header .close-nav-menu,
  .header .open-nav-menu {
    display: flex;
  }
}
.header {
  background: #140e46;

  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
}

/* .fiter_section {
  margin-top: 80px;
  padding: 20px 0;
  background-image: url("../../img/headeimg.png");
  background-size: cover; 
  background-repeat: no-repeat; 
  background-position: center;
  z-index: 1;
  position: relative;
} */

.headerbtn {
  background: cyan;
  border-radius: 10px;
  font-size: 16px;
  padding: 10px !important;
}
.anchour a {
  color: black !important;
}
.btn-close {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
}
.btn-close:hover {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.fiter_section h3 {
  color: white;
  margin: 10px 0px 20px 0px;
}
.filter_title {
  border: 1px solid black;
  width: 400px;
  padding: 5px;
  border-radius: 10px;
}
.from-section1 {
  border: 1px solid gray;
  padding: 15px;
  border-radius: 10px;
}
.from-section1 select {
  padding: 10px;
}
.from-section2 {
  border: 1px solid gray;
  padding: 15px;
  margin-top: 10px;
  border-radius: 10px;
}
.serchinput {
  padding: 10px;
}
.form-check-label {
  color: white;
}
.from-section2 select {
  padding: 10px;
}

.nb__2hf8o {
  position: relative;
  color: white;
}
.nb__2hf8o:before {
  left: -70px;
}

.nb__2hf8o:before {
  background-color: #ccc;
  content: "";
  height: 1px;
  position: absolute;
  top: 10px;
  width: 60px;
}

.nb__2hf8o:after {
  background-color: #ccc;
  content: "";
  height: 1px;
  position: absolute;
  top: 10px;
  width: 60px;
  margin-bottom: 20px;
}
.postproperty-btn {
  background: cyan;
  border-radius: 10px;
  padding: 10px;
  color: black !important;
}

@media screen and (max-width: 768px) {
  .headerbtn {
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
    width: 100%;
  }

  .btn-close {
    font-size: 16px;
  }

  /*.fiter_section {*/
  /*  margin-top: 50px;*/
  /*  padding: 15px;*/
  /*}*/

  .fiter_section h3 {
    font-size: 18px;
    margin: 8px 0 15px 0;
  }

  .filter_title {
    width: 100%;
    padding: 5px;
    font-size: 14px;
  }

  .from-section1,
  .from-section2 {
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
  }

  .from-section1 select,
  .from-section2 select {
    width: 100%;
    font-size: 14px;
  }

  .form-check-label {
    font-size: 14px;
  }

  .nb__2hf8o {
    font-size: 14px;
    text-align: center;
  }

  .nb__2hf8o:before,
  .nb__2hf8o:after {
    width: 30px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .postproperty-btn {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    border-radius: 8px;
    color: black !important;
  }
}

.about-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transform: skew(20deg);
  z-index: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}

/*** About ***/
.about-img img {
  position: relative;
  z-index: 2;
}

.about-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transform: skew(20deg);
  z-index: 1;
}

/* ===========About Section Home================ */
.aboutsectionhome {
  padding: 20px;
}

.property_card {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  /* margin-top: 100px; */
}

.property_header h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.property_header .location {
  color: #666;
  font-size: 14px;
}

.property_info {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.price_box {
  width: 33%;
  font-size: 18px;
  font-weight: bold;
}

.price_box span {
  display: block;
  color: #777;
  font-size: 14px;
  font-weight: normal;
  margin-top: 5px;
}

.property_content {
  display: flex;
  gap: 20px;
}

.property_image img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.property_features {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 10px;
  border: 1px solid #7a9495;
  border-radius: 10px;
}

.feature_box {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: #333;
}

.property_actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.owner_btn {
  background-color: #ff5a5f;
  color: white;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  flex-grow: 1;
  width: 200px !important;
}

.icon_btn {
  background-color: #f5f5f5;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkbox-group label,
.radio-group label {
  font-size: 14px;
  color: #333;
}

input[type="checkbox"],
input[type="radio"] {
  margin-right: 6px;
}

.form-range {
  width: 100%;
  margin-top: 10px;
}
.checkbox-group-two-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-group-two-cols label {
  width: 48%;
  display: flex;
  align-items: center;
  font-size: 11px;
  color: #333;
}
.feature_box {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.feature_box > div {
  flex: 1;
  text-align: center;
  font-size: 16px;
}

.feature_box label {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

.property_content {
  display: flex;

  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  height: 250px; /* Set the height you want */
}

.property_image {
  flex: 1;
  height: 100%;
}

.property_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property_features {
  flex: 2;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature_box {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.feature_box > div {
  flex: 1;
  text-align: center;
  font-size: 16px;
}

.feature_box label {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

.property_actions {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 10px;
}

.owner_btn {
  padding: 6px 12px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.icon_btn {
  background-color: #eee;
  border: none;
  padding: 6px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
}

/* Make left column fill full viewport height */
.all_property_card .col-md-3 {
  /* fill viewport height */
  margin-top: 100px;
  box-sizing: border-box; /* ensure padding does not increase height */
}

.filter-sidebar {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  font-family: Arial, sans-serif;
  border: 1px solid gray;

  height: calc(100vh - 100px); /* fill viewport minus top margin */
  overflow-y: auto; /* enable vertical scrolling */
  overflow-x: hidden; /* avoid horizontal scroll */
  margin-top: 0; /* remove margin since padding applied on col-md-3 */
  box-sizing: border-box;

  /* Hide scrollbar - cross browser */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.filter-sidebar::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Parent container and row fill viewport and hide their scroll */
.all_property_card .container-fluid,
.all_property_card .row {
  height: 100vh;
  overflow: hidden;
}

.alldeatils {
  height: 100vh;
  overflow-y: auto;
  padding: 20px;

  /* Hide scrollbar - cross browser */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.alldeatils::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Optional: hide col-md-2 */
.all_property_card .col-md-2 {
  display: none;
}


body {
  background-color: unset !important;
}
.header {
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
}
.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tab-item img {
  cursor: pointer;
}
.cardfilter {
  background: white;
  padding: 10px;
  border-radius: 10px;
}
.form-check-label {
  color: black;
}
.fiter_section h3 {
  margin-top: 20px;
}

/* Custom CSS for responsiveness */
.form-box {
  /* background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%) !important; */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px; /* Space from the heading */
}

.tab-container {

  justify-content: center; /* Center the tabs */
  flex-wrap: wrap; 
  gap: 15px; /* Space between tabs */
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.3);
  display: flex;
  width:100%;
  
}

.tab-item {
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-align: center;
}

.tab-btn {
  margin-top: 5px;
  font-weight: bold;
  color: #fff !important;
}

/* Adjust search button for smaller screens */
.search-btn {
  width: 100%; /* Full width on small screens */
  padding: 10px;
  border-radius: 5px;
  border: none;
  background-color: #007bff; /* Example button color */
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-btn:hover {
  background-color: #0056b3;
}

/* Ensure select and input fields are responsive */
.form-select,
.form-control {
  width: 100%;
}

/* For very small screens, adjust column stacking */
@media (max-width: 575.98px) {
  .col-sm-6,
  .col-sm-12 {
    margin-bottom: 10px; /* Add some space between stacked elements */
  }
}
    /* Reset dropdown background color */
.dropdown-menu {
  background-color: #fff !important; /* White background */
  color: #212529;                    /* Default Bootstrap text color */
  border: 1px solid #dee2e6;         /* Light border */
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15); /* Optional shadow */
  padding: 0.5rem 0;
  border-radius: 0.375rem;
}

/* Style dropdown items */
.dropdown-item {
  color: #212529;
  padding: 0.5rem 1rem;
  transition: background-color 0.2s ease-in-out;
}



/* Fix profile image alignment */
#profileDropdown img {
  border: 2px solid #ddd;
  padding: 2px;
  background-color: #fff;
}
#profileDropdown i{
    color:yellow;
    border:1px solid white;
    border-radius:50%;
    padding:10px;
    margin-right:20px;
}
#profileDropdown.scrolled i {
    color: #40fc00;
   border: 1px solid #08f6f2;
}
.loginul {
    position: relative;
    display: flex;
    gap: 50px;
    padding-left: 0;
    margin-bottom: 0;

}

.loginul li {
    position: relative;
    list-style: none;
   padding: 5px 10px 5px 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.5s;
    border:1px solid  #46f722;
   
}
.loginul li i{
    font-size:20px;
    color:yellow;
}

