/* :root {
  --clr-p: #04793d;
  --clr-s: #048eaf;
  --clr-t: #ffffff;
} */

body {
  background: var(--clr-p);
  /* color: var(--clr-t); */
}

button {
  background: var(--clr-s);
}

.grecaptcha-badge {
  z-index: 2;
}

.ani-bounce {
  animation: bounce 0.6s infinite;
  transition: transform 0.2s;
}

.custom-logo,
.navbar .custom-logo-link img {
  max-width: 150px; /* change size as per need */
  height: auto;
}

.cp-logo {
  width: 120px; /* adjust as per your preferred size */
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-logo img {
  max-width: 250px; /* adjust as needed */
  height: auto;
}

.plan-block .bd-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.privacy-section-bg {
  background-color: white; /* change to any color */
  padding: 60px 20px;
  border-radius: 8px;
  width: 100vw;
}

.mob-ft-cta {
  display: flex;
  justify-content: space-around;
  /* background: #fff; */
  padding: 10px 0;
  border-top: 1px solid #ddd;
}

.mob-ft-cta a {
  flex: 1;
  text-align: center;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  padding: 8px 0;
}

.mob-ft-cta a i {
  font-size: 24px; /* control icon size */
  vertical-align: middle;
  margin-right: 5px;
  animation: scaleBounce 0.5s infinite ease-in-out;
  display: inline-block;
  line-height: 1 !important; /* stop bouncing */
}

@keyframes scaleBounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}

.typing-indicator {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background: #888;
  display: inline-block;
  border-radius: 50%;
  animation: blink 1s infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0% { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
}

.navbar-brand img.custom-logo {
    max-height: 50px;   /* adjust height */
    width: auto;
    object-fit: contain;
}
