.header-section {
  position: sticky;
  top: 0;
  padding-block: 20px 40px;
  background-color: var(--secondary-color);
}
.landing-section {
  height: 100svh;
}
.landing-section .bg,
.header-section .bg {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}
.landing-section .tt {
  font-size: 60px;
  list-style: 1;
}
.landing-section .sp {
  width: 100px;
  height: 1px;
  background: #ccc;
  display: block;
  margin-block: 16px;
}
.my-btn {
  width: 100%;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: white;
  backdrop-filter: blur(4px);
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.my-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.my-btn:focus {
  outline: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.landing-section .my-btn {
  position: fixed;
  bottom: 70px;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 32px);
}
.pulse-button {
  position: relative;
  box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.5);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% {
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  70% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }
  100% {
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}
.sec-logo,
.page-logo,
.normal-logo {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 120px;
  height: 120px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  border: 1px solid #fff;
  padding: 1px;
  background-color: #fff;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
}
.normal-logo {
  position: unset;
  width: 100px;
  height: 100px;
}
.header-logo {
  width: 100px;
  height: 100px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  opacity: 0.5;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
}

.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

.alert {
  display: flex;
  align-items: center;
  background-color: #f25c5d;
  color: white;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 14px;
  border-right: 5px solid #dc4a4d;
}
.alert:before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url(../images/alert-triangle.svg) no-repeat center center /
    contain;
  margin-inline-end: 10px;
  flex-shrink: 0;
}
.alert.green {
  border-color: #539753;
  background-color: #8fbf2f;
}
.alert.blue {
  border-color: #076d91;
  background-color: #3397db;
}
.alert.yellow {
  border-color: #dd6137;
  background-color: #f7931d;
}
.small-header {
  padding-block: 20px;
}
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  top: 0;
  left: 0;
  opacity: 0.4;
  pointer-events: none;
  background-color: var(--secondary-color);
  z-index: -1;
}

.section-bottom-action {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  padding: 15px;
  border-radius: 20px 20px 0 0;
  background: #fff;
  box-shadow: 0px -1px 9px 5px #00000047;
}
.section-bottom-action .my-btn {
  background-color: var(--secondary-color);
}
.shalet-card {
  background-color: rgb(158 158 158 / 56%);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 12px;
  transition: all 300ms ease;
}

.main-page-wrapper {
  border-radius: 20px 20px 0 0;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: -20px;
  position: relative;
}
.calendar-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.calendar-legend .legend-item .dot {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background-color: #f44336;
}
.legend-item.night .dot {
  background-color: #009688;
}
.calendar-section .day-item {
  background-color: #e3e3e3;
  padding: 15px 5px;
  border-radius: 6px;
}
.calendar-section .day-item .day-tt {
  font-size: 11px;
}
.calendar-section .day-item .day-date {
  font-size: 11px;
}
.calendar-section .day-item .day-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 5px;
}
.calendar-section .day-item .day-status .dot {
  width: 20px;
  height: 20px;
  border-radius: 6px;
}
.calendar-section .day-item .day-status .dot.morning {
  background-color: #f44336;
}
.calendar-section .day-item .day-status .dot.night {
  background-color: #009688;
}
.calendar-section .box-inner {
  padding-inline: 12px;
}
.form-control {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
  color: #000;
  background-color: #fff;
  outline: none;
  appearance: none;
}
.form-field .form-lbl {
  font-size: 12px;
}
.copy-field .form-control {
  background-color: #ccc;
}
.copy-field .copy-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  border-radius: 6px;
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
}
.btn-submit {
  width: 100%;
  border-radius: 30px;
  padding: 10px;
  font-size: 14px;
  color: #fff;
  background-color: var(--main-color);
  border: none;
  cursor: pointer;
}
.btn-cancel-modal {
  background-color: var(--secondary-color);
  border: none;
  border-radius: 30px;
  padding: 10px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}
.book-modal .close-modal {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
}
.calendar-section .day-item.booked-day,
.calendar-section .day-item .dot.booked {
  display: none;
}
@media (min-width: 1000px) {
  body {
    max-width: 600px;
    margin: auto;
  }
  * {
    max-width: 600px;
    margin: auto;
  }
  .container {
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding-inline: 16px;
  }
  .step-2-page .box,.step-2-page .shalet-card,
  .alert, .calendar-section .day-item {
    width: 100%;
  }
  .calendar-section .day-item .day-status .dot {
    width: 40px;
    height: 40px;
  }
  .calendar-section .day-item .day-tt {
    font-size: 17px;
  }
  .calendar-section .day-item .day-date {
    font-size: 15px;
}
.modal.normal-modal {
  margin-inline:auto;
  left: 0;
  right: 0;
}
.modal-overlay {
  max-width: 100%;
}
.form-field {
  width: 100%;
}
}
/* Mobile Number Validation Styles */
.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.mobile-error {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  color: #dc3545 !important;
}

/* International Tel Input validation styles */
.iti.iti--allow-dropdown input.is-invalid {
  border-color: #dc3545;
}

.iti.iti--allow-dropdown input.is-valid {
  border-color: #28a745;
}