/* Portfolio image uniform size */
.portfolio-content img {
  width: 100%;
  height: 280px;   /* you can adjust (250px–350px looks good) */
  object-fit: cover;
  display: block;
}

.logo img {
  height: 110px !important;
  width: auto !important;
  max-height: none !important;
}

.float-btn {
  position: fixed;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-decoration: none;
}

/* WhatsApp button (right side) */
.whatsapp-btn {
  bottom: 20px;
  right: 20px;
  background: #25D366;
}

/* Call button (left side) */
.call-btn {
  bottom: 20px;
  left: 20px;
  background: #007bff;
}

/* Hover effect */
.float-btn:hover {
  transform: scale(1.1);
  transition: 0.3s ease;
}

.testimonial-img {
  width: 100px !important;
  height: 100px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
  /* margin: 0 auto 15px !important; */
}