.fs-15 {
  font-size: 15px;
}

p {
  text-transform: capitalize !important;
}

.heading-color {
  color: #ca892a;
}

.bg-bluee {
  background-color: #141c3a !important;
}

.justify-text {
  text-align: justify;
}

.bg-clr {
  background-color: #f1f6f9;
}

.back-to-back {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;

  border: none;

  transition: all 0.3s ease;
}

.loading-spinner {
  display: none;
}

.invalid-feedback {
  display: block;
}

.is-invalid {
  border-color: #ca892a;
  box-shadow: 0 0 0 0.25rem rgba(202, 137, 42, 0.25);
}

.success-animation {
  color: #28a745;
  font-size: 2rem;
  animation: bounce 1s infinite;
}

.sentence-case {
  text-transform: none !important;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* WhatsApp Css */

.whatsapp-float {
  position: fixed;
  left: 25px;
  bottom: 25px;
  z-index: 1055;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.whatsapp-btn {
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: box-shadow 0.2s;
  cursor: pointer;
  outline: none;
}
.whatsapp-btn:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  background: #1ebe57;
}
.whatsapp-popup {
  background: #fff;
  color: #222;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  padding: 18px 22px 18px 18px;
  margin-bottom: 12px;
  max-width: 260px;
  font-size: 1rem;
  display: none;
  align-items: center;
  animation: fadeInWhatsapp 0.4s;
}
@keyframes fadeInWhatsapp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.whatsapp-popup .close-popup {
  background: none;
  border: none;
  color: #888;
  font-size: 1.2rem;
  margin-left: 10px;
  cursor: pointer;
}

.loading-spinner {
  display: none;
}

/* Initially hide invalid feedback */
.invalid-feedback {
  display: none;
}

/* Show invalid feedback only when input has is-invalid class */
.form-control.is-invalid ~ .invalid-feedback,
.form-select.is-invalid ~ .invalid-feedback {
  display: block;
}

/* Custom styling */
.form-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

td {
  font-weight: 500 !important;
}
