/* navbar css */

.logo-text {

  color: #09364e;
}

.logo-text2 {
  color: #3d8b6a;

}

.navbar {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.container {
  max-width: 1400px !important;
}


.navbar .nav-link {
  color: #000;
  padding: 8px 16px !important;
  border-radius: 6px;
  transition: all 0.3s ease;
}


.navbar .nav-link:hover {
  background-color: #3d8b6a;
  color: #fff !important;
}


.navbar .nav-link.active {
  background-color: #3d8b6a;
  color: #fff !important;
}

/* landing page css */
.header-section {
  position: relative;
  background-image: url(header.jpg);
  height: 250px;
  width: 100%;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}


.header-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(255, 255, 255, 0.25);
  z-index: 1;
}


.header-section .container {
  position: relative;
  z-index: 2;
}

.search-box {
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 820px;
  margin-top: 30px;
}

.search-btn {
  background-color: #3d8b6a;
  color: #fff;
  border-radius: 5px;

  height: 45px;
  font-weight: 500;
  transition: 0.3s;

}

.search-btn:hover {
  background-color: #2f6f55;
  color: #fff;
}

.search-box .form-control,
.search-box .form-select {

  height: 45px;
  border-radius: 0px;
  padding: 0 15px;
  box-shadow: none;
}

/* Focus remove */
.search-box .form-control:focus,
.search-box .form-select:focus {
  box-shadow: none;

}

.property-img,
.property-card {
  height: 200px;
  border-radius: 8px;
}

.chevron-icon {
  width: 40px;
  height: 40px;
}

.card-overlay {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;

  background-color: #2f6f55;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 5px;
}

.card-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);

  z-index: 1;
}


.card-overlay img {
  display: block;
}

.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;

  background: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;

  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.card-location {
  position: absolute;
  bottom: 45px;
  left: 12px;
  z-index: 2;

  color: #fff;
  font-weight: 600;

}

.cards-wrapper {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}


.cards-wrapper::-webkit-scrollbar {
  display: none;
}


.cards-wrapper .col-md-3 {
  flex: 0 0 calc((100% - 48px) / 4);
}

.property-heading {
  display: flex;
  gap: 140px;
}




.partner-logo {
  height: 100px;
  max-width: 100%;
  object-fit: contain;

}
.hbx-image{
  width: 100%;
}
@media (max-width: 768px) {
  .header-section {
    height: 450px;
  }

  .property-heading {
    display: block;
  }

  .search-btn {
    margin-top: 20px;
  }

  .cards-wrapper .col-md-3 {
    flex: 0 0 100%;
  }
}

@media (max-width: 992px) {
  .cards-wrapper .col-md-3 {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

@media (max-width: 576px) {
  .cards-wrapper .col-md-3 {
    flex: 0 0 100%;
  }
 
  
.chevron-icon {
  width: 20px;
  height: 20px;
}
}