/* GLOBAL COLORS */ 

.global-site-bg{background: #ffffff}
.global-light-bg{background: #f3f3f3}
.global-dark-bg{background: #212529}
.global-dark-light-bg{background: #dcf1f7;}
.global-border-color{border-color: #DBDBDB}
.global-body-txt{color:#212529}
.global-heading-txt{color:#212529}
.global-light-txt{color:#ffffff}
.global-primary-bg{background-color:#2fb0d8}
.global-primary-txt{color:#2fb0d8}
.global-secondary-bg{background-color:#84d0e8}
.global-secondary-txt{color:#84d0e8}
.global-accent-bg{background-color:#ed8144}
.global-accent-txt{color:#ea4f1f}

.txt-orange{
  color: #ea4f1f;
}

/* FORM */
.form-request .form-placeholder{
  flex: 0 0 auto;
  width: 50%;
  margin: 0 auto;
}

.form-request .input-group-lg>.form-control,
.form-request .input-group-lg>.form-select{
  padding: 0.7rem 1rem;
  font-size: 1rem;
}

.form-request .form-check-label{
  font-size: 0.9rem;
}

/* LINKS */

a{
	color:#2fb0d8;
	text-decoration: none;
}
a:hover,a:active{
	color:#ed8144;
	text-decoration: none;
}

.white.btn-outline-dark {
    --bs-btn-color: #ffffff;
    --bs-btn-border-color: #ffffff;
    --bs-btn-hover-color: #2fb0d8;
    --bs-btn-hover-bg: #ffffff;
    --bs-btn-hover-border-color: #ffffff;
    --bs-btn-focus-shadow-rgb: 33, 37, 41;
    --bs-btn-active-color: #2fb0d8;
    --bs-btn-active-bg: #ffffff;
    --bs-btn-active-border-color: #ffffff;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #ffffff;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #ffffff;
    --bs-gradient: none;
  }

.btn-primary{
	--bs-btn-color: #fff;
  --bs-btn-bg: #2fb0d8;
  --bs-btn-border-color: #2fb0d8;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #08a5b4;
  --bs-btn-hover-border-color: #08a5b4;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #08a5b4;
  --bs-btn-active-border-color: #08a5b4;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #217b97;
  --bs-btn-disabled-border-color: #217b97;
}

.card .card-body .card-link{
  font-size: 0.825em;
  font-weight: 600;
}

/* IMAGES */
.fit-img{
  object-fit: cover;
  object-position: center;
  height: 100%;
}

/* FONTS */
.font-lora{
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight:400;
  font-style: normal;
}

.font-lora-500{
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight:500;
  font-style: normal;
}

.font-lora-700{
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight:700;
  font-style: normal;
}

.fs-7{font-size: 0.9rem !important;}

.body{
	font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-optical-sizing: auto;
	font-size: 16px;
  line-height: 1.75;
}

/* HEADER*/

.brand-img{
	width: 100%;
	max-height: 60px;
  object-fit: contain;
}

.navbar-brand .badge{
  position: absolute;
  left: 0;
  top: 86px;
  border-radius: 0;
  font-weight: 500;
  text-transform: capitalize;
}

.site-menu.navbar{
  background: #fff;
  box-shadow: 0px 5px 6px -1px rgba(0, 0, 0, 0.1);
}

.site-menu .navbar-nav .nav-link{
  font-weight: 500;
}

.site-menu .navbar-nav .nav-link:hover,
.site-menu .navbar-nav .nav-link:focus,
.site-menu .navbar-nav .nav-link:active{
  color:#2fb0d8;
}

.site-menu .navbar-nav .nav-item .dropdown-link-container{
  position: absolute;
  top:40px;
  left: -60px;
  width: 250px;
  border:0 !important;
  transition: all 1s ease;
  height: auto;
  max-height: 0;
  overflow-y: hidden;
  padding-top: 25px;
}

.site-menu .navbar-nav .nav-item:hover .dropdown-link-container{
  opacity: 1;
  max-height: auto;
  overflow-y: visible;
  transition: all 1s ease;
}

.site-menu.navbar .offcanvas{
  background: #fff;
}

.site-menu .navbar-nav .nav-item:hover .dropdown-link-container .dropdown-item-link{
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #7b7b7bbf;
    content: var(--bs-breadcrumb-divider, "|");
}

.breadcrumb-bar .breadcrumb-item a ion-icon{color: #7b7b7bbf;}

.breadcrumb-bar .breadcrumb-item,
.breadcrumb-bar .breadcrumb-item .btn.btn-link{
  color: #212529;
  text-decoration: none;
}

.breadcrumb-bar .btn.btn-link:hover{
  color: #2fb0d8;
}

.header-btn.btn-primary{
  font-weight: 500;
  background-color: #2fb0d8;
  border-color: #2fb0d8;
} 

.header-btn.btn-primary:hover{
  background-color: #08a5b4;
  border-color: #08a5b4;
}


.site-menu.navbar .offcanvas-body  .form-select{
  width: auto;
  margin-left: 20px;
}

@media screen and (max-device-width: 991px) {
  .site-menu .navbar-nav .nav-item .dropdown-link-container{display: none !important;}

  .header-btn{
    max-width: 300px;
    margin:20px auto 0 auto;
    display: block;
  }

  .site-menu.navbar  .offcanvas-body .form-select{
    width:100%;
    max-width: 300px;
    margin:20px auto 0 auto;  
  }

  .site-menu.navbar  .offcanvas-body{
    display: initial !important;
  }
}

/* FOOTER*/

.footer-brand img{
  min-height: 60px;
  max-height: 60px;
}

.footer-social a{
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  color: #ffffff;
  border:1px solid #ffffff;
  background: transparent;
}

.footer-social a:hover{
  background: #ffffff;
  color: #005f59;
}

.footer-info{
  padding-top: 3em;
  padding-bottom: 4em;
}

.footer-menu .footer-menu-top h4 a{
  color: #ffffff;
  text-decoration: none; 
}

.footer-menu .footer-menu-top h4 a:hover{
  color: #52b7bd; 
}

.footer-menu .footer-menu-top h4 a ion-icon{
  position: relative;
  top: 3px;
  font-size: 0.8em;
  margin-left: 5px;
}

.footer-copyright .list-group-item,
.footer-menu .footer-menu-bottom .list-group-item{
  background: transparent;
  border:0;
  color: #ffffff;
}

.footer-copyright .list-group-item,
.footer-copyright .list-group-item a,
.footer-menu .footer-menu-bottom .list-group-item,
.footer-menu .footer-menu-bottom .list-group-item a{
  font-weight: 400;
  color: #8f8f8f;
  text-decoration: none;
}

.footer-copyright .list-group-item a:hover,
.footer-menu .footer-menu-bottom .list-group-item a:hover{
  color: #52b7bd; 
}


.footer-copyright .list-group-item,
.footer-copyright .list-group-item a{font-size: 12px;}

.footer-menu .footer-menu-bottom .list-group-item{
  font-size: 0.85em;
}

.footer-menu .footer-menu-bottom .list-group-title{
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: 2.8px;
}

.footer-copyright{
  background: #1e2022;
}

@media screen and (max-device-width: 768px) {
  .footer-info.container,
  .footer-copyright .container{
    padding-left: 2em !important;
    padding-right: 2em !important;
  }

  .footer-menu .footer-menu-bottom {
    flex-direction: column !important;
  }

  .footer-info .col-left.col-md-4,
  .footer-info .col-right.col-md-8{
    flex: 0 0 auto;
    width: 50%;
  }

  .footer-info .col-right.col-md-8{
    display: flex;
    justify-content: end;
  }

  .footer-menu .footer-menu-bottom .col-md-4{
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-menu .footer-menu-bottom .col-md-4:last-child{margin-bottom: 0}

  .footer-copyright .container{justify-content: center !important;}
}
@media screen and (max-device-width: 736px) {
  .footer-info.container,
  .footer-copyright .container{
    padding-left: initial !important;
    padding-right: initial !important;
  }
}

@media screen and (max-device-width: 600px) {
  .footer-info.container,
  .footer-copyright .container{
    padding-left: 1em !important;
    padding-right: 1em !important;
  }
}

@media screen and (max-device-width: 545px) {
  .footer-info.container,
  .footer-copyright .container{
    padding-left: 2em !important;
    padding-right: 2em !important;
  }

  .footer-info.container{
    flex-direction: column !important;
  }

  .footer-info .col-left.col-md-4,
  .footer-info .col-right.col-md-8{
    flex: 0 0 auto;
    width: 100%;
  }

  .footer-info .col-right.col-md-8{
    display: flex;
    justify-content: start;
    margin-top: 2em;
  }

  .footer-copyright .container .list-group{
    flex-direction: column !important;
  }
}

/* HEADINGS */

.section-subheadline h6{
  letter-spacing: 3px;
}

.section-headline h2 span u {
  font-weight: inherit;
  position: relative;
  display: inline-block;
  z-index: 1;
  text-decoration: none;
}

.section-headline h2 span u img{
  position: absolute;
  z-index: -1;
  bottom:1px;
  left: 0;
  right: 0;
  width: 100%; 
}

.title-line{
  max-width: 100px;
  border-top:2px solid #2fb0d8;
  opacity: 1;
}

/* AI MODE */

.search-box.sticky-top{
    top: 85px;
    background: #FFF;
    padding-top: 10px;
}
 
.search-box-results.container-fluid{
  overflow: hidden;
  height: 100%;
}

/* Base styles */
.block1, .block2, .block3, .block4 {
    opacity: 0;
    animation-duration: 3s;             
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Base block style */
.block1, .block2, .block3, .block4 {
    position: relative;
    overflow: visible;
    border-radius: 16px;  /* main rounded corners */
}

/* Puzzle tabs: top/bottom/left/right */
.block1::before,
.block1::after,
.block2::before,
.block2::after,
.block3::before,
.block3::after,
.block4::before,
.block4::after {
    content: "";
    position: absolute;
    width: 30px;   /* tab width */
    height: 30px;  /* tab height */
    background-color: inherit; /* match block color */
    border-radius: 50%;        /* circular tab */
}

/* Example: block1 top tab */
.block1::before {
    top: -15px;     /* half tab outside */
    left: 50%; 
    transform: translateX(-50%);
}

/* block1 bottom tab */
.block1::after {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* block2 left tab */
.block2::before {
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
}

/* block2 right tab */
.block2::after {
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
}

/* block3 top & bottom tabs */
.block3::before {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.block3::after {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* block4 left & right tabs */
.block4::before {
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
}
.block4::after {
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
}

/* Assign animation per block with delays */
.block1 { animation-name: cinematicBrakeLeft;  animation-delay: 0.1s; }
.block2 { animation-name: cinematicBrakeRight; animation-delay: 0.3s; }
.block3 { animation-name: cinematicBrakeBottom; animation-delay: 0.5s; }
.block4 { animation-name: cinematicBrakeTop;   animation-delay: 0.8s; }

/* ===== CINEMATIC BRAKE WITH BACKGROUND FADE ===== */

/* LEFT */
@keyframes cinematicBrakeLeft {
    0%   { opacity: 0; transform: translateX(-180px) scale(0.9);}
    50%  { opacity: 1; transform: translateX(10px) scale(1.02);}
    75%  { transform: translateX(-5px) scale(0.98);}
    90%  { transform: translateX(2px) scale(1.01);}
    100% { opacity: 1; transform: translateX(0) scale(1);}
}

/* RIGHT */
@keyframes cinematicBrakeRight {
    0%   { opacity: 0; transform: translateX(180px) scale(0.9); }
    50%  { opacity: 1; transform: translateX(-10px) scale(1.02);}
    75%  { transform: translateX(5px) scale(0.98);}
    90%  { transform: translateX(-2px) scale(1.01);}
    100% { opacity: 1; transform: translateX(0) scale(1);}
}

/* TOP */
@keyframes cinematicBrakeTop {
    0%   { opacity: 0; transform: translateY(-180px) scale(0.9);}
    50%  { opacity: 1; transform: translateY(10px) scale(1.02); }
    75%  { transform: translateY(-5px) scale(0.98);}
    90%  { transform: translateY(2px) scale(1.01);}
    100% { opacity: 1; transform: translateY(0) scale(1);}
}

/* BOTTOM */
@keyframes cinematicBrakeBottom {
    0%   { opacity: 0; transform: translateY(180px) scale(0.9);}
    50%  { opacity: 1; transform: translateY(-10px) scale(1.02); }
    75%  { transform: translateY(5px) scale(0.98); }
    90%  { transform: translateY(-2px) scale(1.01); }
    100% { opacity: 1; transform: translateY(0) scale(1);}
}



/* BOOKING FRONT */
.booking-block {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  font-size: 16px;
}

.booking-pg.container-fluid iframe{
  height: calc(1000px + 100px);
}

.booking-service-image {
  object-fit: cover;
  object-position: center;
  height: 215px;
}

.booking-no-image{
    height: 215px;
    object-fit: cover;
    object-position: center;
    opacity: 0.5;
}

.booking-service-box {
  cursor: pointer;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 0.75rem;
  overflow: hidden;
}

.card-text.booking-service-description{ 
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.booking-service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 1rem rgba(0,0,0,0.15);
}

.booking-service-details .w-50:nth-child(1){
  border-bottom-left-radius: 0.375em;
  border-top-left-radius: 0.375em;
}

.booking-service-details .w-50:nth-child(2){
  border-bottom-right-radius: 0.375em;
  border-top-right-radius: 0.375em;
}

.booking-block .djangoAppt_page-body{
  margin-top: 0;
  padding-top:100px;
}

.booking-block .djangoAppt_service-description {padding: 0 0 0 30px;}

.booking-block .djangoAppt_service-description .staff-members-list{
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  border:0;
  padding: 0;
}

.booking-block .djangoAppt_btn-request-next-slot{
  margin-left: 6px;
  width: 98%;
}

.booking-block .affiliate-code{
  border-color: #9eeaf9 !important;
}

.booking-block .affiliate-code label{width: 100%;}

.booking-block .affiliate-code label,
.booking-block .user-info-input label{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;  
}

.booking-block .user-info-input label{
  font-size: 0.9em;
  font-weight: 500;
}

.booking-block .affiliate-code label{
  font-weight: 500;
  color: #055160;
  margin-bottom: 5px;
}

.booking-block .affiliate-code .form-control{
  border-color:#9eeaf9 ;
}

.booking-block .user-info-input{padding: 1em;} 

.booking-block .user-info-input input[type="text"], 
.booking-block .user-info-input input[type="email"],
.booking-block .user-info-input input[type="tel"],
.booking-block .user-info-input select,
.booking-block .user-info-input textarea {
  display: block;
  width: 100%;
  padding: .5rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #dee2e6;
  border-radius: 0.375em;
  transition: border-color .15s ease-in-out; 
}

.booking-block .user-info-input select{
  max-width: 40%;
}

.booking-block .user-info-input input:focus, 
.booking-block .user-info-input select:focus,
.booking-block .user-info-input textarea:focus{
  color: #212529;
  background-color:#fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.booking-block .service-description-content{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;   
}

.booking-block .service-details-btn{
  background-color:#f1f1f1 ;
  padding: 0 20px 20px 20px;
}

@media screen and (max-device-width: 1199px) {
  .booking-block .booking-service-details{flex-direction: column !important;}

  .booking-block .booking-service-details .w-50:nth-child(1){
    width: 100% !important;
    border-top-right-radius: 0.375em;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .booking-block .booking-service-details .w-50:nth-child(2){
    width: 100% !important;
    border-bottom-left-radius: 0.375em;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .booking-block .appointment-user-info{flex: 2;}

  .booking-block .djangoAppt_service-description{padding-left:0;}

  .booking-block .djangoAppt_appointment-calendar{padding: 0;}
}

@media screen and (max-device-width: 991px) {
  .booking-block .form-placeholder{flex-direction: column !important;}

  .booking-block .appointment-user-info{padding-right: 0;}

  .booking-block  .service-description-and-pay{
    margin: 20px 0 0 0;
    width: 100%;
  }
}

@media screen and (max-device-width: 768px) {
  .booking-block .user-info-input select{max-width: 100%;}

  .booking-block .djangoAppt_btn-request-next-slot,
  .booking-block .djangoAppt_next-available-date,
  .booking-block .error-message .djangoAppt_no-availability-text{
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }

  .booking-block .djangoAppt_slot .error-message,
  .booking-block .djangoAppt_next-available-date{
    text-align: center;
  }

  .booking-block .error-message .djangoAppt_no-availability-text{padding-left: 10px !important;}

  .booking-block .djangoAppt_slot-list{padding-left: 0 !important;}

  .booking-block .djangoAppt_body-container .row .mb-4,
  .booking-block .appointment-user-info-title.mb-5{
    margin-bottom: 0 !important;
  }

  .booking-block .djangoAppt_body-container .row .page-description{font-size: 0.9em;}

  .booking-block .djangoAppt_slot {margin-left: 0;}
}

@media screen and (max-device-width: 540px) {
  .booking-block .djangoAppt_page-body{padding-top: 90px;}
}

@media screen and (max-device-width: 375px) {
  .booking-block .djangoAppt_page-body{padding-top: 80px;}

  .booking-block .djangoAppt_appointment-calendar-title-timezone{
    flex-direction: column;
    padding: 10px 10px 0 10px;
  }

  .booking-block .djangoAppt_calendar-and-slot{padding-bottom: 10px;}

  .booking-block .djangoAppt_slot {margin-top: 20px;}

  .booking-block .djangoAppt_btn-request-next-slot{font-size: 0.85em;}

  .booking-block .djangoAppt_next-available-date{margin-top: 0;}
}

@media screen and (max-device-width: 360px) {
  .booking-block .djangoAppt_btn-request-next-slot {
    margin-top: -26px;
    margin-bottom: 5px;
  }
}


