/* Modal Box */
.modal-content {
  background-color: #ffffff;
  border-radius: 10px;
  color: #212529;
}

/* Modal Title */
.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #d63384;
}

/* Section Headings */
.modal-body h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 15px;
  color: #ffffff;
}

/* Blinking Prices */
.blink {
  animation: blink-animation 1.2s linear infinite;
  color: #F29523;
  font-weight: 900;
}

@keyframes blink-animation {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* "All Include" */
.all-include {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

/* List styling */
.modal-body ul li {
  font-size: 1rem;
  margin-bottom: 6px;
}

/* T&C */
.tnc {
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 15px;
}

/* Thank You */
.thank-you {
  color: #ffffff;
  text-align: center;
  font-size: 1rem;
  margin-top: 10px;
  font-weight: 500;
}

/* Close button */
.modal-header .btn-close {
  filter: invert(1);
}

/* Common floating icon style */
.floating-icon {
    position: fixed;
    bottom: 20px;
    font-size: 24px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease;
}

/* Positioning */
.floating-icon.left-icon {
    left: 20px;
    bottom: 30px;
}
.floating-icon.right-icon {
    bottom: 30px;
    right: 20px;
    background-color: #F29523; /* red for phone */
}

/* Grow animation */
.pulse {
    animation: pulse-grow 1.5s ease-in-out infinite;
}

@keyframes pulse-grow {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}
.blink-care {
  animation: blink-anime 0.6s steps(2, start) infinite;
  -webkit-animation: blink-anime 0.6s steps(2, start) infinite;
  color: #F29523; /* red color while visible */
  font-weight: bold;
}

@keyframes blink-anime {
  0%, 100% {
    visibility: visible;
    color: #F29523;
  }
  50% {
    visibility: hidden;
  }
}

@-webkit-keyframes blink-anime {
  0%, 100% {
    visibility: visible;
    color: #F29523;
  }
  50% {
    visibility: hidden;
  }
}

