.choose-property-type [type=radio]:checked, .choose-property-type [type=radio]:not(:checked) {
    left: unset;
    position: relative;
}


.icon-box {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.icon-box .icon-box-content {
  flex-grow: 1;
}

.icon-box .btn {
  align-self: flex-start; /* Keeps button at bottom left */
}



  .service-img {
    width: 230px;          /* Always square */
    height: 230px;
    object-fit: cover;     /* Crop if needed, keeps ratio */
  }

  @media (max-width: 768px) {
    .service-img {
      width: 120px;         /* Smaller square on mobile */
      height: 120px;
    }
  }


 .other-services .service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .other-services .service-card img {
    width: 100%;
    height: 150px; /* adjust height as needed */
    object-fit: cover;
  }

  .other-services .service-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .other-services .service-content h5 {
    margin-top: 10px;
    font-weight: bold;
    color: #e78200;
  }

  .other-services .service-content p {
    font-size: 14px;
    color: #333;
  }

  .other-services .service-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    transition: all 0.3s ease;
  }




/* Optional: If you want icons to change color on hover */
.service-card a img:hover {
  opacity: 0.85;
  transition: opacity 0.3s ease;
}



  
  
.team-member {
  padding: 1rem !important; /* tighter than Bootstrap p-3 if needed */
}

.team-member img {
  width: 120px; /* optional: control image size */
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

.team-member p {
  margin-bottom: 0.4rem; /* tighten line gaps */
}

.team-member .toggle-link {
  margin-bottom: 0; /* no gap below link */
  display: inline-block;
}

.team-member h5 {
  font-size: 1.1rem;
}

.team-member {
  min-height: auto; /* ensures box only wraps content */
}

/* About Section Custom Styling */
#about .about-section {
    font-family: inherit; /* Inherit Homzen theme font */
    color: inherit;       /* Use default text color */
}

#about .about-section p {
    font-size: 1rem;      /* Standard paragraph size */
    line-height: 1.6;     /* Comfortable reading spacing */
    margin-bottom: 1.2rem;
}

#about .about-section p.lead {
    font-size: 1.25rem;   /* Slightly larger for lead text */
    font-weight: 500;     /* Medium weight for emphasis */
}

#about .about-section img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem; /* Rounded corners */
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.15);
}