
.side-tab {
    position: fixed;
    top: 50%;
    right: 25px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right center;
    display: inline-block;
    background: #fb0;
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 16px 25px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 9999;
}

.side-tab:hover {
    background: #a91c3f;
    color: #fff;
}

/* 📱 Mobile view: horizontal at bottom */
@media (max-width: 640px) {
  .side-tab {
    top: auto;
    bottom: 20px;
    right: 20px;

    transform: none;
    border-radius: 50px;
    font-size: 16px;
    padding: 14px 24px;
  }

  .side-tab:hover {
    transform: scale(1.05);
  }
}


.call-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;

  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #28a745; /* green color */
  color: #fff;
  text-align: center;
  font-size: 26px;
  line-height: 60px;

  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* 📱 Mobile: slightly larger */
@media (max-width: 640px) {
  .call-float {
    width: 70px;
    height: 70px;
    font-size: 30px;
    line-height: 70px;
  }
}
