.call-now-rect {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #c738a3; /* Dark blue */
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 20px;
  border: 2px solid white;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  position: fixed;
}

.call-now-rect:hover {
  background-color: #181163;
}

.call-icon {
  font-size: 18px;
}

/* Flash shine effect */
.shine {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.2) 100%);
  transform: skewX(-20deg);
  animation: shine 2s infinite;
}

/* Keyframes for shine animation */
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
