:root {
	--white: #fff;
	--light-gray: #6E6E6E;
  --medium-gray:#8B8B8B;
	--gray: #6F6F6F;
	--gray-dark: #434343;
	--primary: #30B1E5;
	--secondary: #B9B9B9;
	--success: #00A827;
	--info: #36b9cc;
	--warning: #f6c23e;
	--danger: #EA0000;
	--light: #f8f9fc;
	--dark: #212121;
	--form-border-color: #D3D3D3; 
	--bg-light: #fafbff;
	--bg-color:#F8F9FF;
	--table-border: #F5F5F5;
	--light-primary: #F4FCFF;
	--border-color: #ECECEC;
	--purple: #9B2B8B;
	--darkblue: #2B449B;
	--bs-font-sans-serif: "Quicksand", sans-serif !important;
}
* {
  padding: 0;
  margin: 0;
  box-shadow: none;
}
*,
::after,
::before {
	box-sizing: border-box
}
html {
	font-family: "Quicksand", sans-serif !important;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent
}
body {
  position: relative;
  min-height: 100%;
  font-family: "Quicksand", sans-serif !important;
  color: var(--gray-dark);
}
h1, h2, h3, h4, h5, h6 {
font-weight: 600 !important;
}

h1, h2, h3, h4, h5, h6, p {
  color: var(--dark);
}
h5 {
  line-height: 1.5 !important;
}

a {
  text-decoration: none !important;
  color: var(--primary) !important;
}
p {
  font-size: 1.025rem;
  color: var(--gray);
  font-weight: 400;
}
.small, small {
    font-size: 0.8125em;
}
p strong {color: #000 !important; font-weight: 600;}

.fw-100 {font-weight: 100;}
.fw-200 {font-weight: 200;}
.fw-300 {font-weight: 300;}
.fw-400 {font-weight: 400;}
.fw-500 {font-weight: 500;}
.fw-600 {font-weight: 600;}
.fw-700 {font-weight: 700;}
.fw-800 {font-weight: 800;}
.fw-900 {font-weight: 900;}

.fs-7 {font-size: 15px !important;}
.fs-8 {font-size: 14px !important;}
.fs-9 {font-size: 13px !important;}
.fs-10 {font-size: 12px !important;}
.fs-11 {font-size: 11px !important;}

.border-none{
  border: none !important;
}
.gray {
  color: var(--gray);
}
.white {color: var(--white) !important;}
.primary {
  color: var(--primary) !important;
}
body .text-primary {color: var(--primary) !important;}

.bg-primary {
  background: var(--primary);
}
.dark{color: var(--dark) !important;}
input.form-control {
  border: 1px solid #3B3A42;
  background: var(--white);
  height: 50px;
  border-radius: 15px;
}
.form-control:focus {
  background: none;
  color: var(--gray-dark);
  box-shadow: none;
}
.btn-primary {
    background-image: linear-gradient(to right, #30B1E5 0%, #2B93BD 51%, #30B1E5 100%);
    border:1px solid #2ea8d9 !important;
}
.btn-primary {
  padding: 15px 45px;
  text-align: center;
  transition: 0.2s;
  background-size: 200% auto;
  color:var(--white) !important;
  border-radius: 10px;
  display: block;
}
.btn-primary:hover {
  background-position: right center; /* change the direction of the change here */
  color: var(--white);
  text-decoration: none;
  transition: 0.2s;
}
.btn-primary i {transform: rotate(-45deg); transition: 0.5s; margin-left: 5px;}
.btn-primary:hover i {transform: rotate(0deg); transition: 0.5s; margin-left: 5px;}
.btn-check:focus+.btn-primary, .btn-primary:focus {
  box-shadow: none !important;
}
.form-control:focus {
  border-color: var(--primary) !important;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
  color: var(--primary) !important;
  border-bottom: 2px solid var(--primary) !important;
}
.navbar-light .navbar-nav .nav-link {
  color: var(--dark) !important;
}
.nav-link:hover {
  opacity: 1;
}
a.nav-link.nav-link-ltr {
  position: relative;
}
.navbar-light .navbar-nav .nav-link::before {
  transition: 300ms;
  height: 3px;
  content: "";
  position: absolute;
  background-color: #ffffff;
  left: 5px;
  right: 5px;
}
.inline-block {
  display: inline-block !important;
}
.nav-link-ltr::before {
  width: 0%;
  bottom: -10px;
}
.nav-link-ltr:hover::before {
  width: 95%;
}
a.nav-link.nav-link-ltr.active {position: relative;}
a.nav-link.nav-link-ltr.active::before {
  position: absolute; 
  bottom: -10px;
  height: 3px;
  content: "";
  position: absolute;
  background-color: var(--white) !important;
  left: 0;
  width: 100%;
}
.sub-page-nav a.nav-link.nav-link-ltr.active::before {
  background-color: var(--primary) !important;
}
button.navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-color: var(--primary);
}
.custom-navbar button.navbar-toggler span {
    font-size: 35px;
    color:  var(--primary);
    padding: 0 !important;
}
.custom-navbar ul.navbar-nav li.nav-item a.nav-link {
    color: var(--dark) !important;
    font-size: 1rem;
    font-weight: 500;
}
.custom-navbar ul.navbar-nav li.nav-item a.btn-primar {
    margin-left: 0 !important;
    padding: 10px !important;
    margin-top: 10px !important;
}
.custom-navbar a.nav-link.nav-link-ltr {
  position: relative;
}
.custom-navbar .nav-link::before {
  transition: 300ms;
  height: 3px;
  content: "";
  position: absolute;
  background-color: var(--primary) !important;
  left: 2px;
  right: 2px;
}
.custom-navbar .nav-link-ltr::before {
  width: 0%;
  bottom: -5px;
}
.custom-navbar .nav-link-ltr:hover::before {
  width: 100%;
}
.custom-navbar a.nav-link.nav-link-ltr.active {position: relative;}
.custom-navbar a.nav-link.nav-link-ltr.active::before {
  position: absolute; 
  bottom: -5px;
  height: 3px;
  content: "";
  position: absolute;
  background-color: var(--primary) !important;
  left: 0;
  width: 100%;
}

button.navbar-toggler span {
    font-size: 35px;
    color: #fff;
    padding: 0 !important;
}
.index-99 {
  z-index: 99;
}
nav.navbar {
  transition: 0.3s;
}
nav.navbar.navbar-fixed-top {
  position: fixed !important;
  left: 0 !important;
  top: 0;
  width: 100%;
  z-index: 99;
  padding: 0;
  
}
.navbar-light {
  background-color: #e7efff;
}
section.top-bar.features-top-bar nav.navbar.navbar-fixed-top {background: var(--white);}
.custom-navbar {
  background-color: var(--white) !important;
  z-index: 9999;
  width: 100%;
  transition: 0.3s;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px !important;
}

.custom-navbar  img.main-logo {
  width: 185px;
}

img.main-logo {
  width: 250px;
}
ul.navbar-nav li.nav-item a.nav-link {
  min-width: 130px;
  text-align: center;
  padding: 6px 0;
  font-size: 1.2rem;
  color: var(--white) !important;
}
ul.navbar-nav li.nav-item a.btn-primary {
  margin-left: 20px;
}
.app-download img {
  width: 170px;
}
img.main-banner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  max-width: 1080px;
  object-fit: contain;
  height: auto;
  top: 0;
  z-index: 99;
}
.top-bar {
  min-height: 100%;
  height: 100vh;
  max-height: 800px;
  background: rgb(229,238,255);
  background: linear-gradient(180deg, rgba(229,238,255,1) 0%, rgba(246,249,255,1) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.home-banner {
    min-height: 715px;
    width: 100%;
    display: block;
    height: 100%;
}
.home-banner-img {
    background: url(../img/home-banner.webp);
    height: 800px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.about-banner {
    background: url(../img/about-banner.webp);
    height: 600px;
    place-content: end;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
}
.about-banner::before {
  background: rgba(0, 0, 0, 0.6);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.navbar>.container-fluid {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    margin: 10px 20px;
    background: var(--white)fff;
    padding: 15px;
    border-radius: 20px;
}
ul.navbar-nav .btn-primary {
    margin-left: 20px;
}
.banner-content h6 {
    color: var(--white);
    font-size: 1.563rem;
}
.banner-content h1 {
    font-size: 5.625rem;
    color: var(--white);
    font-weight: 600;
    line-height: 90px;
    margin-bottom: 20px;
}
.banner-content p {
  color: var(--white);
  width: 70%;
  font-size: 1.2rem;
}
footer {
    background: var(--dark);
    padding: 50px;
}
footer a {
    color: #fff !important;
}
ul.social-links {
    display: flex;
    padding: 0;
    list-style: none;
    margin-top: 30px;
    flex-wrap: wrap;
}
ul.social-links li {
    margin-right: 15px;
}
footer h2 {
    font-size: 70px;
    color: var(--white);
    width: 70%;
}
footer a {
  color: var(--white);
}
footer a:hover {
  color: var(--light-gray);
}
footer p {
  color: var(--white);
  width: 70%;
  font-size: 1.2rem;
}
.footer-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    flex-wrap: wrap;
}
footer .footer-links li {
  margin-left: 20px;
}
nav.custom-navbar, nav.custom-navbar .container-fluid {
    padding: 0;
    box-shadow: none;
    background: transparent;
}
footer .border-top {
  border-color: 2px solid #282828 !important;
}

.navbar>.container-fluid {
  background: #FFFFFF;
  background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(0, 0, 0, 0.1) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.119),
    inset 0 -1px 0 rgba(255, 255, 255, 0.054),
    inset 0 0 4px 2px rgba(255, 255, 255, 0.064);
  position: relative;
}
.navbar>.container-fluid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}
.navbar.sub-page-nav>.container-fluid {
  box-shadow: none;
  background-color: #ffffff;
  background: #fff;
}
.navbar.sub-page-nav ul.navbar-nav li.nav-item a.nav-link {
  color: var(--dark) !important;
  position: relative;
  display: inline-block;
  position: relative;
  font-weight: 500;
}
/* .navbar>.container-fluid::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
} */


label.cus-label {
    margin-bottom: 0;
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 3px 5px;
    font-size: 15px;
    color: var(--gray);
    font-weight: 500;
}
input.form-control {
    border: 1px solid var(--form-border-color) !important;
    height: 50px !important;
    border-radius: 8px !important;
    font-size: 1rem;
    font-weight: 500;
}
textarea.form-control {
	border: 1px solid var(--form-border-color) !important;                                                                                                  ;
    border-radius: 8px !important;
	font-weight: 500;
}
input.form-control {
    border: 1px solid var(--form-border-color) !important;
    height: 50px !important;                                                                                                   ;
    border-radius: 8px !important;
	font-size: 1rem;
	font-weight: 500;
}
select.form-select {
    border: 1px solid var(--form-border-color) !important;
    height: 50px;
    border-radius: 8px !important;
	font-weight: 500;
}
form sup {
	color: var(--danger);
	font-size: 1rem;
    vertical-align: -webkit-baseline-middle;
}
.input-icon {
    position: absolute;
    right: 20px;
    top: 15px;
	color: var(--gray);
}
.form-control:focus {
	box-shadow: none !important;
}
.dropdown-menu {
    border-radius: 15px !important;
    border: 1px solid #f3f3f3 !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px !important;
    animation: 0.5s slideup;
}
label.cus-label {
    margin-bottom: 0;
    position: absolute;
    top: -10px;
    left: 10px;
    background: var(--white);
    padding: 1px 5px;
    font-size: 15px;
    color: var(--gray);
    font-weight: 500;
    line-height: normal;
}
.btn-secondary {
    color: #6c757d !important;
    background-color: var(--white)fff !important;
    border-color: #cacaca !important;
    height: 50px;
    border-radius: 10px !important;
}
.search-btn, section.search-form a.btn.btn-outline-secondary {
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dtl-card .card,
section.search-form .card {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 0 !important;
  border-radius: 20px !important;
}
.dtl-space{
  padding-top: 86px;
}
.card-body {
  padding: 30px !important;
}

.destinations img {
    height: 55px;
    width: 55px;
    border-radius: 5px;
    object-fit: cover;
}
.dropdown.destinations-dropdown ul.dropdown-menu {
    min-width: 880px;
}
.destinations {
  display: inline-flex;
  align-items: center;
}
.destinations p {
  line-height: normal;
  display: block;
  color: var(--dark);
  font-size: 0.872rem;
  width: 140px;
}
.search-form button.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 .input-group .btn {
      min-width: 40px;
    }
    /* Hide number input spinners (scoped to guest count picker) */
    .count-input input[type="number"] {
      -moz-appearance: textfield; /* Firefox */
      appearance: textfield;      /* Modern browsers */
    }
    .count-input input[type="number"]::-webkit-outer-spin-button,
    .count-input input[type="number"]::-webkit-inner-spin-button {
      -webkit-appearance: none;   /* Chrome, Safari, Edge */
      margin: 0;
    }
  .count-input .input-group {
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    border-radius: 20px;
    padding: 5px 10px;
    width: auto;
    max-width: 100px;
    justify-content: center;
}
.count-input .input-group input.form-control {
    width: 50px;
    height: auto !important;
    padding: 0 !important;
    flex: none;
    border: 0 !important;
}
ul.dropdown-menu.dropdown-menu-end.count-input {
    min-width: 30rem;
}
.most-visited-card {
    height: 100%;
    position: relative;
    height: 400px;
}
.most-visited-card.left-most-visited-card {
    height: 820px;
}
.most-visited-card::after {
  content: '';
  width: 100%;
  height: 100%;
  background: var(--white)fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.31) 60%);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 20px;
}
.most-visited-card img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 20px;
  height: 100%;
}
.most-visited-card.left-most-visited-card img {
    width: 100%;
    height: 100%;
    max-height: 100% !important;
    object-fit: cover;
    border-radius: 20px;
}
h1.heading {
    font-size: 3rem;
    position: relative;
}
h1.heading::before {
    content: '';
    background: url(../img/before-icon.svg);
    width: 40px;
    height: 40px;
    position: absolute;
    right: 86px;
    top: -20px;
    background-size: contain;
    background-repeat: no-repeat;
}
.content-sec {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 9;
}
.start-rating span.checked {
  color: var(--primary);
}
.start-rating span {
    color: var(--form-border-color);
}
a.btn.btn-outline-secondary {
  border: 1px solid var(--form-border-color);
  font-weight: 500;
  color: var(--dark) !important;
}
a.btn.btn-outline-secondary:hover {
  border: 1px solid var(--primary);
  background: var(--white) !important;
  color: var(--primary);
}

.most-visited-card.programs-list {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
.most-visited-card.programs-list::after {
  display: none;
}
.most-visited-card.programs-list img {
  height: 100%;
  min-height: 100%;
  max-height: 400px;
}
.most-visited-card.programs-list .content-sec {
  display: flex;
  align-items: end;
  height: 100%;
width: 100%;
  left: 0;
  padding: 20px;
  bottom: -70px;
  transition: .4s;
  background: var(--white)fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.62) 83%);
  border-radius: 20px;
}
.most-visited-card.programs-list .content-sec p {
  opacity: 0;
  margin-top: 20px;
  min-height: 50px;
}
.most-visited-card.programs-list:hover .content-sec p {
  opacity: 1;
  margin-top: 10px;
}
.most-visited-card.programs-list:hover .content-sec {
  bottom: 0;
  transition: .4s;
}
.vaccation-list h1.heading::before {
  top: -20%;
  right: 17%;
}
.vaccation-list p.sub-para {
  width: 70%;
}
i.fa-solid.fa-star.checked {
    color: var(--primary);
}
.vaccation-sec img {
    border-radius: 20px;
    height: 350px;
    object-fit: cover;
}

.trainners-group {
    margin-right: 0px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: absolute;
    right: 10px;
    bottom: 5px;
}
.trainners-group-img {
    margin-left: -10px;
    transition: 0.5s ease-out;
}
.trainners-group-img img.thumb-user-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
    object-position: center;
    border: 2px solid var(--white);
    margin: 5px 0px;
}
.trainners-group:hover .trainners-group-img {
    margin-left: 2px;
    transition: 0.5s ease-out;
}
 ul.wellness-lst li {
  position: relative;
  list-style: none;
  padding-left: 30px;
  color: var(--gray);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
 }
  ul.wellness-lst li::before {
    content: "";
    background-image: url('../img/list-icon.png');
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
  }
  .wellness-sec {
    background-image: url(../img/wellness-bg.webp);
    padding: 50px 30px;
    background-position: center;
    background-size: cover;
  }
  section.wellness-sec h1.heading {
    font-size: 2.5rem;
  }
  section.wellness-sec h1.heading::before {
    right: auto !important;
    left: 350px;
    top: -20px;
}
 section.wellness-sec p.sub-para {
  width: 80%;
 }
 section.community .content-sec {
    right: 20px;
}
a.view-more {
    width: 50px;
    height: 50px;
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: rotate(45deg);
    transition: 0.5s ease-out;
}
a.view-more:hover {
  transform: rotate(0deg);
  transition: 0.5s ease-out;
  color: var(--white);
}

/* testimonials */

.carousel-wrapper {
      position: relative;
      padding: 20px 0;
    }

    .carousel-inner-wrapper {
      overflow: hidden;
      padding: 0 12.5%; /* to make half card visible */
    }

    .carousel-track {
      display: flex;
      gap: 1rem;
      transition: transform 0.5s ease;
    }

    .carousel-card {
      flex: 0 0 calc(100% / 3); /* 3 cards total: 0.5 + 1 + 1 + 0.5 = 3 */
      background-color: #282828;
      border-radius: 10px;
      padding: 40px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

   .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 50%;
    z-index: 2;
    cursor: pointer;
    width: 50px;
    height: 50px;
    font-size: 24px;
}
    .carousel-arrow.left {
      left: 10px;
    }

    .carousel-arrow.right {
      right: 10px;
    }

    .carousel-dots {
      text-align: center;
      margin-top: 20px;
    }

    .carousel-dots span {
        display: inline-block;
        width: 80px;
        height: 5px;
        margin: 0 5px;
        background: var(--gray-dark);
        border-radius: 30px;
        cursor: pointer;
    }

    .carousel-dots .active {
      background: var(--white);
    }
    .testimonial-sec {
      background: var(--dark);
      padding: 80px 0 60px 0;
    }
    .user-sec {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        color: #fff;
    }
    .user-sec img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-right: 10px;
      object-fit: cover;
    }
    .user-sec h5,  .user-sec small {
      line-height: normal !important;
    }
    .testimonial-sec .content-sec {
      position: relative !important;
      left: auto;
      bottom: auto;
      text-align: start;
      margin-top: 15px;
    }
    .testimonial-sec p {
      font-size: 1rem;
    }
    img.property-img {
        height: 250px;
        border-radius: 20px;
        object-fit: cover;
    }
    .testimonial-sec img.property-img {
      height: 300px;
      width: 400px;
      object-fit: cover;
    }
    .testimonial-sec .content-sec p {
      font-size: 0.875rem;
    }
    p.content {
      font-size: 18px;
      margin-bottom: 20px;
  }
  .carousel-arrow.at-start, .carousel-wrapper.at-start .carousel-arrow.left {
    opacity: 0.1;
    pointer-events: none;
}

  .carousel-arrow.at-end,
  .carousel-wrapper.at-end .carousel-arrow.right {
    opacity: 0.5;
    pointer-events: none;
  }
    @media (max-width: 768px) {
      .carousel-inner-wrapper {
        padding: 0 5%;
      }

      .carousel-card {
        flex: 0 0 80%;
      }
    }
/* testimonial */

section.search-form.search-result {
    padding-top: 100px;
}
.container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
}
.map {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
}
.location-sec .btn-primary {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 250px;
    padding: 13px;
}
.search-section .card {
  border: 1px solid var(--border-color) !important;
  box-shadow: none;
}
.search-section .card-body {
  padding: 20px !important;
}
.filter-section label.form-check-label {
  font-size: 0.938rem !important;
}
 .progress-container {
      position: relative;
      height: 8px;
      border-radius: 5px;
      cursor: pointer;
    }

    .progress-bar-fill {
      background-color: var(--primary);
      height: 100%;
      width: 0%;
      border-radius: 5px;
    }

    .progress-handle {
      position: absolute;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 14px;
      height: 14px;
      background-color: var(--primary);
      border-radius: 50%;
      cursor: pointer;
    }

    .time-display {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      margin-top: 8px;
    }
    a.btn-outline {
        display: flex;
        align-items: center;
        border: 1px solid var(--gray);
        border-radius: 30px;
        padding: 10px;
        color: var(--gray-dark);
    }
     a.btn-outline:hover {
        color: #fff !important;
        background: var(--primary) !important;
    }
    a.btn-outline:hover span {color: var(--white) !important;}

    .btn-outline:hover{border-color: var(--primary) !important;}
    .properties a.btn-outline.dropdown-toggle::after {
      display: none;
    }
    .prprty-dtl p {
      font-size: 0.938rem;
    }
   .checked-list {
      list-style: none;
      padding-left: 0;
      max-height: 130px;
      overflow-y: auto;
      margin-bottom: 0;
  }
    .checked-list li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 10px;
      font-size: 0.938rem;
    }
    .checked-list li::before {
      content: "\f00c";
      font-family: "Font Awesome 6 Free";
      position: absolute;
      left: 0;
      color: green;
      font-weight: bold;
    }
    .properties-imgs img {
      height: 250px;
      object-fit: cover;
      border-radius: 20px;
    }
    img.trainer-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
}
.fitness-programms {
  display: -webkit-inline-box;
 width: 100%;
overflow-x: auto;
}
.fitness-programms .card {
  width: 500px;
  margin: 5px 15px 5px 0;
  border-radius: 15px;
}
.fitness-programms .card-body {
  padding: 15px !important;
}
.prprt-tag {
    color: var(--primary) !important;
    font-size: 12px;
    background: #E4F7FF !important;
    padding: 3px 7px;
    border-radius: 4px;
    font-weight: 500;
    margin:2px 5px 2px 0;
}
h3.prprty-amt span {
    text-decoration: line-through;
    font-size: 18px;
    margin-right: 8px;
    color: var(--secondary);
}

::-webkit-scrollbar {
  width: 10px !important;
}
::-webkit-scrollbar-track
{
	border-radius: 10px;
	background-color: var(--bg-color);
}

::-webkit-scrollbar
{
	height: 5px;
	background-color: var(--bg-color);
}

::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-color: var(--primary);
}

/* login modal */
.login-modal .modal-banner {
   margin: 25px 0px 25px 25px; 
}
.login-modal .modal-content{
    border: 1px solid rgba(0, 0, 0, 0);
    background-color: #fff0;
}
.login-modal .login-data .btn-close {
    background: none;
    position: absolute;
    right: 15px;
    top: 15px;
    opacity: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-modal .login-data {
background: var(--white);
  height: 100%;
  border-radius: 24px;
  padding: 30px 25px;
  position: relative;
  height: 100%;
  position: relative;
}
.wp-login{
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.login-modal .modal-banner img{
  border-radius: 24px 0px 0px 24px;  
}
.login-modal .login-data h3 img{
  width: 43px;  
}
.login-modal .login-data h3 {
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  gap: 8px;
}
.login-modal .login-data p{
  font-weight: 500;
  font-size: 14px;
}
label.cus-label {
  margin-bottom: 0;
  position: absolute;
  top: -15px;
  left: 20px;
  background: #fff;
  padding: 3px 5px;
  font-size: 15px;
  color: var(--gray);
  font-weight: 500;
  z-index: 4;
}
.login-data a {
    color: var(--primary);
}
.form-control.is-invalid {background: none !important;}
select.form-control {
  border: 1px solid var(--form-border-color) !important;
  height: 50px !important;
  border-radius: 8px !important;
  font-size: 1rem;
  font-weight: 500;
}
form sup {
  color: var(--danger);
  font-size: 1rem;
  vertical-align: -webkit-baseline-middle;
}
.input-icon {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--primary);
  z-index: 99;
}
.form-check {
  display: flex !important;
  min-height: auto !important;
  margin-bottom: auto !important;
}
.login-form .form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
}
input[type="checkbox"] {
  position: relative;
  border: 2px solid var(--primary);
  border-radius: 3px;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 0 .6em 0 0;
  margin-left: 0px;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 22px;
  width: 22px;
  -webkit-appearance: none;
}
input[type="checkbox"]::before {
  content: '';
  position: absolute;
  right: 50%;
  top: 50%;
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}
.login-form .form-check label {
  font-size: 0.875rem;
}
.gray {
  color: var(--gray) !important;
}
.login-form .form-check label {
  font-size: 0.875rem;
}
.or-sec {
  text-align: center;
  display: flex;
  margin: 25px 0;
  position: relative;
  z-index: 9;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.or-sec::before {
  z-index: 1;
  width: 100%;
  content: '';
  height: 1px;
  background: #e1e1e1;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.btn-secondary-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray) !important;
  font-weight: 500;
  border: 1px solid #D3D3D3 !important;
  font-size: 0.938rem !important;
  min-width: 120px;
  line-height: normal;
}
.btn-secondary-outline:hover {
  border-color: 1px solid var(--gray-dark) !important;
  color: var(--gray-dark) !important;
}
a.btn-secondary-outline img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}
.or-sec span {
  background: #fff;
  display: flex;
  width: 35px;
  height: 35px;
  position: relative;
  z-index: 99;
  align-items: center;
  justify-content: center;
  color: var(--gray);
}
  ::placeholder {
  color: rgb(191, 191, 191) !important;
  opacity: 1; /* Firefox */
  font-size: 14px;
  }
  ::-ms-input-placeholder { /* Edge 12-18 */
  color: rgb(191, 191, 191) !important;
  font-size: 14px;
  }
  .copy-rt-sec {
  text-align: center;
}
.login-data small{
  color: var(--gray);
}
.login-data small a{
  text-decoration: underline !important;
}
.side-bar-checkbox {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 15px;
}
.fitness-programms-card a {
    color: var(--primary);
}
.fitness-programms-card a:hover {color: #1d93c3;}
section.wellness-sec .card {border-radius: 20px;}


/*--- 02/07/2025 ---*/

.top-space{
  padding-top: 100px;
}
.main-image img {
  width: 100%;
  height: auto;
  max-height: 425px;
  object-fit: cover;
  border-radius: 15px;
}
.thumbnail-images img {
  /* width: 100px;
  height: 80px; */
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  flex: 0 0 auto;
  transition: all 0.3s;
}
.img-thumbnail {
  padding: 0px !important;
  border: none !important;
  border-radius: .25rem;
  max-width: 100%;
  height: auto;
}
.btn_box{
  display: flex;
  align-items: center;
  gap: 10px;
}

.light-gray{color: var(--light-gray) !important;}
.medium-gray{color: var(--medium-gray) !important;}
span.dot{
  height: 5px;
  width: 5px;
  display: inline-block;
  background: var(--light-gray);
  border-radius: 50%;
}

.property-tabs{ box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 10px -5px;}
.property-tabs a{font-size: 20px;color: var(--medium-gray) !important;padding: .75rem .825rem;font-weight: 500; margin: 0 20px;}
.property-tabs a.nav-link.active{color:var(--primary) !important;border-bottom: 3px solid var(--primary);background: var(--white);border-radius: 0px !important;}
.property-tabs a.nav-link::before{display: none !important;}
.property-inner{position: relative;}
.property-inner::before{
   content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-primary);
    z-index: -1;
}

.property-inner .web-card{border-radius: 24px;padding: 30px;background: var(--white);}
.property-inner section{padding-bottom: 1.8rem;}

.sub-card,.card{border: 1px solid var(--form-border-color) !important;border-radius: 24px !important;}

.main-image .view-img{
  position: absolute;
  left: 15px;
  bottom: 15px;
  border-radius: 30px;
  font-size: .875rem;
  padding: .55rem .95rem;
  font-weight: 600;
  color: var(--white) !important;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.speciality-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.speciality-tags span {
  background: #E4F7FF;
  padding: 3px 7px;
  font-size: 13px;
  color: var(--primary);
  margin: 5px 5px 5px 0;
  border-radius: 5px;
  font-weight: 500 !important;
}

.speciality-tags span i {
  width: 20px;
  height: 20px;
  font-size: 20px;
}
.black {
  color: var(--dark);
}
.sticky-tabs{
  position: sticky;
  top: 73px;
  z-index: 98;
  background: var(--white);
}

.card-img-sec {
  margin: 1rem 1rem 0;
  position: relative;
}
.card-img-sec img.card-img-top {
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  z-index: 1;
  position: relative;
  object-position: top;
}
.trainer-tag {
  background: #30b1e5;
  display: inline-flex;
  padding: 5px 10px;
  font-size: 0.875rem;
  color: #fff;
  align-items: center;
  border-radius: 5px 5px 5px 0;
  position: absolute;
  left: -10px;
  bottom: 20px;
  z-index: 9;
}
.tag-bar {
  position: relative;
}

.tag-bar::before {
  position: absolute;
  content: "";
  background-image: url(../img/tag-before.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  left: -13px;
  bottom: -13px;
  display: block;
  z-index: 1;
  width: 14px;
  height: 8px;
}
.trainer-tag span {
  font-size: 20px;
  padding-bottom: 1px;
}
a.dlt-btn.danger {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 9;
  background: var(--danger);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.amenities-list p {
  margin-bottom: 0;
  font-size: 1rem;
}
.amenities-list span {
  color: var(--primary);
  margin-right: 10px;
}
.amenities-list {
  display: flex;
  align-items: center;
}


.profile-sec {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
span.star-tag {
  background: #2fb2e5;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
}
.rate {
  float: left;
  height: 46px;
  padding: 0 10px;
}
.rate:not(:checked) > label {
  float: right;
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 30px;
  color: var(--secondary);
  margin-right: 10px;
}
.rate:not(:checked) > label::before {
  content: '★ ';
}
.rate:not(:checked) > input {
  position: absolute;
  top: -9999px;
}
.rate:not(:checked) > label:hover, .rate:not(:checked) > label:hover ~ label {
  color: var(--primary);
}

.align_middle{display: flex !important;align-items: center;gap: 5px;}
.md-icon{font-size: 18px !important;}
.profile-sec img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.property-location {
  border-radius: 0 ;
  overflow: hidden;
}


.vaccation-sec img {
  border-radius: 20px;
  height: 350px;
  object-fit: cover;
}
.trainners-group {
  margin-right: 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  right: 10px;
  bottom: 5px;
}
.trainners-group-img img.thumb-user-img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 50%;
  object-position: center;
  border: 2px solid var(--white);
  margin: 5px 0px;
}
.trainners-group:hover .trainners-group-img {
  margin-left: 2px;
  transition: 0.5s ease-out;
}
i.fa-solid.fa-star.checked {
  color: var(--primary);
}

.slice-amount{
  font-size: 20px;
  text-decoration: line-through;
  color: var(--gray);
  opacity: 0.6;
  margin-right: 5px;
}

.offcanvas-body a{
  color: var(--gray) !important;
  font-size: 1rem;
  padding: 10px;
}
.offcanvas-body a.active{
  color: var(--primary) !important;
}

.offcanvas-btn{border: 2px solid var(--primary) !important;display: flex !important;}


/* --- end ---*/

.iti--separate-dial-code .iti__selected-flag {
  background: #fff !important;
  border-radius: 10px;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}
a.input-icon:hover {
    color: #1d92c1 !important;
}
a.clear-btn {
    position: absolute;
    right: 80px;
    top: -25px;
    text-align: center;
    padding: 3px;
    font-size: 14px;
}
.dropdown-item.active, .dropdown-item:active {background-color: var(--primary) !important;}
img.nav-profile {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #f4f4f4;
    object-fit: cover;
}
nav.sub-page-nav .nav-profile-sec p {color: #000 !important;}
nav.sub-page-nav .nav-profile-sec small {color: gray;}

nav.custom-navbar .nav-profile-sec p {color: #000 !important;}
nav.custom-navbar .nav-profile-sec small {color: gray !important;}

.nav-profile-sec p {
    display: block;
    line-height: normal;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nav-profile-sec small {
    display: block;
    line-height: normal;
    font-size: 13px;
    color: lightgray;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.iti {width: 100%;}
.iti__selected-flag {height: 50px;}
.iti--separate-dial-code .iti__selected-flag {background: transparent !important;}
.iti__country-list {z-index: 6 !important;}
ul.dropdown-menu span {color: var(--primary);}
ul.dropdown-menu a.dropdown-item {color: var(--dark) !important;}
section.community h1.heading::before {right: 20px; top: -20px;
	/* border: 1px solid var(--form-border-color); */
  padding: 16px !important;
	border-radius: 143px;	
	gap: 10px;
}
.cus-tab {
    border: 1px solid var(--form-border-color);
    padding: 10px 15px !important;
    border-radius: 50px;
    gap: 10px;
}
.cus-tab li .nav-link.active{
	background: var(--primary);
  color: var(--white) !important;
  border-radius: 88px;
}
.cus-tab li .nav-link{
color: var(--dark);
  font-weight: 600;
  border-radius: 88px;
}
.cus-tab li .nav-link:hover{
transform: scale(1.025);
  transition: 0.5s;
}
.cus-tab .nav-item{
	  border-radius: 88px;
}
.cus-tab .nav-item .nav-link .table-icon{
	height: 19px;
	width: 19px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cus-tab .nav-item .nav-link .table-icon span{
	font-size: 13px;
}
.cus-tab .nav-item .nav-link.active .table-icon{
	background: var(--white);
}
.cus-tab .nav-item .nav-link.active .table-icon span{
	color: var(--primary);
}
.cus-tab .nav-item .nav-link .table-icon{
background: #9E9E9E;
}
.cus-tab .nav-item .nav-link .table-icon span{
	color: var(--white);
}
.property-sec img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin-right: 15px;
    object-fit: cover;
}
section.my-booking {
    position: relative;
    padding-top: 50px;
    margin-top: 80px;
    min-height: 400px;
}
section.my-booking:before {
    content: '';
    background: #30B1E5;
    background: linear-gradient(180deg, rgba(48, 177, 229, 1) 0%, rgba(43, 147, 189, 1) 100%);
    position: absolute;
    top: 0;
    left: 0;
    height: 400px;
    width: 100%;
}
.border-dashed-bottom {
  border-bottom: 1px dashed #e0e0e0;
}
span.badge.room-tag {
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
    min-width: 100px;
}
.trainer-sec img {
  width: 65px;
  height: 65px;
  border-radius: 10px;
  object-fit: cover;
}
.date-time-card {
    border: 1px solid #dadada;
    padding: 5px 10px;
    border-radius: 10px;
    margin: 2px;
}
.date-time-card p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--dark);
  font-weight: 600;
  line-height: normal;
}
.date-time-card small {
  margin-bottom: 0;
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  line-height: normal;
}
.date-time-card.more-button {
    height: 55px;
    width: 50px;
    display: flex;
    align-items: center;
    color: var(--white) !important;
    border: 0;
    justify-content: center;
    background: #30B1E5;
    background: linear-gradient(180deg, rgba(48, 177, 229, 1) 0%, rgba(43, 147, 189, 1) 100%);
}
.fitness-modal .trainer-sec img  {
  width: 100%;
  height: 110px;
  object-fit: cover;
}
.fitness-modal .modal-content {
    border-radius: 20px;
}
.link-blk{
    color: #333 !important;
}
.card .dit-prf{
  margin-left: 150px;
}
.galy img{
height: 230px;
object-fit: cover;
border-radius: 20px !important;
}
.bak-btn {color: var(--primary);font-weight: 600;}
.bak-btn:hover {color: #0A3D52}
.bak-btn a{gap: 9px;}
.scroll-set > div{
min-width: 312px;
}
.sub-img .row > dic img.img-thumbnail{
  width: 100px !important;
  height: 80px !important;
}
.week-days-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  /* overflow: hidden; */
  padding: 0 10px;
}

.week-days-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  display: flex;
  gap: 0.5rem;
  width: 100%;
}
.week-days {
    display: flex;
    flex-wrap: nowrap;
    min-width: max-content;
    justify-content: space-between;
    width: 100%;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    overflow: hidden;
}
.day {
    min-width: 130px;
    width: 100%;
    text-align: center;
    overflow: hidden;
    background: var(--white);
}
.day.selected-active .day-hd p {
    color: #000 !important;
}
.day-hd {
  padding: 10px;
  background: #f0f0f0;
}

.choose-date {
  padding: 5px;
}

.day p, .day h5, .day small {
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--dark, #333);
  font-weight: 500;
  line-height: normal !important;
}
.arrow-btn {
    background: var(--white);
    border: none;
    font-size: 1rem;
    padding: 0 10px;
    color: #333;
    cursor: pointer;
    position: absolute;
    width: 35px;
    height: 35px;
    top: 50%;
    transform: translatey(-30%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}
button.arrow-btn.next {
    right: -10px;
}
button.arrow-btn.prev {
    left: -10px;
}
.slot-time {
    border: 1px solid #d0d0d0;
    padding: 10px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    border-radius: 5px;
    margin: 3px;
}
.select-slots {
  display: flex;
  overflow-x: auto;
  margin: 0 10px;
}
.select-name {
  width: 100%;
}
.select-name select {
    width: 100px;
    margin-right: 10px;
}
.select-name input.form-control {
  width: 100% !important;
}
.nos-slots {
    color: #53B948;
    background: #E4FFE8;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 10px;
}

.day.active p,
.day.active h5,
.day.active small {
    color: var(--white) !important;
}

.day.has-selection {
    border: 2px solid #28a745; /* Green border for dates with selected slots */
}

.day.active {
    background-color: var(--primary);
    border: 2px solid #007bff; /* Blue border for currently viewed date */
}

.day.has-selection.active {
    box-shadow: 0 0 0 2px #007bff, 0 0 0 4px #28a745; /* Both borders when active and has selection */
}

.day.disabled {
    opacity: 0.6;
    pointer-events: none;
    background-color: #f0f0f0;
}

.slot-time:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}

.slot-time.selected {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.form-check-input:checked {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}
a.remove-slot {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--danger);
    color: var(--danger) !important;
    border-radius: 10px;
    margin-left: 5px;
    font-size: 16px;
}
a.remove-slot:hover {
  background: var(--danger) !important;
  color: var(--white) !important;
}
.iti__country-list {
  z-index: 999 !important;
}
a.property-thumb img {
    height: 95px;
    width: 100%;
    object-fit: cover;
}
section.top-space.property-header {
    background: #30B1E5;
    background: linear-gradient(180deg, rgba(48, 177, 229, 1) 0%, rgba(43, 147, 189, 1) 100%);
    padding: 50px 0;
    margin-top: 95px;
}
img.property-img {
    height: 300px;
}
.container-xxl {
    max-width: 1700px !important;
}
.room-imgs .main-image img.main-img {
    height: 300px !important;
}
.room-imgs .thumbnail-images img {
    height: 70px;
    width: 100%;
}
.room-count {
    height: 50px;
    border: 1px solid #d5d5d5;
    border-radius: 30px;
    align-items: center;
    vertical-align: middle;
    padding: 0 20px;
}
.room-count input {
    height: 48px;
    border: 0;
    background: transparent;
    text-align: center;
    width: 50px !important;
    min-width: 50px;
}
a.btn.remove-btn {
    border: 1px solid var(--danger);
    color: var(--danger) !important;
    display: flex;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-left: 10px;
}
.rate.cus-rating {
    float: left;
    height: 130px;
    width: 100%;
    display: flex;
    flex-direction: row-reverse; /* show 1..5 visually while keeping DOM 5..1 */
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    background-position: center;
    background: url(../img/rating-bg.png) no-repeat;
    background-size: cover;
}
.rate.cus-rating input:not(:checked) + label {
  width: 100px !important;
  font-size: 90px;
  float: none;
  margin: 0 10px;
}

/* Prevent global float rules from affecting custom rating */
.rate.cus-rating > label,
.rate.cus-rating label {
  float: none !important;
  display: inline-block;
}
.rate.cus-rating input:not(:checked) + label:hover, .rate:not(:checked) > label:hover ~ label {
   background: #30B1E5;
background: linear-gradient(180deg, rgba(48, 177, 229, 1) 0%, rgba(7, 92, 125, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.rate.cus-rating > input:checked ~ label {
    background: #30B1E5;
    background: linear-gradient(180deg, rgba(48, 177, 229, 1) 0%, rgba(7, 92, 125, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100px !important;
    font-size: 90px !IMPORTANT;
    margin: 0 10px;
}

/* Ensure the selected star itself is also filled for custom rating */
.rate.cus-rating > input:checked + label {
    background: #30B1E5;
    background: linear-gradient(180deg, rgba(48, 177, 229, 1) 0%, rgba(7, 92, 125, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100px !important;
    font-size: 90px !important;
    margin: 0 10px;
}

/* JS-assisted class to force fill left-to-right regardless of DOM order */
.rate.cus-rating label.is-selected i,
.rate label.is-selected i {
    background: #30B1E5;
    background: linear-gradient(180deg, rgba(48, 177, 229, 1) 0%, rgba(7, 92, 125, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rate > input:checked ~ label {
          background: #30B1E5;
        background: linear-gradient(180deg, rgba(48, 177, 229, 1) 0%, rgba(7, 92, 125, 1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        width: 33px !important;
    }
    .rate:not(:checked) > label:hover,
    .rate:not(:checked) > label:hover ~ label {
        background: #30B1E5;
        background: linear-gradient(180deg, rgba(48, 177, 229, 1) 0%, rgba(7, 92, 125, 1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .rate > input:checked + label:hover,
    .rate > input:checked + label:hover ~ label,
    .rate > input:checked ~ label:hover,
    .rate > input:checked ~ label:hover ~ label,
    .rate > label:hover ~ input:checked ~ label {
         background: #30B1E5;
        background: linear-gradient(180deg, rgba(48, 177, 229, 1) 0%, rgba(7, 92, 125, 1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* Ensure the selected star itself is also filled for base rating */
.rate > input:checked + label {
    background: #30B1E5;
    background: linear-gradient(180deg, rgba(48, 177, 229, 1) 0%, rgba(7, 92, 125, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 33px !important;
}

    ol.breadcrumb {
        background: var(--white);
        display: inline-flex;
        padding: 3px 15px;
        border-radius: 6px;
        align-items: center;
    }
    li.breadcrumb-item, li.breadcrumb-item a {
        font-size: 14px !important;
    }
     ol.breadcrumb i {
      color: var(--medium-gray) !important;
     }
    a.white-btn {
        display: inline-flex;
        background: #fff;
        border: 0;
        color: var(--dark) !important;
    }
    a.white-btn span {
      color: var(--dark) !important;
    }
    a.room-added p {
      color: var(--white) !important;
    }
    a.room-added i {
        transform: rotate(0deg) !important;
    }
    a.room-added span {
      width: 23px;
      height: 23px;
      border-radius: 50%;
      display: inline-flex;
      background: #ffff;
      color: #53B948;
      align-items: center;
      justify-content: center;
      margin-right: 7px;
    }
    a.room-added i , a.room-added:hover i {
        transform: rotate(0deg) !important;
        margin-left: 0;
        font-size: 14px;
        margin-left: 0 !important;
    }
    
    a.room-added {
        background: #53B948;
        border: 1px solid #53B948 !important;
    }
    a.add-room-btn p {color: var(--white) !important; font-weight: 500;}
    a.add-room-btn.room-added p.add-room-p {display: none;}
    a.add-room-btn p.room-added-p {display: none;}
    a.add-room-btn.room-added p.room-added-p {
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 500;
    }

    img.booking-room-thumb {
        width: 100%;
        border-radius: 10px;
        height: 100%;
        object-fit: cover;
        max-height: 200px;
    }
    img.bookingdrtail-img {
      width: 100%;
      height: 190px;
      border-radius: 10px;
      object-fit: cover;
  }
.alert.alert-info {
    text-align: center;
    background: #f5fcff;
    border: 1px solid #cbf0ff;
    color: #76a3b5;
    font-weight: 400;
}
.rate:not(:checked) > label {
  width: 33px !important;
}
.no-records {
	text-align: center;
	background: #f5fcff;
	border: 1px solid #cbf0ff;
	color: #76a3b5;
	font-weight: 400;
  padding: 1rem !important;
}
.no-records p {
	margin-bottom: 0 !important;
	font-size: 1rem !important;
  color: #76a3b5;
}

/* slot */
.booking-section {
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.day.booked-active {
    background-color: var(--primary) !important;
    color: white !important;
    border-radius: 0;
}
.day.booked-active .choose-date h5,
.day.booked-active .choose-date small,
.day.booked-active .day-hd p {
    color: white !important;
}
.day.selected-active {
    background-color: var(--primary) !important;
    color: white !important;
    border-radius: 0;
}

p.text-dark {
  color: var(--dark) !important;
}
.day.selected-active .choose-date h5,
.day.selected-active .choose-date small {
    color: white !important;
}
.day.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.day:not(.disabled):not(.booked-active) {
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.day:not(.disabled):not(.booked-active):hover {
    background-color: #f8f9fa;
}
.slot-time-section {
    animation: fadeIn 0.3s ease-in-out;
}
.slot-time {
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background-color: #fff;
}
.slot-time:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
}
.slot-time.slot-active {
    background-color: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
}
.slot-time.slot-disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    pointer-events: none;
    background-color: #e9ecef !important;
    color: #6c757d !important;
    border-color: #dee2e6 !important;
}
.slot-time.slot-disabled:hover {
    background-color: #e9ecef !important;
    border-color: #dee2e6 !important;
}
.trainer-slot .badge {
    font-size: 0.75rem;
    padding: 4px 8px;
}
#time-slots-container-[id] {
    flex-wrap: wrap;
}
.slot-time.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}
.slot-time.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border: 2px solid #ccc;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}
@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.day.booked-active .day-hd p {
  color: var(--dark) !important;
}
/* slot */

button.btn-close {
    position: absolute;
    right: 20px;
    opacity: 1;
}
.modal-content.trainer-modal {
    border-radius: 30px;
}
.modal-content.trainer-modal .modal-body {
  padding: 30px;
}
.modal-content.trainer-modal img.trainer-img {
    margin-top: -125px;
    width: 170px;
    height: 190px;
    margin-bottom: 10px;
}
.modal-content.trainer-modal {
    max-width: 350px;
}
.modal-content.trainer-modal p.prprt-tag {
    color: var(--primary);
    font-size: 14px;
    background: #E4F7FF;
    border-radius: 20px;
    padding: 4px 10px;
}
.password-input .input-icon {
    right: 1px !important;
    height: 48px;
    width: 35px;
    background: #ffffff;
    top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 8px 8px 0;
}
.modal-dialog.success-modal .modal-content {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
	.modal-dialog.success-modal .modal-content::before {
		content: '';
		position: absolute;
		background: url(../img/success-top-bg.png) no-repeat;
		background-size: contain;
		z-index: 9;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
	}
	.modal-dialog.success-modal .modal-body  {
		display: contents;
		position: relative;
		width: 100%;
		height: 100%;
	}
	.modal-dialog.success-modal .modal-body::before {
		content: '';
		position: absolute;
		background: url(../img/success-before-icon.png) no-repeat;
		background-size: contain;
		z-index: 9;
		width: 120px;
		height: 120px;
		left: -20px;
		bottom: -20px;
	}
	.modal-dialog.success-modal .modal-body::after {
		content: '';
		position: absolute;
		background: url(../img/success-after-icon.png) no-repeat;
		background-size: contain;
		z-index: 9;
		width: 120px;
		height: 120px;
		right: -20px;
		bottom: -20px;
	}
    .form-select.text-danger, .form-control.text-danger  {
      color: #333 !important;
    }
    p.no-records-msg {
    margin-bottom: 0;
    color: #a8a8a8;
    font-style: italic;
    font-size: 15px;
}
.terms-check label {
    color: #a8a8a8 !important;
}
a.btn.btn-white {
    background: var(--white);
    border: 1px solid var(--white);
    font-weight: 500;
}
a.btn.btn-white:hover {
    background: var(--primary);
    font-weight: 500;
    color: var(--white) !important;
}
.btn.btn-outline-white {
    border: 1px solid #d0d0d0;
    color: var(--white);
}
.btn.btn-outline-white:hover {
  border: 1px solid var(--white);
  color: var(--white);
}
.card.review-cards {
    min-height: 306px;
}
button.swal2-confirm {
    padding: 10px 20px;
    text-align: center;
    transition: 0.2s;
    background-size: 200% auto;
    color: var(--white) !important;
    display: block;
    background-image: linear-gradient(to right, #30B1E5 0%, #2B93BD 51%, #30B1E5 100%);
    border: 1px solid #2ea8d9 !important;
    border-radius: 30px;
    min-width: 120px;
    height: 50px;
}
button.swal2-confirm:hover {
  background-position: right center; /* change the direction of the change here */
  color: var(--white);
  text-decoration: none;
  transition: 0.2s;
}
button.swal2-cancel {
    align-items: center;
    justify-content: center;
    color: var(--gray) !important;
    font-weight: 500;
    border: 1px solid #D3D3D3 !important;
    font-size: 0.938rem !important;
    min-width: 120px;
    line-height: normal;
    background: #ffff;
    border-radius: 30px;
    height: 50px;
}
button.swal2-cancel:hover {
    border-color: 1px solid var(--gray-dark) !important;
    color: var(--gray-dark) !important;
    background: var(--white) !important;
}
.testimonial-sec .carousel-wrapper .carousel-track p.white.content {
  min-height: 80px;
}
.iti__flag-container .iti__country-list{
  width: 280px;
  overflow-x: hidden;
  white-space: break-spaces !important;
}
.title-pay p{
color: #000;
  font-weight: 900;
}

img.booking-img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    max-width: 300px;
}
img.trainer-thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
}
.gst-box .slots{
  margin-bottom: 0px !important;
  padding-bottom: 4px;
}
.gst-box .slots .main-title{
    font-size: 15px;
    color: #333 !important;
    font-weight: 500;
}
.gst-box .gst .gst-title{
 font-size: 13px;   
}
.gst-box .gst-block{
  border-bottom: 1px solid #c8efff;
  margin-bottom: 8px;
  padding-bottom: 7px;
}
.continue-btn {
    position: fixed;
    right: 5px;
    bottom: 10px;
    background: var(--primary);
    color: var(--white) !important;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease; /* smooth animation */
    cursor: pointer;
}
.continue-btn span {
    font-size: 30px;
}
p.btn-txt{
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--white);
  margin-right: 10px;
  display: none;
  height: 25px;
  opacity: 0.5;
  overflow: hidden;
  transition: all 0.3s ease;
}
.continue-btn:hover {
  width: 200px;              /* widened width on hover */
  background-color: var(--primary); /* optional color change */
}
.continue-btn:hover p.btn-txt {
  display: flex;
  transition: all 0.3s ease;
  opacity: 1;
}
section.most-visited h1.heading::before {
    right: 40px;
    top: -30px;
}
section.lifestyle-sec h1.heading::before {
  right: 15px;
}
.norecords-sec {
    background: #fcfcfc;
    padding: 50px;
    border-radius: 20px;
}
.norecords-sec img {
    width: 100px;
    opacity: 0.3;
}
.gallery-sec img {
    width: 100% !important;
    height: 250px;
    object-fit: cover;
}
.btn-group.guest-dropdown .dropdown-toggle::after {
    position: absolute;
    right: 15px;
    top: 24px;
}
.about-banner .banner-content h2 {
    font-size: 60px;
    font-weight: 600 !important;
    color: #fff;
}
.about-banner .banner-content p {
  width: 100% !important;
}
section.about-banner.position-relative {
    padding-bottom: 50px;
}
.stat-item.card {
    background: transparent;
    text-align: center;
}
.stat-item.card .card-body {
    padding: 20px !important;
}
.stat-item.card h3 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 0;
}
.mission-vision-section .card {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border: 0 !important;
}
.card-icon {
    border: 1px solid #fff;
    display: flex;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #30B1E5;
  background: linear-gradient(135deg, rgba(48, 177, 229, 1) 0%, rgba(43, 147, 189, 1) 100%);
}
.card-icon i {
    font-size: 60px;
    color: #fff;
}
.before-none::before {
  display: none;
}
.offcanvas.offcanvas-start {max-width: 250px !important;}

section.about-section img {
    border-radius: 30px;
}
.about-card {
   margin-left: -100px;
    margin-top: 50px;
}
.about-card .card {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border: 0 !important;
   
    width: 100%;
}
section.about-section {
    padding-bottom: 50px;
}
.about-card .card h1.heading::before {
  right: 137px;
}
.about-card .card p {
    font-size: 1.2rem;
}
.cta-section {
    background: #30B1E5;
    background: linear-gradient(135deg, rgba(48, 177, 229, 1) 0%, rgba(43, 147, 189, 1) 100%);
    color: white;
}
section.about-section img {object-fit: cover;}
.stat-item.card p {
    margin-bottom: 0;
}
.card-icon {margin-bottom: 20px;}
a.btn.share-icon {
    min-width: 80px;
    text-align: center;
    margin: 3px 0;
    background: var(--primary);
    color: #fff !important;
    border: 1px solid var(--primary);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid var(--primary);
}
a.btn.share-icon:hover {
  background: var(--white);
  border: 1px solid var(--primary);
  color: var(--primary) !important;
}
a.connect-btn:hover {
   transition: all 3s ease;
   border: 1px solid #30b1e5;
}

a.btn.share-icon.facebook {
    background: #0865FF;
    border: 1px solid #0865FF;
}
a.btn.share-icon.facebook:hover {
    background: var(--white);
    color: #0865FF !important;
    border: 1px solid #0865FF;
}
a.btn.share-icon.whatsapp {
    background: #25D366;
    border-color: #25D366;
}
a.btn.share-icon.whatsapp:hover {
    background: var(--white);
    color: #25D366 !important;
    border: 1px solid #25D366;
}
a.btn.share-icon.twiitter {
    background: #000000;
    border-color: #000000;
}
a.btn.share-icon.twiitter:hover {
    background: var(--white);
    color: #000000 !important;
    border: 1px solid #000000;
}
a.btn.share-icon.gmail {
    background: #DC4B38;
    border-color: #DC4B38;
}
a.btn.share-icon.gmail:hover {
    background: var(--white);
    color: #DC4B38 !important;
    border: 1px solid #DC4B38;
}
.card.trainer-card-clickable {
    max-width: 320px;
}
.rating-stars i.fa-solid {color: var(--primary) !important;}

a.programs-more-trigger {
    border: 1px solid var(--primary);
    font-size: 13px;
    height: 25px;
    min-width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.5s ease;
}
a.programs-more-trigger:hover {
  background: var(--primary);
  transition: all 0.5s ease;
  color: var(--white) !important;
}
ul.progrm-lst {
    padding-left: 0;
    list-style: none;
}
ul.progrm-lst li {
    color: var(--primary) !important;
    font-size: 12px;
    background: #E4F7FF !important;
    padding: 3px 7px;
    border-radius: 4px;
    font-weight: 500;
    margin: 3px 5px 3px 0;
    display: inline-block;
}
.btn.btn-cancel {
    border: 1px solid #d0d0d0;
}
.btn.btn-cancel:hover {
    border: 1px solid var(--light-gray);
}
.btn.btn-white {
    background: #fff;
    color: var(--primary) !important;
    font-weight: 600;
}
.btn.btn-white:hover, .btn.btn-white:active, .btn.btn-white.show {
  border: 1px solid var(--white) !important;
  color: var(--white) !important;
}
.dropdown.download-dropdown .dropdown-item i {
  color: var(--primary) !important; 
}
.dropdown.download-dropdown .dropdown-item:focus, .dropdown.download-dropdown .dropdown-item:hover {
  color: var(--primary) !important;
}
/* responsive-sec */

@media (min-width: 1600px) {
 .container {max-width: 1600px !important;}
}

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1599.98px) { 
  h1.heading::before {right: 15px; top: -20px;}
  section.lifestyle-sec h1.heading::before {right: 10px; top: -20px;}
  .vaccation-list h1.heading::before {right: 0; top: -20px;}
  section.community h1.heading::before {right: 40px;}
  .about-card .card h1.heading::before { right: 0px;}
}
/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) { 
  h1.heading::before {right: 55px;}
  section.lifestyle-sec h1.heading::before {right: 10px; top: -20px;}
  section.community h1.heading::before {right: 10px; top: -20px;}
  .vaccation-list h1.heading::before {right: 110px;}
  section.about-section img {height: 550px;}
 }

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) { 
  .dtl-name h1{font-size: 30px;}
  .card .dit-prf {margin-left: 110px;}
  .dtl-name .prf-img.crte-bsness-top-banner-img{width: 110px;height: 110px;}
  img.main-logo {width: 200px;}
  ul.navbar-nav li.nav-item a.nav-link {font-size: 1rem; min-width: 110px;}
  footer h2 {width: 80%;}
  footer p {width: 90%;}
  .login-modal .modal-banner img{ height: 530px; object-fit: cover;}
  .wp-login {height: 528px; overflow-y: scroll; overflow-x: hidden; scrollbar-width: none;}
  section.lifestyle-sec h1.heading::before {right: 0;}
  .vaccation-list p.sub-para { width: 100%;}
  section.my-booking {margin-top: 80px !important;}
  .vaccation-list h1.heading::before {right: 10px;}
  section.testimonial-sec h1.heading::before {right: 0;}
  .property-tabs a {font-size: 17px; padding: .75rem .425rem; margin: 0 10px;}
  .about-card {margin-top: -100px; margin-left: 30px; margin-right: 30px;}
  section.about-section img {height: 350px;}
  .about-card .card h1.heading::before { right: 137px;}
}
.rate:not(:checked) > label::before {
	display: none !important;
}
.rejection-icon {
    top: -6px;
    right: -6px;
    color: #ff0000;
    background: #ffffff;
    border-radius: 50%;
    font-size: 18px !important;
    border: 1px solid #fff;
    position: absolute;
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.cancel-msg {
    background: #fff0f0;
    color: var(--danger);
    border-radius: 15px;
    padding: 10px !important;
    text-align: center;
    justify-content: center;
}
.cancel-msg small {
    font-size: 13px !important;
}
.cancel-msg span {
    padding-top: 2px;
    margin-top: -2px;
}
.slot-timing{
  position: relative;
  min-height: 70px;
}
	.preloader {
		position: absolute;
		z-index: 9;
		background: rgb(255 255 255 / 85%);
		width: 100%;
		height: 100%;
		border-radius: 20px;
		left: 0;
		top: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.preloader img {
    width: 70px;
    height: 40px;
	object-fit: cover;
}
.slot-timing .preloader .loader-logo{
  display: none;
}
.no-scroll {
  overflow: hidden;
}
.nav-backdrop {
  position: fixed;
  inset: 0;    
  background: rgba(0,0,0,0.18); 
  z-index: 10; 
  touch-action: none;
}
.nav-link:focus-visible {
  box-shadow: 0 0 0 .25rem rgba(255, 255, 255, 0) !important;
}
section.property-filter a.clear-btn {
    right: 0;
}
button.cancel-trainer-btn {
    border: 0 !important;
    background: transparent !important;
    color: var(--danger) !important;
}
button.cancel-trainer-btn:hover {
    background: transparent !important;
    color: #c50000 !important;
}
a.connect-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}
/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) { 
    ul.navbar-nav li.nav-item a.nav-link{margin-bottom: 10px;}
  a.nav-link.nav-link-ltr.active::before {bottom: 2px !important;}
  .container-fluid {padding-left: 40px !important;padding-right: 40px !important;}
  .card .dit-prf {margin-left: 0;}
  .dtl-name .prf-img.crte-bsness-top-banner-img { width: 115px; height: 110px;}
  .banner-content h1 {font-size: 3.8rem; line-height: 60px;}
  .banner-content p {font-size: 1rem; width: 100%;}
  .home-banner-img {height: 600px;}
  .home-banner {min-height: 450px;}
  footer h2 {width: 100%;}
  footer p {width: 100%;}
  ul.social-links {justify-content: center;}
  .vaccation-list p.sub-para {width: 100%;}
  .navbar-collapse ul.navbar-nav li.nav-item a.btn-primary {margin-left: 0 !important; padding: 10px 20px !important; margin-top: 10px !important; }
  button.navbar-toggler span {color: var(--primary);}
  .login-modal .modal-banner {display: none;}
  .login-modal .login-data {padding: 40px 27px;}
  ul.navbar-nav .btn-primary {margin-left: 0px;}
  h1.heading::before {right: 45px; top: -20px;}
  .vaccation-list h1.heading::before {right: 70px;}
  footer h2 { width: 100%; font-size: 60px;}
  .dropdown.destinations-dropdown ul.dropdown-menu {min-width: 600px;}
  .top-space { padding-top: 50px;}
  .property-inner .web-card {padding: 15px; }
  .web-card .border-end{border: none !important;}
  .most-visited-card.left-most-visited-card {max-height: 400px !important;}
  section.community h1.heading::before {right: 40px;}
  section.testimonial-sec h1.heading::before {right: 40px;}
  h1.heading {font-size: 2.5rem;}
  .about-card .card h1.heading::before {right: 5px;}
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) { 
  section.dtl-name.search-form.search-result {
    padding-top: 56px;
  }
    .dtl-name .prf-img.crte-bsness-top-banner-img {
    width: 140px;
    height: 140px;
  }
  .dtl-name p span{
    font-size: 17px;
  }
  .dtl-name p.tag{ 
  font-size: 14px;
  }
    h1.heading {font-size: 2.5rem;}
    footer h2 {font-size: 35px;}
    footer p {font-size: 1rem;}
    section.wellness-sec p.sub-para {width: 100%;}
    p.sub-para {font-size: 1rem;}
    .navbar>.container-fluid {margin: 0; border-radius: 0 !important;}
    .most-visited-card img {min-height: 400px;}
    h1.heading::before {right: 5px; top: -20px;}
    .dropdown.destinations-dropdown ul.dropdown-menu {min-width: 100%;}
    .most-visited-card, .most-visited-card img {min-height: 100% !important; height: 300px !important;}
    section.community h1 {width: 80% !important; margin: 0 auto; margin-bottom: 20px;}
    section.community h1.heading::before {right: 20px;}
    .vaccation-list h1.heading::before {right: 20px;}
     section.testimonial-sec h1.heading::before {right: -10px;}
     a.continue-booking-btn { height: 50px; align-items: center; display: flex;}
     section.property-filter .person-sec { margin-top: 15px;}
     section.property-filter a.clear-btn { top: -10px; right: 70px;}
     .about-card { margin: 0; margin-top: 30px;}
     .about-card .card p {font-size: 1.025rem;}
     .about-card .card h1.heading::before { right: -2px;}
     h1.heading { font-size: 2rem;}
     section.property-filter a.clear-btn {right: 0; top: -25px;}
 }

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) { 
  .scroll-set > div {min-width: 310px;}
  h1.heading {font-size: 2rem !important;}
  h1.heading::before {display: none;}
  .card-body {padding: 15px !important;}
  p.sub-para {font-size: 0.938rem;}
  .wellness-sec {padding: 20px 0;}
  .carousel-dots span {width: 40px;}
  .carousel-dots {margin-top: 0;}
  .testimonial-sec {padding: 40px 0;}
  .carousel-card {padding: 20px;}
  p.content {font-size: 0.938rem;}
  img.property-img {height: 160px;}
  .carousel-arrow {font-size: 18px; width: 40px; height: 40px;}
  .banner-content h1 {font-size: 2.7rem; line-height: 45px; margin-bottom: 10px;}
  .search-form button.dropdown-toggle span {font-size: 0.875rem; align-content: center;}
  input.form-control {font-size: 0.875rem;}
  .search-btn, section.search-form a.btn.btn-outline-secondary {width: 40px; height: 40px;}
  .fitness-programms .card-body {padding: 10px !important;}
  .fitness-programms .card { width: 370px; margin: 5px 10px 5px 0;}
  img.trainer-img {width: 100px; height: 110px;}
  .fitness-programms .card h5 {font-size: 1.1rem;}
  .fitness-programms .card h6 {font-size: 0.938rem;}
  .fitness-programms-card {flex-wrap: wrap;}
  footer {padding: 20px;}
  ul.social-links {flex-wrap: wrap;}
  ul.social-links li {margin: 5px;}
  footer .footer-links li {margin: 5px;}
  ul.social-links {margin-top: 10px;}
  .home-banner-img {height: 500px;}
  section.search-form {margin-top: -90px;}
  .most-visited-card.left-most-visited-card img { height: 300px; max-height: 100% !important;}
  .most-visited-card img {min-height: 300px;}
  .trainer-wp a{font-size: 13px;}
  .trainer-wp a span{font-size: 17px;}
  .select-fitness-progress img.trainer-img {height: 150px;}
  .about-banner {height: 900px; padding-bottom: 20px !important;}
  .about-banner .banner-content h2 {font-size: 43px;}
  .container-fluid { padding-left: 20px !important; padding-right: 20px !important;}
  section.top-space.property-header {padding: 0;}
 }

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 400px) { 
   .scroll-set > div {min-width: 280px;}
   .testimonial-sec img.property-img {height: 360px;width: auto;object-fit: cover;}
}
@media (max-width: 360.98px) {
  .testimonial-sec img.property-img {
    height: 300px;
    width: auto;
    object-fit: cover;
  }
    .container-fluid {
    padding-left: 13px !important;
    padding-right: 13px !important;
  }
 }



/* Guest dropdown styling when values are selected */
.btn-group .btn-secondary:has(+ .dropdown-menu) {
    transition: all 0.3s ease;
}

.btn-group .btn-secondary:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

/* Selected destination styling */
.destinations.selected {
    background-color: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(33, 150, 243, 0.2);
}

.destinations.selected p {
    color: #1976d2 !important;
    font-weight: 600 !important;
}

.destinations.selected small {
    color: #1976d2 !important;
}

/* --- Profile Page Styles (Appended) --- */
.side-tab li button{
font-size: 18px;
  font-weight: 600;
  color: #292929;
}
.side-tab .tab-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
   background-color: #f0f0f0;
      color: #555;
}
.side-tab .nav-link.active .tab-icon {
  background-color: #e6f6ff !important;
  color: #00aaff !important;
}
.side-tab .nav-link.active{
    color: #00aaff !important;
}
.side-tab .nav-link::before {
  display: none;
}
.side-tab .nav-tabs .nav-link {
  display: flex;
      align-items: center;
      border: none;
      border-radius: 0;
      font-weight: 500;
}
.prf-img.crte-bsness-top-banner-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  position: relative;
  overflow: hidden;
}
.prf-img.crte-bsness-top-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prf-img a.upload-cntrl-sec {
  width: 150px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -3px;
  margin: 0;
  padding: 0;
  border-radius: 0 0 50% 50%;
  bottom: 0;
  color: var(--white) !important;
  transition: .5s;
  backdrop-filter: blur(5px);
}
.prf-list h6{
  font-size: 20px;
  color: #292929;
  margin: 0px;
  font-weight: 600;
}
.prf-list p{
  color: #6E6E6E;
  font-size: 20px;
  font-weight: 500;
  margin: 0px;
}
.prf-list a{
  color: #00aaff;
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
}
.prf-list .border-bottom{
  border-bottom: 1px solid #D3D3D3 !important;
}
.side-tab li.nav-item.border-bottom{
border-bottom: 2px solid #dedede !important;
}
.tab-ht{
  min-height: 500px;
  margin-bottom: 50px;
}

@media (max-width: 991.98px) {
  .side-tab li.nav-item.border-bottom {border-bottom: 0px solid #dedede !important;}
  .tab-ht {min-height: auto;margin-bottom: 20px;}
}

/* --- Profile Sidebar Card and Tab Styles (Fix) --- */
.card.mb-4 {
    border-radius: 20px;
    border: 1px solid #dedede;
    background: #fff;
    box-shadow: 0 2px 8px rgba(99,99,99,0.05);
}
.side-tab {
    padding-left: 0;
    margin-bottom: 0;
    border: none;
    background: transparent;
}
.side-tab .nav-item {
    margin-bottom: 0;
}
.side-tab .nav-link {
    border: none !important;
    background: transparent !important;
    color: #292929;
    font-weight: 600;
    font-size: 18px;
    border-radius: 0 !important;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    transition: background 0.2s, color 0.2s;
}
.side-tab .nav-link.active,
.side-tab .nav-link:focus {
    background: #e6f6ff !important;
    color: #00aaff !important;
    box-shadow: none;
}
.side-tab .tab-icon {
    margin-right: 10px;
    font-size: 24px;
    background: #f0f0f0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.side-tab .nav-link.active .tab-icon {
    background: #e6f6ff !important;
    color: #00aaff !important;
}







