.floating-wrapper {
  position: fixed;
  right: 15px;
  top: 75%;
  transform: translateY(-50%);
  z-index: 9999;
}

.float-call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #ff7a00;
  color: #fff;
  border-radius: 50%;
  margin-bottom: 12px;
  font-size: 22px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.float-call:hover {
  background: #9e9e9e;
  color: #fff;
}

.float-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.whatsapp { background: #25d366; }


.social-icon:hover,
.float-call:hover {
  transform: scale(1.1);
  transition: 0.2s ease;
}

.sub-title {
    display: flex;
    align-items: center;
    gap: 10px; 
}

.sub-img img {
    max-width: 200px;
    height: auto;
}

html,
body {
    scroll-behavior: smooth;
}


#appointment-section {
    scroll-margin-top: 250px;
}

.sms {
    background: #007bff;
    color: #fff;
}

.sms:hover {
    background: #0056b3;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.8);
}