.btn-pattern {
  background: linear-gradient(180deg, #22a2f8, #1c9bef);
}

.pattern-color {
  color: #1c9bef;
}

.shadow-waForm {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vid-brightness video {
  filter: brightness(1);
}

.rounded-3xl {
  border-radius: 1.5rem !important;
}

.submit_btn svg {
  width: 20px;
}

.submit_btn {
  font-size: 18px;
}

.hover-scale:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

.vertical-slider {
  height: 600px;
  overflow: hidden;
  position: relative;
}

.lp-sub-title {
  font-size: small;
}

.slider-track {
  display: flex;
  flex-direction: column;
}

.review-card {
  background: #fff;
  padding: 16px;
  margin: 12px 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

/* TOP → BOTTOM */
.vertical-slider.down .slider-track {
  animation: scrollDown 20s linear infinite;
}

/* BOTTOM → TOP */
.vertical-slider.up .slider-track {
  animation: scrollUp 20s linear infinite;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

.otp-input {
  width: 55px;
  height: 55px;
  font-size: 24px;
  text-align: center;
  border-radius: 8px;
  border: 2px solid #ced4da;
}

.otp-input:focus {
  border-color: #0d6efd;
  box-shadow: none;
  outline: none;
}

.otp-screen .otp-authentication-img {
  max-height: 300px;
  object-fit: cover;
}

.radio-card {
  border: 2px solid #dee2e6;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.radio-card:hover {
  border-color: #22a2f8;
}

.radio-input {
  display: none;
}

.radio-input:checked+.radio-card {
  background: linear-gradient(180deg, #22a2f8, #1c9bef);
  color: #fff;
  border-color: #22a2f8;
}

.top-image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
}

.top-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.option-input {
  display: none;
}

.next-btn {
  background: linear-gradient(90deg, #00a8b5, #00c2c7);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 18px;
  padding: 14px;
}

.option-card {
  border: 2px solid #ffcba4;
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
  background-color: #fff3e8;
  position: relative;
}

/* Checkmark hidden by default */
.option-card::after {
  content: "✓";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(90deg, #00a8b5, #00c2c7);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: 0.2s ease;
}

/* Show checkmark when selected */
.option-input:checked+.option-card::after {
  opacity: 1;
  transform: scale(1);
}

.option-input:checked+.option-card {
  background-color: #ff7a3d;
  color: #fff;
  border-color: #ff7a3d;
}

.next-btn i {
  font-size: 16px;
}

h5 {
  margin-bottom: 1rem;
}

label {
  font-weight: 600;
  margin-top: 1rem;
}

/* ---------- Inputs ---------- */
.input-box {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border-radius: 14px;
  border: 2px solid #e9ecef;
  cursor: pointer;
  background: #fff;
  position: relative;
}

.input-box:focus {
  outline: none;
  border-color: #00a8b5;
}

/* ---------- Date Picker Container ---------- */
.date-picker-container {
  position: relative;
  cursor: pointer;
  padding: 0;
}

.date-picker-container input[type="date"] {
  border: none;
  width: 100%;
  cursor: pointer;
  background: transparent;
  font-size: 16px;
  padding: 12px 15px;
}

.date-picker-container input[type="date"]:focus {
  outline: none;
}

/* Make the calendar icon pointer */
.date-picker-container input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

/* ---------- Time Picker ---------- */
.time-picker-container {
  position: relative;
}

.dropdown-time {
  display: none;
  /* hidden by default */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 14px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  margin-top: 4px;
  padding: 8px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
  flex-direction: row;
}

.dropdown-time div {
  flex: 1 1 30%;
  min-width: 60px;
  text-align: center;
  padding: 8px 0;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
}

.dropdown-time div:hover {
  background: #00a8b5;
  color: #fff;
  border-color: #00a8b5;
}

/* ---------- Confirm Button ---------- */
.confirm-btn {
  /* margin-top: 2rem; */
  background: linear-gradient(90deg, #00a8b5, #00c2c7);
  /* border: none;
  color: white;
  border-radius: 14px;
  padding: 16px;
  font-size: 18px;
  width: 100%;
  cursor: pointer; */
}

.confirm-btn:disabled {
  background: #b0d9db;
  cursor: not-allowed;
}

.container-wrapper {
  text-align: center;
}

h5 {
  margin-bottom: 1rem;
}

.confirmation-card {
  background: #fff3e8;
  border-radius: 20px;
  padding: 20px;
  margin: 20px 0;
  border: 2px solid #ff7a3d;
}

.confirmation-card h6 {
  font-weight: 600;
  margin-bottom: 10px;
}

.confirmation-card p {
  font-size: 18px;
  margin: 0;
  color: #333;
}

.done-btn {
  margin-top: 2rem;
  background: linear-gradient(90deg, #00a8b5, #00c2c7);
  border: none;
  color: white;
  border-radius: 14px;
  padding: 14px;
  font-size: 18px;
  width: 100%;
  cursor: pointer;
}

.done-btn:hover {
  opacity: 0.9;
}

.final-card {
  width: 100%;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.success-badge {
  width: 90px;
  height: 90px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.success-badge::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: rgba(34, 197, 94, 0.25);
  border-radius: 50%;
  z-index: -1;
}

.checkmark {
  font-size: 42px;
  color: #fff;
  font-weight: bold;
}

.final-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.final-text {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.time-pill {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0 0.25rem;
  color: #0f172a;
  background: #f9fafb;
}

.testimonials-card {
  background: #ffffff;
  border-radius: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
}

.testimonials-text {
  font-size: 14px;
  margin-bottom: 16px;
  color: #333;
}

.testimonials-text span {
  color: #0d6efd;
  font-weight: 600;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #f1f1f1;
}

.username {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.handle {
  font-size: 11px;
  color: #6c757d;
}

.testimonials-icon {
  width: 24px;
  height: 24px;
  fill: #000;
}