/* html,body{
  overflow-x: hidden;
} */

.card {
  border-radius: 15px;
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.property-image {
  width: 100%;
  height: 262px;
  object-fit: cover;

}


.pr-image-box {
  height: 262px;
  width: 100%;
  flex-shrink: 0;
}

.pr-card-content {
  flex: 1 1 auto;
  /* allow growth and shrink */
  min-height: 0;
  /* VERY IMPORTANT: enables shrinking inside flex column */
  overflow: hidden;
}

.client-image {
  width: auto;
  height: 250px;
  object-fit: contain;
  margin-right: 20xp;

}


.logo-slider {
  overflow: hidden;
  position: relative;
  background: #fff;
  height: 100px;
}

.logo-track {
  display: flex;
  width: calc(200px * 10);
  /* width = logo width * total logos */
  animation: scroll 20s linear infinite;
}

.logo {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo img {
  width: 120px;
  height: auto;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: 0.3s ease;
}

.logo img:hover {
  /* filter: grayscale(0%); */
  transform: scale(1.1);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.am-icon {
  height: 20px;
  width: auto;
  object-fit: contain;
}

.am {
  font-size: 0.9rem;
}

.sticky-form {
  position: sticky;
  top: 100px;
  /* distance from top while scrolling */
  z-index: 100;
}


.hv-anim:hover {
  background-color: #FF6922;
  color: white !important;
}

.box-menu {
  height: 240px;
  width: 825px;
  background-color: white;
  border-radius: 5px;
  right: 0px;
}

.box-menu-img {
  height: 60px;
  width: 80px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .box-menu {
    height: 65vh;
    width: 90vw;
  }

  .box-menu-img {
    height: 40px;
    width: 60px;

  }
}


.back-card {
  background-position: center;
  background-size: 100% 100% !important;
  height: 220px;
}


/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  /* Adjust as needed */
  right: 20px;
  /* Adjust as needed */
  z-index: 9999;
  /* Makes sure it's on top */
  border-radius: 50%;
  background-color: #25D366;
  /* WhatsApp green */
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  text-align: center;
  width: 60px;
  /* Adjust size */
  height: 60px;
  /* Adjust size */
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}


.whatsapp-float:hover {
  background-color: #128C7E;
  /* Darker shade of WhatsApp green */
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}



.call-float {
  position: fixed;
  bottom: 90px;
  /* Adjust as needed */
  right: 20px;
  /* Adjust as needed */
  z-index: 9999;
  /* Makes sure it's on top */
  border-radius: 50%;
  background-color: #ffffff;
  /* call green */
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4);
  padding: 10px;
  text-align: center;
  width: 60px;
  /* Adjust size */
  height: 60px;
  /* Adjust size */
}

.call-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}


.call-float:hover {
  background-color: #ffdac6;
  /* Darker shade of call green */
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}


.mail-float {
  position: fixed;
  bottom: 160px;
  /* Adjust as needed */
  right: 20px;
  /* Adjust as needed */
  z-index: 9999;
  /* Makes sure it's on top */
  border-radius: 50%;
  background-color: #ffffff;
  /* mail green */
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4);
  padding: 10px;
  text-align: center;
  width: 60px;
  /* Adjust size */
  height: 60px;
  /* Adjust size */
}

.mail-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}


.mail-float:hover {
  background-color: #ffdac6;
  /* Darker shade of mail green */
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}


.scroll-box{
  overflow: hidden;
  overflow-y: scroll;
  height: 200px;
  width: 150px;

}
.sidebox{
  display: none;
}

.mainbox:hover .sidebox{
  display: block;
}


.scroll-box::-webkit-scrollbar {
  width: 6px; /* width of vertical scrollbar */
}
.scroll-box::-webkit-scrollbar-track {
  background: #ffffff; /* track background */
  border-radius: 6px;
}
.scroll-box::-webkit-scrollbar-thumb {
  background-color: #868686; /* scrollbar color */
  border-radius: 6px;
  /* border: 3px solid #f0f0f0; creates padding around thumb */
}



.pop-box {
  background-size: cover;
  transition: 0.5s;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 80%;
  /* or any width you want */
  box-shadow: 0px 0px 0px 2px white;
  min-width: 120px;
  min-height: 120px;
}

.pop-content {
  font-size: 30px;
  color: white;
}

.pop-content h6 {
  font-size: 20px;
  color: white;
}

.pop-box:hover {
  transition: 0.3s ease-in-out;
  transform: scale(1.2);
}

.dropdown-menu a{
  border-bottom: 1px solid rgb(218, 218, 218);
}