*, *::before, *::after {
  box-sizing: border-box;
}
html{
    font-size: 16px;
    font-family: "Inter Tight", sans-serif;
}
body, html{
    padding: 0!important;
    margin: 0!important;
}
p, a, li, span{
    font-size: clamp(0.75rem, 3vw, 1rem);
}
h1{
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 110%;
}
h2{
    font-size: clamp(1.125rem, 5vw, 1.5rem);
    line-height: 110%;
}
h3{
    font-size: clamp(0.65rem, 5vw, 1.3rem);
    line-height: 110%;
}
h4 {
    font-size: clamp(0.75rem, 3vw, 1rem);
    line-height: 110%;
}

h5 {
    font-size: clamp(0.5625rem, 3vw, 0.75rem);
    line-height: 110%;
}

h6 {
    font-size: clamp(0.5rem, 3vw, 0.666rem);
    line-height: 110%;
}
:root {
    --purple: #4a0347;
    --lightpink: #edb4eb;
    --lightbeige: #f3e9dc;
    --black: #000;
    --white: #fff;
    --lightgray: #f9f9f9
}
a{
    text-decoration: none;
}
ul, li{
    list-style-type: none;
}
img{
    display: block;
    max-width: 100%;
}
.min-hgt{
    min-height: clamp(400px, 3vw, 500px);
}
.iframe-con{width: 100%;position: relative;overflow: hidden;/*padding-top: 56.25%*/; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */}
.pht-txt, .plt-txt, .mut-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;                /* ✅ FIXED HEIGHT */
  padding: 0 20px;
  text-align: center;
  z-index: 3;
  background: #fff;
  display: none;                /* ✅ Flexbox for centering content */
  align-items: center;         /* ✅ Vertical centering */
  justify-content: center;     /* ✅ Horizontal centering */
  flex-direction: column;      /* ✅ Stack heading, text, button */
  cursor: pointer;
}
.vid-con{
    display: block;
    width: 100%;
    height: auto;
    position: relative;
}
#vid-ifr{width: 100%;height: auto;object-fit: cover;position: relative;left: 0;right: 0;top: 0;bottom: 0;}
.blk-con{
    display: block;
    width: 100%;
    height: auto;
    position: relative;
}
.mob-nav-flx-con {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem;
  box-sizing: border-box;
  position:fixed;
  background: var(--white);
  z-index: 999;
}
.flx-con {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem;
  box-sizing: border-box;
}
.flx-chd-10 { flex: 0 0 10%; }
.flx-chd-15, .mob-nav-flx-chd-15 { flex: 0 0 15%; }
.flx-chd-20, .mob-nav-flx-chd-20 { flex: 0 0 20%; }
.flx-chd-25 { flex: 0 0 25%; }
.flx-chd-33 { flex: 0 0 calc(100% / 3); }
.flx-chd-50 { flex: 0 0 50%; }
.flx-chd-60 { flex: 0 0 60%; }
.flx-chd-70, .mob-nav-flx-chd-70  { flex: 0 0 70%; }
.flx-chd-80 { flex: 0 0 80%; }
.flx-chd-10,
.flx-chd-15,
.flx-chd-20,
.flx-chd-25,
.flx-chd-33,
.flx-chd-50,
.flx-chd-60,
.flx-chd-70,
.flx-chd-80 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.rlt {
    position: relative;
    width: 100%;
    height: auto;
}

.asl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height:auto;
    text-align: center;
}

.con-pad{
    padding: 50px 200px;
}
.force-row {
  flex-direction: row !important;
}
.bgi{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-blend-mode: multiply;
}
.bgi-greyscale{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-blend-mode: multiply;
}
.bgi-greyscale::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: inherit;
  background-position: inherit;
  filter: grayscale(100%);
  z-index: 1;
}
.btn-wbg{
    background-color: var(--white);
    padding: 12px 24px;
    border: 1px solid var(--black);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: var(--black);
}
.btn-wbg:hover{
    background-color: var(--black);
    color: var(--white);
}
.btn-tbg{
    background-color: transparent;
    color: var(--white);
    padding: 12px 24px;
    border: 1px solid var(--white);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-tbg:hover{
    background-color: var(--white);
    color: var(--black);
}
.btn-nbg{
    outline: none;
    border: none;
}
.rmb {
    color: var(--black);
    font-weight: bold;
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    padding-right: 16px; /* space for arrow */
    margin: 10px 0;
}

.rmb::after {
  content: "→"; /* Unicode arrow */
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9em;
  color: inherit;
  transition: transform 0.3s ease;
}

/* Optional: animate arrow on hover */
.rmb:hover::after {
  transform: translateY(-50%) translateX(4px);
}
.fancy-header{
    font-family: "Antic Didone", serif;
    font-weight: 600;font-style: normal;
}
.header-with-lines{
    text-align:center;
    position:relative;
    font-weight:500;
    font-size:1.1em;
}
.header-with-lines:before, .header-with-lines:after {
    position: absolute;
    top: 51%;
    overflow: hidden;
    width: 20%;
    height: 1px;
    content: '\a0';
    background-color: #cbcbcb;
}
.header-with-lines:before {margin-left: -25%;text-align: right;}
.header-with-lines:after {margin-left: 5%;}
.bd-con{
    display: block;
    width: 100%;
}
.nav-con ul{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width:100;
    height:auto;
    list-style-type: none;
    gap: 1rem;  
}
.nav-con ul li{
    width: auto;
    list-style-type: none;
    text-align: center;
    padding: 12px 24px;
    box-sizing: border-box;
    text-transform: uppercase;
}
.nav-about-us,
.nav-our-services,
.nav-what-we-treat,
.nav-how-we-treat {
  display: block;
  position: relative;
  cursor: pointer;
}

/* Pseudo-element for animated top border */
.nav-about-us::before,
.nav-our-services::before,
.nav-what-we-treat::before,
.nav-how-we-treat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: var(--black);
  transition: width 0.3s ease;
}

/* Grow the top border on hover */
.nav-about-us:hover::before,
.nav-our-services:hover::before,
.nav-what-we-treat:hover::before,
.nav-how-we-treat:hover::before {
  width: 100%;
}

/* Keep the border if active */
.nav-about-us.active::before,
.nav-our-services.active::before,
.nav-what-we-treat.active::before,
.nav-how-we-treat.active::before {
  width: 100%;
}

.nav-about-us:after, .nav-our-services:after, .nav-what-we-treat:after, .nav-how-we-treat:after {
  content: "▼"; /* Downward arrow character */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: var(--black);
  pointer-events: none;
}
.nav-about-us ul, .nav-our-services ul, .nav-what-we-treat ul, .nav-how-we-treat ul{
    width: 150%;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    background-color: var(--white);
    text-decoration: none!important;
    padding: 0!important;
    margin: 0!important;
}
.nav-about-us ul li, .nav-our-services ul li, .nav-what-we-treat ul li, .nav-how-we-treat ul li{
    text-transform: capitalize;
    text-align: left!important;
    box-sizing: border-box;
    padding: 8px 24px;
}
.nav-about-us ul li a, .nav-our-services ul li a, .nav-what-we-treat ul li a, .nav-how-we-treat ul li a{
    font-size: 0.9rem;
    text-align: left!important;
}
.flx-con-mob-nav{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem;
  box-sizing: border-box;
}
#mob-nav-con{
    display: none;
}
.mob-nav-lks-con {
    display: none;
    position: fixed;                 /* Only one position declaration */
    top: 0;
    left: 0;
    width: 100%;
    height: auto;                   /* Ensure it covers the entire screen */
    background: var(--white);
    padding: 20px;
    z-index: 9999;
    overflow-y: auto;                /* Optional: enable scroll if needed */
    box-sizing: border-box;
}

.cls-mob-nav-con{
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px;
}
.mobile-nav-about-us, .mobile-nav-our-services, .mobile-nav-what-we-treat, .mobile-nav-how-we-treat{
    display: block;
    width: auto;
    text-transform: uppercase;
    padding: 8px 16px;
}
.mobile-nav-about-us ul, .mobile-nav-our-services ul, .mobile-nav-what-we-treat ul, .mobile-nav-how-we-treat ul{
    display: none;
    text-decoration: none!important;
    padding: 0!important;
    margin: 0!important;
}
.mobile-nav-about-us ul li, .mobile-nav-our-services ul li, .mobile-nav-what-we-treat ul li, .mobile-nav-how-we-treat ul li{
    font-size: 0.7rem;
    text-transform: capitalize;
    padding: 8px 8px;
    border-bottom: 1px solid #f9f9f9;
    text-decoration: none!important;
    margin: 0!important;
}
.aut-sld{
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    
}
.aut-sld-sld {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-position: center;
}
.aut-sld-sld.atv {
    opacity: 1;
    z-index: 1;
}
.sld-txt{
    display: block;
    width:auto;
    height:auto;
    position: absolute;
    z-index: 1;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
}
.sign-up-form{display:inline-block;width:100%;height:auto;}
#signupform input[type="text"], #optoutform input[type="text"] {width: 100%;padding: 12px 20px;margin: 8px 0;display: inline-block;border: none;border-bottom:1px solid #ccc;border-radius: 4px;box-sizing: border-box;}
#signupform input[type="text"]:focus{
    border: none;
    outline: none;
    box-shadow: none;
    border-bottom:1px solid #ccc
}
#srv-con-ttl{
    display:none;
}
#srv-con-ttl.show-mobile {
  display: block !important;
  opacity: 1 !important;
}
@keyframes bounceFadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.05);
  }
  80% {
    transform: translateY(5px) scale(0.98);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.bounce-fadein {
  animation: bounceFadeIn 0.9s ease-out forwards;
}
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.flx-item {
  opacity: 0;
}

.fade-animate {
  animation: fadeSlideUp 0.8s ease-out forwards;
}
@keyframes slideFadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.anm-sfr {
  opacity: 0;
}

.anm-sfr.visible {
  animation: slideFadeInRight 0.8s ease-out forwards;
}
@keyframes blinkFadeIn {
  0% { opacity: 0; }
  20% { opacity: 1; }
  40% { opacity: 0.3; }
  60% { opacity: 1; }
  80% { opacity: 0.6; }
  100% { opacity: 1; }
}

.flex-item-blink {
  opacity: 0;
}

.flex-item-blink.blink-start {
  animation: blinkFadeIn 1.5s ease-out forwards;
}
/* Comment Container */
.comment-respond {
    display: block;
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

/* Labels */
.comment-respond label {
    display: block;
    margin-bottom: 5px;
    font-weight: 900;
}

/* Input Fields */
.custom-input,
.custom-textarea {
    display:block;
    width:100%;
    border: none;
}
.custom-input input[type="text"]{
    display: block;
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: none;
    border:1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.custom-textarea textarea{
    display: block;
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: none;
    border:1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.custom-input input[type="text"]:focus, .custom-textarea textarea:focus{
    border: none;
    outline: none;
    box-shadow: none;
    border:1px solid #ccc;
}
/* Submit Button */
.custom-comment-button{
    background-color: var(--white);
    padding: 12px 24px;
    border: 1px solid var(--black);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: var(--black);
}
.custom-comment-button:hover{
    background-color: var(--black);
    color: var(--white);
}
.bno{
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}
.cls-bno{
    display: block;
    width: auto;
    height: auto;
    position: absolute;
    top: 10%;
    left: 90%;
    z-index: 10000;
    color: var(--white);
    cursor: pointer;
}
.bnc{
    display: block;
    width: 100%;
    height: 100vh;
    background: var(--black);
    opacity: 0.9;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}
.bni{
    display: block;
    width: auto;
    height: auto;
    background: var(--white);
    padding: 20px;
    position: fixed;
    top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    z-index: 10001;
}
.appointment-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

.appointment-form h2 {
  text-align: center;
  margin-bottom: 10px;
}

.appointment-form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}

.appointment-form input,
.appointment-form textarea,
.appointment-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

.appointment-form input[type="submit"] {
  background-color: #4a0347;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  font-weight: bold;
}

.appointment-form input[type="submit"]:hover {
  background-color: #380235;
}



.responsive-iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.responsive-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#cb_booking_engine_outer_container, #cb_booking_engine_row_one_container{
    overflow-x:hidden!important;
    width: 50%!important;
}
.vid-pre-con{display:block;width:100%;min-height:100vh;padding:0 100px}
.vid-pre-con-vid{display:inline-block;width:25%;height:auto}
/* Container for the slider */
        .aut-sld-wct {
          position: relative;
          width: 100%;
          height: 700px;
          overflow: hidden;
        }
    
        /* Each slide */
        .aut-sld-wct-sld {
          position: absolute;
          width: 100%;
          height: 100%;
          background-size: cover;
          background-position: center;
          opacity: 0;
          transition: opacity 0.8s ease;
        }
    
        /* Active slide */
        .aut-sld-wct-sld.aut-sld-on {
          opacity: 1;
          z-index: 1;
        }
    
        /* Dot container */
        .aut-sld-dots {
          position: absolute;
          bottom: 15px;
          width: 100%;
          text-align: center;
          z-index: 2;
        }
    
        /* Dot styles */
        .aut-sld-dot {
          display: inline-block;
          width: 12px;
          height: 12px;
          margin: 0 5px;
          background-color: rgba(255, 255, 255, 0.6);
          border-radius: 50%;
          cursor: pointer;
          transition: background-color 0.3s ease;
        }
    
        /* Active dot */
        .aut-sld-dot.aut-sld-on {
          background-color: #222;
        }
@media (max-width: 480px) {
    #dsk-nav-con{display: none;}
    .mob-nav-flx-con{display:flex;}
    .con-pad{padding: 10px;}
    .flx-con{flex-direction:column;}
    .flx-chd-10, .flx-chd-15, .flx-chd-20, .flx-chd-25, .flx-chd-33, .flx-chd-50, .flx-chd-60, .flx-chd-70, .flx-chd-80 { flex: 0 0 100% !important; max-width: 100% !important; min-width: 100%; }
    .flx-con-rrv{flex-direction:column-reverse;}
    .bni{
        width: 80%;
        height: auto;
        position: fixed;
        overflow-y: scroll;
    }
    .cls-bno{

        top: 1%;
        left: 95%;
    }
    .vid-pre-con{padding:0 10px;padding-top:100px;}
    .vid-pre-con-vid{display:inline-block;width:100%;height:auto}
}
@media (min-width: 481px) and (max-width: 768px) {
    #dsk-nav-con{display: none;}
    .mob-nav-flx-con{display:flex;}
    .con-pad{padding: 50px 10px;}
    .flx-con{box-sizing: border-box!important}
    .flx-chd-25{flex: calc(50% - 1rem)!important;max-width: calc(50% - 1rem)!important; min-width: calc(50% - 1rem)!important;}
    .ful-wdt{ flex: 0 0 100% !important; max-width: 100% !important; min-width: 100%; }
    .vid-pre-con{padding:0 20px}
    .vid-pre-con-vid{display:inline-block;width:100%;height:auto}
}
@media (min-width: 769px) and (max-width: 1024px) {
    #dsk-nav-con{display: none;}
    .mob-nav-flx-con{display:flex;}
    .con-pad{padding: 20px;}
    .vid-pre-con{padding:0 50px}
    .vid-pre-con-vid{display:inline-block;width:50%;height:auto}
}
@media (min-width: 1025px) and (max-width: 1366px) {
    .con-pad{padding: 50px 100px;}
}