@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
:root {
    --primary-color: #4e73df;
    --secondary-color: #f8f9fc;
    --accent-color: #2e59d9;
    --text-color: #5a5c69;
}

body {
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-family: "Quattrocento Sans", sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}
.ff-montserrat {
  font-family: "Montserrat", sans-serif !important;
  font-optical-sizing: auto;
}
.ff-quattrocento{
  font-family: "Quattrocento Sans", sans-serif !important;
}

.booking-container {
    max-width: 1100px;
    margin: 0px auto 100px;
    background: white;
    border-radius: 10px;
    /* box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15); */
    overflow: hidden;
}

.booking-header {
    background: var(--text-color);
    color: white;
    padding: 20px;
    text-align: center;
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #360367;
}

.step {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    justify-content: center;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0px;
    transition: all 0.3s ease;
    color: #360367;
    font-size: 20px;
    line-height: 100%;
}

.step.active .step-number {
    background-color: #fe6820;
    color: #fff;
}

.step.completed .step-number {
    background-color: #28a745;
    color: white;
}
.step-title {
    font-size: 20px;
    text-align: left;
    color: #fff;
    transition: all 0.3s ease;
    font-weight: 700;
    margin-left: 15px;
}

.step.active .step-title {
    color: #fff;
    font-weight: bold;
}

.step.completed .step-title {
    color: #28a745;
}

.booking-content {
    padding: 15px;
    min-height: 400px;
}


.booking-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.booking-step.active {
    display: block;
}

.booking-footer {
    padding: 20px;
    display: flex;
    justify-content: center;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 100;
    bottom: 0;
    width: 100%;
    background-color: #fff;
}

.category-card,
.service-card,
.employee-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #360367 !important;
    height: 100%;
}

.category-card:hover,
.service-card:hover,
.employee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.category-card.selected,
.service-card.selected,
.employee-card.selected {
    background-color: #360367 !important;
    background-color: rgba(78, 115, 223, 0.1);
}


.card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.time-slot {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    text-align: center;
}

.time-slot:hover {
    background-color: rgba(78, 115, 223, 0.1);
}

.time-slot.selected {
    background-color: #fe6820;
    color: white;
    border-color: #fe6820;
}

.time-slot.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f8f9fa;
}

.calendar-day {
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-day:hover:not(.disabled) {
    /* background-color: rgba(78, 115, 223, 0.1); */
}

.calendar-day.selected {
    background-color: var(--primary-color);
    color: white;
}

.calendar-day.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f8f9fa;
}

.summary-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e3e6f0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-slide-in {
    animation: slideIn 0.5s ease forwards;
}

/* Progress bar between steps */
.booking-steps::before {
    content: '';
    /* position: absolute; */
    top: 80px;
    left: 20%;
    right: 20%;
    height: 2px;
    background-color: transparent;
    z-index: 0;
    display: none;
}

.progress-bar-steps {
    position: relative;
    height: 4px;
    background-color: #fff;
    z-index: 0;
}

.progress-bar-steps .progress {
    height: 100%;
    background-color: #fe6820;
    width: 0%;
    transition: width 0.5s ease;
}

@media(min-width:720px)
{
    .booking-content {
    padding: 50px;
    min-height: 300px;
}

}

/*-----------Design CSS Start------------*/

.header-section{
    background-color: #fff;
}
.icon-btn {
  font-size: 18px;
  color: #000000;
  border: none;
  padding: 0;
  letter-spacing: 0.02rem;
  font-weight: 600;
  text-decoration: none !important;
}
.icon-btn i {
  margin-right: 8px;
  font-size: 28px;
  color: #360367;
}
.icon-btn i svg {
  width: 23px;
  height: 23px;
}
.custom-btn {
  border-radius: 50px;
  color: #fff;
  background-color: transparent;
  font-size: 18px;
  letter-spacing: 0rem;
  padding: 10px 24px;  
  border-color: transparent;
  line-height: 100%;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 100%;
}
.orange-btn{
    background-color: #fe6820;
    color: #fff;
}
.orange-btn:hover{
    background-color: #000;
    color: #fff;
}
.border-btn{
    border: 2px solid #360367;
    background-color: transparent;
    color: #360367;
}
.border-btn:hover{
    background-color: #360367;
    color: #fff;
}
.custom-btn i{
    margin-right: 8px;
    font-size: 24px;
}
.main-heading h2 {
  font-size: 35px;
  color: #360367;
  font-weight: 700;
  letter-spacing: 0rem;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 100%;
}
.fs-20 {
  font-size: 20px;
}

.booking-steps:after{
    width: 100%;
    position:absolute;
    content: "";
    height: 2px;
    z-index: 1;
    top: 50%;
    left: 0;
    right: 0;
    border: 1px dashed #fff;
    max-width: 230px;
    margin: 0 auto;
}
.booking-content h3{
    font-size: 20px;
    color: #2b2a2a;
    letter-spacing: 0.01rem;
    line-height: 100%;
}
.card-inner-wrapper{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.card-inner-wrapper img{
    width: 100%;
    max-width: 32px;
    height: auto;
    display: block;
}
.card-inner-wrapper .card-title{
    font-size: 30px;
}
.card-wrapper .card-text{
    font-size: 22px;
    font-style: italic;
}
.card-inner-wrapper .card-title,
.card-wrapper .card-text{
    color: #2b2a2a !important;
}
.selected .card-inner-wrapper .card-title,
.selected .card-wrapper .card-text{
    color: #fff !important;
}

#services-filed,
#employees-filed{
    margin-top: 50px;
}
#calendar-filed{
    margin-top: 50px;
}
.date-slote ul{
    padding: 0;
    margin-bottom: 0;
}
.date-slote ul li{
    list-style: none !important;
    flex-grow: 1;
}
.date-name{
    display: block;
    padding: 0.5rem 1rem;
    background-color: #360367;
    color: #fff !important;
    font-weight: 600;
    text-align: center;
}
li.time-slot{
    font-size: 14px;
    color: #000;
}
.date-yrs-range{
    background-color: #360367;
    border-radius: 8px;
    padding: 0.8rem 2rem;
    color: #fff;
    width: 230px;
}
.date-yrs-range h6,
.date-yrs-range h3{
    color: #fff !important;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    position: absolute;
    top: -80px;
    z-index: 100;
    background-color: transparent !important;   
    transform: rotate(0deg);
    transition: transform 1s linear;
    border: none !important;
    font-size: 30px;
    color: #26aae1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto!important;
    padding: 0 !important;
    left: 0;
    right: 0;
}
.slider-arrow.nav-button-prev {
    left: -270px;    
}
.slider-arrow.nav-button-next {
    right: -270px;
}
.text-purple{
    color: #360367;
}
.slider-arrow.nav-button-next i,
.slider-arrow.nav-button-prev i{
    color: #fe6820;
}
.slider-arrow.glide__arrow--disabled i{
color: #666;
}
.image-circle-box{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
}
.image-circle-box img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
    display: block;
    max-width: 100% !important;
}
.orange-text {
  color: #fe6820;
}
.personal-details-wrapper .form-control,
.personal-details-wrapper .form-select,
.personal-details-wrapper textarea.form-control{
    height: 56px;
    border-radius: 6px;
    padding: 10px 25px;
    font-family: "Montserrat", sans-serif !important;
    color: #000;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.075);
}
.personal-details-wrapper textarea.form-control{
    height: auto;
}

.otp-wrapper-section h3 {
  font-size: 20px;
  color: rgb(43, 42, 42);
  letter-spacing: 0.01rem;
  line-height: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

.booking-steps:after {
  max-width: 200px;
}

}

@media only screen and (max-width: 991px) and (min-width: 768px) {

.booking-steps:after{
    display: none !important;
}
.card-inner-wrapper img {
  max-width: 22px;
}
.card-inner-wrapper .card-title {
  font-size: 20px;
}
.card-wrapper .card-text {
  font-size: 16px;
}
.fs-5 {
  font-size: 1rem !important;
}
ul.calendar-colm{
    flex-wrap: wrap;
    max-height: 400px;
    overflow: hidden;
    overflow-y: auto;
}
ul.calendar-colm li {
  flex-basis: 32.333333333%;
}


}


@media only screen and (max-width: 767px) {
     .main-heading h2 {
  font-size: 28px;
    }
    

.header-section .container{
    justify-content: center !important;
}
.header-section .header-top--section{
    display: none !important;
}
.header-section .navbar-brand{
    margin-right: 0 !important;
}
.step{
    flex-direction: column;
}
.step-title{
    text-align: center;
    margin-left: 0;
    margin-top: 10px;
    font-size: 15px;
}
.booking-steps:after{
    display: none !important;
}
.card-inner-wrapper img {
  max-width: 22px;
}
.card-inner-wrapper .card-title {
  font-size: 20px;
}
.card-wrapper .card-text {
  font-size: 16px;
}
.booking-content {
  min-height: 100px;
}
.fs-5 {
  font-size: 1rem !important;
}
ul.calendar-colm{
    flex-wrap: wrap;
    max-height: 500px;
    overflow: hidden;
    overflow-y: auto;
}
ul.calendar-colm li {
  flex-basis: 48%;
}
.booking-steps {
  padding: 20px 0;
}
.personal-details-wrapper .form-control, .personal-details-wrapper .form-select, .personal-details-wrapper textarea.form-control{
    height: 48px;
}
.otp-wrapper-section h3 {
  font-size: 16px;
}
.personal-details-wrapper textarea.form-control {
  height: auto;
}
.btn-colm-wrap{
    flex-direction: column;
    justify-content: center;
}

}



/*-----------Design CSS End------------*/
