/* Floating Button */
.fpb-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0073e6;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 9999;
}

.fpb-button:hover {
    background-color: #005bb5;
}

/* Modal Styles */
.fpb-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.fpb-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
}

.fpb-close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.fpb-close-btn:hover,
.fpb-close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/** ============================== CSS for CTA =======================================*/
.fpb-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #e14825;
    color: #ffffff;
    padding: 15px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    z-index: 9999;
}
.fpb-button{
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #e14825;
    color: #ffffff;
    padding: 15px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    z-index: 9999;
  border-radius:8px
}

/* Create multiple waves using pseudo-elements */
.fpb-button::before,
.fpb-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  border: 2px solid #e14825;
  border-radius: 8px;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple-wave 2s infinite;
  pointer-events: none;
  z-index: -1;
}

/* Delay second wave for continuous effect */
.button::after {
  animation-delay: 1s;
}

@keyframes ripple-wave {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.6;
  }
  70% {
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}
