.desktop-header{
    position: relative;
    z-index: 1030;
    background:#fff;
    transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease;
    will-change: transform;
    border-bottom: solid 1px #DDD;
}
.header-logo{
    width: 170px;
    max-width: 100%;
}
.theme-button-dark{
    background-color: var(--tp-secondary-color);
    color: var(--tp-white-color);
    border-radius: 50px;
    padding: 12px 30px;
    transition: all .3s;
    border-bottom: solid 5px var(--tp-primary-color) !important;
    display: inline-block;
    border-top: 0px !important;
    border-left: 0px !important;
    border-right: 0px !important;
}
.theme-button-dark:hover{
    background-color: var(--tp-primary-color) !important;
    color: var(--tp-secondary-color) !important;
    border-bottom: solid 5px var(--tp-secondary-color) !important;
}
.theme-button-dark.light{
    border-bottom: solid 5px var(--tp-white-color) !important;
}
.theme-button-dark.light:hover{
    background-color: var(--tp-white-color) !important;
    border-bottom: solid 5px var(--tp-secondary-color) !important;
}
.theme-button-dark.previous{
    background-color: #DDD;
    color: var(--tp-black-color);
}
.theme-button-dark.footer-btn{
    background-color: var(--tp-primary-color) !important;
    color: var(--tp-black-color) !important;
    border-bottom: solid 5px var(--tp-white-color) !important;
}
.theme-button-dark.footer-btn:hover{
    background-color: var(--tp-white-color) !important;
    color: var(--tp-black-color) !important;
    border-bottom: solid 5px var(--tp-primary-color) !important;
}
.hero-section{
    background-image: url('../images/HeroBanner.png');
    background-position-x: center;
    background-position-y: bottom;
    background-size: contain;
    background-repeat: repeat-x;
    overflow: hidden;
    position: relative;
}
.sub-heading{
    border-radius: 100px;
    font-weight: 500;
    background-color: var(--tp-primary-color);
    font-size: 14px !important;
    letter-spacing: 1px;
    line-height: 1.5em !important;
}
.hero-section-form-wrapper{
    box-shadow: 5px 5px 25px rgba(0,0,0,0.15);
    border-radius: 15px;
    border: solid 1px #DDD;
}
.demo-form .demo-text-box{
    border-radius: 10px !important;
    border-bottom: solid 5px var(--tp-primary-color) !important;
    outline: none !important;
    box-shadow: none !important;
    border-top: solid 1px #DDD !important;
    border-left: solid 1px #DDD !important;
    border-right: solid 1px #DDD !important;
}
.tp-check{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    margin-top: .15rem;
    border: 1px solid #DDD;
    border-radius: 5px !important;
    background: var(--tp-white-color);
    display: inline-block;
    position: relative;
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease, transform .08s ease;
}
.tp-check:hover{
  border-color: var(--tp-primary-color);
}
.tp-check:focus{
  border-color: var(--tp-primary-color);
}
.tp-check:active{
  transform: scale(.96);
}
.tp-check:checked{
  background-color: var(--tp-primary-color);
  border-color: var(--tp-primary-color);
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg' fill='none'><path d='M3.5 8.2l3 3.3 6-6.7' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 14px 14px;
}
.client-section-wrapper{
    border-radius: 20px;
    box-shadow: 5px 5px 25px rgba(0,0,0,0.15);
    border: solid 1px #DDD;
    margin-top: -3rem;
    z-index: 2;
    position: relative;
}
.logo-carousel-img{
    width: 250px;
    max-width: 100%;
    border: solid 1px #DDD;
    padding: 10px;
    border-radius: 10px;
}
.features-tabs{
    border-left: solid 1px #DDD;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
    background-color: var(--tp-white-color);
    position: relative;
}
.features-tabs.active{
    background-image: url('../images/dots.svg');
}
.features-tabs::before{
    content:"";
    position:absolute;
    top:0; left:-5px;
    width:5px; height:100%;
    background: var(--tp-secondary-color);
    opacity:0;
    transition: opacity .3s ease;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.features-tabs.active::before{
    opacity:1;
}
.feature-icon img{
    width: 60px;
}
.ul-steps{
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: step;
}
.li-step{
    position: relative;
    padding-left: 64px;
    margin: 0 0 28px;
}
.li-step:last-child{
    margin-bottom: 0px;
}
.li-step::before{
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 2px;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: var(--tp-white-color);
    color: var(--tp-secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
    border: solid 1px #DDD;
    transition: all .5s;
}
.li-step:hover::before{
    background-color: var(--tp-primary-color);
}
.li-step::after{
    content: "";
    position: absolute;
    left: 20px;                  /* center under the circle */
    top: 50px;                   /* just below the circle */
    bottom: -20px;               /* little tail below each item */
    width: 2px;
    background: #DDD;
}
.li-step:last-child::after{ display: none; }
.cta-wrapper{
    border-radius: 20px;
    box-shadow: 5px 5px 25px rgba(0,0,0,0.15);
}
.hotel-registration-wrapper{
    box-shadow: 5px 5px 25px rgba(0,0,0,0.15);
    border-radius: 20px;
}
/* Registration Form CSS */
.step { display: none; }
.step.active { display: block; }
.step-buttons { margin-top: 20px; }
.custom-textbox{
    border: solid 1px var(--br-gray-color) !important;
    height: 55px !important;
    border-radius: 10px !important;
    outline: none !important;
    box-shadow: none !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}
.preview-hote-logo-box{
    height: 100px;
    width: 100px;
    border: solid 1px var(--br-gray-color);
    border-radius: 100%;
    display: none;
    overflow: hidden;
    margin-top: 10px;
}
.preview-hote-logo-box img{
    aspect-ratio: 1/1;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
input.form-control.imageButton{
    padding-left: 0 !important;
    border-radius: 10px !important;
    border-bottom: 5px solid var(--tp-primary-color) !important;
    border-top: 1px solid #DDD !important;
    border-left: 1px solid #DDD !important;
    border-right: 1px solid #DDD !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
}
input.form-control.imageButton::file-selector-button,
input.form-control.imageButton::-webkit-file-upload-button{
    background-color: var(--tp-black-color) !important;
    color: var(--tp-white-color) !important;
    padding: 10px 20px 12px 30px !important;
    margin-right: 12px;                /* gap before filename */
    border: 0 !important;
    border-radius: 10px 0 0 10px !important; /* left corners match input */
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7em;
    font-style: normal;
    transition: all .3s;
    cursor: pointer;
}
input.form-control.imageButton:hover::file-selector-button,
input.form-control.imageButton:hover::-webkit-file-upload-button{
    background-color: var(--tp-black-color) !important; /* hover */
    color: var(--tp-primary-color) !important;
}
input.form-control.imageButton:active::file-selector-button,
input.form-control.imageButton:active::-webkit-file-upload-button{
    transform: scale(.98);
}
.preview-hote-cover-box{
    height: 100px;
    width: 100%;
    border: solid 1px #DDD;
    border-radius: 10px;
    display: none;
    overflow: hidden;
    margin-top: 10px;
}
.preview-hote-cover-box img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.hotel-register-left-style{
    border-radius: 10px;
    min-height: 75vh;
}
.register-logo img{
    max-width: 100%;
    width: 170px;
    filter: grayscale(1);
}
.border-bottom-custom{
    border-bottom: solid 5px var(--tp-primary-color);
}

.pricing .card{
    border:2px solid #DDD; 
    border-radius:10px;
    overflow: hidden;
    transition: all .3s;
}
.pricing .card:hover{ 
    transform:translateY(-6px); 
    box-shadow:0 18px 40px rgba(0,0,0,.08); 
    border: solid 2px var(--tp-black-color);
}
.feature{ 
    display:flex; 
    align-items:center; 
    line-height:1.4; 
}
.pricing .card.popular{ 
    border:2px solid var(--tp-primary-color); 
    transform:translateY(-10px); 
}
.pricing .card-header{
    border-bottom:none;
}
    .pricing .price{ font-weight:800; letter-spacing:-.5px; }
    .feature{ display:flex; align-items:center; gap:.6rem; padding:.35rem 0; }
    .feature .bi{ font-size:1.1rem; }
    .muted{ color:#a0a6ad; }
.ribbon{
    position:absolute; 
    top:24px; 
    right:24px;
    border-radius:999px;
}
.textimonial-wrapper{
    border-radius: 15px;
    border-bottom: solid 5px var(--tp-primary-color);
    min-height: 200px;
}
.rating i{ 
    margin-right: 2px; 
}
.accordion-button{
    outline: none !important;
    box-shadow: none !important;
    border-bottom: solid 1px #DDD !important;
    border-radius: 0px !important;
}
.accordion-item{
    border: solid 1px #DDD !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    border-bottom: solid 5px var(--tp-primary-color) !important;
}
.form-floating{ 
    position:relative; 
}
.pw-toggle{
    position:absolute; 
    right:25px; 
    top:50%; 
    transform:translateY(-50%);
    border:0; 
    background:transparent; 
    padding:0; 
    line-height:1;
    color:#6b7280; 
    cursor:pointer;
    height: 20px;
    width: 20px;
}
.pw-toggle i{
    color:#6b7280; 
}
.pw-toggle:hover{ 
    color:#111; 
}
.otp-group{
    display:flex; 
    gap:20px; 
    justify-content:center;
}
.otp-input{
    width:55px; 
    height:55px; 
    text-align:center;
}
.otp-input:focus{
    border-color:#0d6efd; box-shadow:0 0 0 4px rgba(13,110,253,.15);
}
.br-10{
    border-radius: 10px;
}