.site-navigation a img {
    width: 100px !important;
}

.site-footer a:hover {
    color: #000;
    text-decoration: none !important;
}

.site-footer a {
    color: #000;
    text-decoration: none !important;
}

.contact-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgb(55, 167, 157) !important;
    color: white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
  }

  .contact-bubble:hover {
    background-color: #0056b3;
  }

  .contact-bubble img {
    width: 28px;
    height: 28px;
  }

  @media (max-width: 600px) {
    .contact-bubble {
      width: 48px;
      height: 48px;
    }

    .contact-bubble img {
      width: 24px;
      height: 24px;
    }
  }

  /*contact*/
 .whatsapp-float {   
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 1000;
  background-color: #25d366;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float img {
  width: 32px;
  height: 32px;
}


.service-icon {
  font-size: 42px;
  color: #0b2c5d;   /* same blue as your site */
  margin-bottom: 15px;
}

/* Ensure the container has a fixed height */
.property-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Optional: adds a soft shadow */
}

/* This is the secret to universal sizing */
.property-item img {
  width: 100%;
  height: 400px;     /* Universal Height */
  object-fit: cover; /* Fills the area completely without stretching */
  object-position: center; /* Keeps the center of the image visible */
  display: block;
  transition: transform 0.6s ease;
}

/* Hover effect for a premium feel */
.property-item:hover img {
  transform: scale(1.05);
}

.property-content {
  padding: 20px;
  text-align: left;
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
  .property-item img {
    height: 250px; /* Smaller universal height for mobile */
  }
}


address {
  color: #000 !important;
}