*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Georgia, "Times New Roman", serif;
      background-color:#EEF7F5;
    color: #12343B;
}
.heartbeat-line {
    position: relative;
    top: 320px;
    left: 0;
    width: 100%;
    height: 50px;
    overflow: hidden;
    z-index: 1;
}

.heartbeat-line svg {
    width: 100%;
    height: 100%;
}

.heartbeat-line path {
    fill: none;
   stroke: #6FC7BC;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;

    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;

    animation: heartbeatMove 4s linear infinite;
}

@keyframes heartbeatMove {
    0% {
        stroke-dashoffset: 1200;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -1200;
    }
}
html{
    scroll-behavior: smooth;
}
nav{
    /* background-color: aqua; */
    color: black;
    width: 100%;
    height: 12vh;
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 344px;
         background-color:transparent;
    border-bottom: 1px solid #B8DCD6;
      position: fixed;
      top: 0px;
      z-index: 1;
}
.side-nav{
    display: none;
}
#logo{
       height: 10vh;
    width: 6.44vw;

    filter:
        drop-shadow(0 0 6px rgba(22, 125, 127, 0.25))
        drop-shadow(0 0 14px rgba(22, 125, 127, 0.18));
}
#right{
width: 60%;
display: flex;
    justify-content: space-evenly;
    align-items: center;
 
}
#left{
        width: 15vw;
        align-items: center;
    display: flex;
        margin-left: 3vw;
        background: linear-gradient(
        90deg,
        #0B525B,
        #167D7F
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
        0 0 6px rgba(22, 125, 127, 0.25),
        0 0 12px rgba(75, 175, 168, 0.18);
    font-weight: 700;
}

 nav a {
    text-decoration: none;
     color: #12343B;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

nav a:hover {
   color: #167D7F;
    text-shadow:
        0 0 6px rgba(22, 125, 127, 0.35),
        0 0 14px rgba(22, 125, 127, 0.30),
        0 0 22px rgba(75, 175, 168, 0.20);

}
#nav-booking{
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(
        90deg,
        #0B525B,
        #167D7F,
        #4BAFA8
    );
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 5px 15px rgba(22, 125, 127, 0.20);
}

#nav-booking:hover{
    transform: translateY(-3px);
    box-shadow:
        0 0 10px rgba(22, 125, 127, 0.35),
        0 0 22px rgba(75, 175, 168, 0.25);
}
h2{
  background: linear-gradient(
        90deg,
        #0B525B,
        #167D7F,
        #4BAFA8
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
        0 0 8px rgba(22, 125, 127, 0.35),
        0 0 18px rgba(75, 175, 168, 0.25);
    font-weight: 500;
        font-size: 1.2rem;
}
.ri-menu-line{
    display: none;
}

 /* main content  */

.main-content{
        height: 91vh;
    width: 100%;
    display: flex;
    margin-top: 2vh;
    justify-content: center;
    align-items: center;
   gap: 0px;
}
.left{
    background-color:#EEF7F5;
   height: 60vh;
       width: 29vw;
   text-align: center;
   display: flex;
   flex-direction: column;
   gap: 5vh;
     margin-top: 8vh;
}
h1{
          font-family: "Playfair Display", Georgia, serif;
    font-size: 2.5rem;
    line-height: 1.2;
    
}

p{
         font-family: "Poppins", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #374151; 
    
    
}
.right{
 background-color:#EEF7F5;
     height: 53vh;
    width: 29vw;
}
#home-pic{
       height: 80vh;
    width: 39vw;
    position: relative;
    bottom: 9vh;
    object-fit: contain;
    z-index: 1;

    filter:
        drop-shadow(0 0 8px rgba(22, 125, 127, 0.20))
        drop-shadow(0 0 18px rgba(22, 125, 127, 0.18))
        drop-shadow(0 8px 25px rgba(184, 220, 214, 0.35));
      -webkit-mask-image: linear-gradient(
        to bottom,
        black 70%,
        rgba(0,0,0,0.7) 85%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        black 70%,
        rgba(0,0,0,0.7) 85%,
        transparent 100%
    );
}
#front-name{
     background: linear-gradient(
        90deg,
        #0B525B,
        #167D7F,
        #4BAFA8
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
        0 0 8px rgba(22, 125, 127, 0.35),
        0 0 18px rgba(75, 175, 168, 0.25);
    font-weight: 700;
}

#home-booking{
        width: 13vw;
    height: 7vh;
    border-radius: 5px;
    padding: 12px 27px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
      background: #167D7F;
    color: white;
    border: 1px solid #0B525B;
    transition: all 0.3s ease;
    margin-left: 12px;
    
}
 #home-booking:hover {
      background: #0B525B;
    color: white;
    transform: translateY(-2px);
    box-shadow:
        0 0 8px rgba(22, 125, 127, 0.45),
        0 0 18px rgba(22, 125, 127, 0.25);
    
}


/* About Section */
#about{
    height: 100vh;
      display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 29px;
   
}
.about-left{
    width: 44vw;
    height: 55vh;
    margin-top: 4vh;
}
.about-right{
        /* background-color: white; */
    width: 44vw;
    height: 55vh;
     margin-top: 4vh;
    
}
.about-right h3{
    font-size: 2.22rem;
  text-align: center;
  color: #0B525B;
}
.about-right h4{
    margin-top: 2vh;
     line-height: 24px;
         text-align: justify;
          color: #526568;
}
.ri-instagram-line{
    color: #0B525B;
        font-size: 1.88rem;
    margin-left: 10px;
    font-weight: 100;
    position: relative;
    top: 1vh;
}
.ri-whatsapp-line{
   color: #0B525B;
        font-size: 1.88rem;
    margin-left: 10px;
    font-weight: 100;
    position: relative;
    top: 1vh;
}
.ri-instagram-line:hover{
       filter:
        drop-shadow(0 0 6px rgba(22, 125, 127, 0.25))
        drop-shadow(0 0 14px rgba(22, 125, 127, 0.18));
}
.ri-whatsapp-line:hover{
        filter:
        drop-shadow(0 0 6px rgba(22, 125, 127, 0.25))
        drop-shadow(0 0 14px rgba(22, 125, 127, 0.18));
}
.about-left img{
          height: 51vh;
    width: 35vw;
       object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(22, 125, 127, 0.35));
}

#treatments{
  margin-top: 8vh;
  height: 148vh;
}

.treat-boxes{
    align-items: center;
    height: 54vh;
    width: 98vw;
    display: flex;
    justify-content: flex-start;
    gap: 48px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 30px;

    scrollbar-width: none;
}
.treat-boxes::-webkit-scrollbar{
    display: none;
}

.box{
    height: 30vh;
    width: 14vw;
    background-color: transparent;
    border-radius: 4px;
        display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
       min-width: 14vw;
    flex-shrink: 0;
    scroll-snap-align: center;
     border: 1px solid #B8DCD6;
      transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.box:hover{
       transform: translateY(-2px);
    box-shadow:
        0 15px 35px rgba(11, 82, 91, 0.12),
        0 0 30px rgba(22, 125, 127, 0.15);
}


.para{
   color: #526568;
   text-align: center;
}

.treat-name{
    font-weight: 600;
      color:   #12343B;
}
.box svg{
    width: 70px;
    height: 70px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2.3rem;
}
.ri-women-line{
  width: 70px;
    height: 70px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2.3rem;
}
.box svg,
.ri-women-line {
    background-color: #DFF3EE;
    color: #0B525B;
}
.treat-heading{
        margin-left: 35vw;
    font-size: 2.3rem;
        font-weight: 600;
    margin-bottom: 24vh;
    color: #0B525B;
    position: relative;
    top: 19vh;
}


#certificates-credentials{
      margin-top: -38vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 1189px;
}


@keyframes certificateReveal {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

 #certificate{
        margin-left: 35vw;
    font-size: 2.3rem;
    font-weight: 600;
        margin-bottom: 4vh;
         color: #0B525B;
   
}
 #certificate-para{
        text-align: center;
    font-size: 1.12rem;
    font-weight: 500;
        margin-bottom: 7vh;
         color: #526568;
   
}
.certificate-boxes{
   
    height: 120vh;
    width: 77vw;
    display: flex;
    justify-content: center;
      align-items: center;
      margin-left: 9vw;
    flex-wrap: wrap;
    gap: 48px;
        margin-top: 2vh;

}
.certificate-box{
         height: 33vh;
    width: 20vw;
    background-color: transparent;
    border-radius: 4px;
        display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
       min-width: 14vw;
    flex-shrink: 0;
    scroll-snap-align: center;

    text-align: center;
    gap: 7px;
}
.image{
     height: 49vh;
    width: 20vw;
    border-radius: 4px;
}
.certificate-heading{
    font-size: 1rem;
    font-weight: 600;

}
.certificate-para{
    font-size: 1rem;
}
.certificate-year{
    font-size: 1.2rem;
}

.certificate-box3{
       height: 53vh;
    width: 20vw;
    background-color: transparent;
    border-radius: 4px;
        display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
       min-width: 14vw;
    flex-shrink: 0;
    scroll-snap-align: center;

    text-align: center;
    gap: 7px;
}

.image3{
height: 49vh;
    width: 20vw;
    border-radius: 4px;
}
.certificate-heading3{
    font-size: 1rem;
    font-weight: 600;

}
.certificate-para3{
    font-size: 1rem;
}
.certificate-year3{
    font-size: 1.2rem;
}

html,
body {
    overflow-x: hidden;
}

.footer-contact-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.footer-contact-line {
    display: inline-block;
    white-space: nowrap;
    margin: 0;
    color: #0B525B;
    font-size: 1.33rem;
    position: relative;
    top: 200px;

    text-shadow:
        0 0 8px rgba(184, 220, 214, 0.7),
        0 0 18px rgba(184, 220, 214, 0.4);

    animation: moveContactText 7s linear infinite;
}

@keyframes moveContactText {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(220%);
    }
}
footer{
     background-color: #0B525B;
    color: black;
          height: 42vh;
    width: 98.86vw;
    margin-top: 31vh;
    display: flex;
    justify-content: space-around;
    align-items: center;

}

.footer-btn{
        width: 11vw;
    height: 6vh;
    border-radius: 5px;
       padding: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
    background-color: #062F35;
    color: #041518;
    border: 1px solid #0B525B;
    transition: all 0.3s ease;
}
 .footer-btn:hover {
      background: #0B525B;
   color: #041518;
    transform: translateY(-2px);
    box-shadow:
        0 0 8px rgba(22, 125, 127, 0.45),
        0 0 18px rgba(22, 125, 127, 0.25);
    
}
#footer-contact{
      width: 28vw;
    font-size: 1.22rem;
    padding: 14px;
        margin-right: -9vw;
}
#footer-heading{
font-size: 1.77rem;
font-weight: 400;
color: #041518;
 
}
.quick-links{
    display: flex;
    flex-direction: column;
        gap: 7px;
        text-align: center;
        
}
.contact-us{
    display: flex;
    flex-direction: column;
        gap: 7px
}
#quick-heading{
    color: #041518;
    font-size: 1.2rem;
    font-weight: 600;
}
#contact-us{
  color: #041518;
  font-size: 1.2rem;
  font-weight: 600;
}
a{
    color: black;
    text-decoration: none;
    
}
.bottom-bar{
    height: 6vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
       background-color: #062F35;
    color: white;
}


#booking-message {
    width: 100%;
    height: 100px;
    padding: 12px;
    margin-top: 15px;
    border-radius: 10px;
    resize: none;
    font-size: 15px;
    box-sizing: border-box;
     border: 1px solid #B8DCD6;
    background: #F8FCFB;
    color: #12343B;
    outline: none;
    transition: all 0.3s ease;
}

#booking-message::placeholder{
    color: #789094;
}
#booking-message:focus{
    border-color: #167D7F;
    background: white;
    box-shadow:
        0 0 0 3px rgba(22, 125, 127, 0.10),
        0 0 15px rgba(22, 125, 127, 0.15);
    transform: translateY(-2px);
}
#book{
        height: 777px;
}
.book-container{
        height: 77vh;
    margin-left: 22vw;
    width: 53vw;
           position: relative;
    top: 20vh;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid #B8DCD6;
    border-radius: 16px;
    box-shadow:
        0 10px 30px rgba(11, 82, 91, 0.08),
        0 0 25px rgba(22, 125, 127, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
 
}
.book-container.book {
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 9999;
}
.book-container.book:hover{
     transform: translate(-50%, -50%) translateY(-5px);

    box-shadow:
        0 15px 35px rgba(11, 82, 91, 0.12),
        0 0 30px rgba(22, 125, 127, 0.15);
}
.book-container:hover{
    transform: translateY(-5px);
    box-shadow:
        0 15px 35px rgba(11, 82, 91, 0.12),
        0 0 30px rgba(22, 125, 127, 0.15);
}
/* .book-container{

} */

#booking-heading::after{
    content: "";
    display: block;
    width: 222px;
    height: 4px;
    margin: 12px auto 0;
    background: linear-gradient(
        90deg,
        #0B525B,
        #167D7F,
        #4BAFA8
    );
    border-radius: 10px;
}
#booking-heading{
      font-size: 1.99rem;
    height: 14vh;
    font-weight: 600;
    margin-bottom: 4vh;
    margin-top: -4vh;
    position: relative;
    top: 8vh;
    text-align: center;
    color: #0B525B;
}

#book-left{
        display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#book-right{
        display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
input{
        padding: 8px;
    margin: 8px;
    border-radius: 3px;
    width: 18vw;
      border: 1px solid #B8DCD6;
    background: #F8FCFB;
    color: #12343B;
    outline: none;
    transition: all 0.3s ease;
}
input::placeholder{
    color: #789094;
}
input:focus{
    border-color: #167D7F;
    background: white;
    box-shadow:
        0 0 0 3px rgba(22, 125, 127, 0.10),
        0 0 15px rgba(22, 125, 127, 0.15);
    transform: translateY(-2px);
}

#book-submit {
        display: flex;
    justify-content: center;
      margin-top: 18px;
}
#book-submit input{
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(
        90deg,
        #0B525B,
        #167D7F,
        #4BAFA8
    );
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 5px 15px rgba(22, 125, 127, 0.20);
}

#book-submit input:hover{
    transform: translateY(-3px);
    box-shadow:
        0 0 10px rgba(22, 125, 127, 0.35),
        0 0 22px rgba(75, 175, 168, 0.25);
}











@media (max-width:480px) {
  
    html,body {
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
   


.side-nav.active {
    display: block;
     font-family: Georgia, "Times New Roman", serif;
      background-color:#EEF7F5;
            position: fixed;
        z-index: 1;
        top: 81px;
        right: 0px;
        justify-content: center;
        height: 900px;
        width: 300px;
}
.side-nav.active a{

    text-decoration: none;
    font-size: 1.30rem;
     color: #12343B;

}

  /* .side-nav.active   #nav-booking{
            padding: 16px 32px;
        border: none;
        width: 209px;
        margin-left: 48px;
    border-radius: 6px;
    background: linear-gradient(
        90deg,
        #0B525B,
        #167D7F,
        #4BAFA8
    );
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 5px 15px rgba(22, 125, 127, 0.20);
      border-bottom: 1px solid #B8DCD6;
} */


#side-right {
           display: flex;
        flex-direction: column;
        justify-content: inherit;
        gap: 80px;
        text-align: center;
        margin-top: 88px;
}
    nav{
    width: 100%;
           height: 80px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 55px;
}
.ri-menu-line{
    display: flex;
    color: black;
            position: relative;
                top: 30px;
        left: -15px;
        font-size: 1.89rem;
}
#right{
display: none;

}
#left{
            width: 300px;
        align-items: center;
    display: flex;
}
a{
    text-decoration: none;
    font-size: 1.11rem;
    color: black;
}
#booking{
              width: 168px;
        height: 6vh;
        font-size: 1rem;
    border-radius: 5px;
   background-color: rgb(35, 174, 192);
}
#logo{
    height: 7vh;
    width: 20vw;
}


.main-content{
         height: 990px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
               gap: 182px;
        flex-direction: column;
       
}
.left{

         height: 373px;
        width: 355px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 53px;
}
h1{
        font-size: 2.33rem;
}
p{
        line-height: 16px;
}
.right{
                   width: 291px;
}
#home-pic{
                  height: 357px;
        width: 100%;
}
#home-booking{
             width: 222px;
        height: 53px;
    border-radius: 5px;
    padding: 12px 27px;
    font-size: 17px;
}
/* About Section */
#about{
    height: 749px;
      display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;

}
.about-left{
                  height: 252px;
        width: 416px;
        position: relative;
               top: 225px;
               text-align: center;

}
.about-right{
              width: 366px;
        height: 152px;
    

}
.about-right h3{
    font-size: 2.22rem;
  text-align: center;
}
.about-right h4{
     line-height: 24px;
         text-align: center;
}
.about-left img{
                       height: 252px;
                width: 396px;
        
}

#treatments{
 height: 1138px;
  
}

.treat-boxes{
    align-items: center;
            height: 503px;
        width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 30px;

    scrollbar-width: none;
}
.treat-boxes::-webkit-scrollbar{
    display: none;
}
.box svg,
.ri-women-line {
    background-color: #DFF3EE;
    color: #0B525B;
}
.box{
         height: 224px;
        width: 198px;
        background-color: transparent;
        border-radius: 7px;
        display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
       min-width: 14vw;
    flex-shrink: 0;
    scroll-snap-align: center;
    border: 1px solid #468caf ;
}


.para{

   text-align: center;
}

.treat-name{
    font-weight: 600;
     
}
.box svg{
    width: 70px;
    height: 70px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2.3rem;
   
}
.treat-heading{
                       font-size: 21px;
        font-weight: 100;
        position: relative;
        top: 281px;
        text-align: center;
        left: -76px;
    }

  
/* certificates-credentials */

#certificates-credentials{
          margin-top: -32px;
        height: 800px;
        width: 100%;
          DISPLAY: flex;
        gap: 28px;
        
        
}
 #certificate{
       font-size: 1.77rem;
       text-align: center;
       margin: 0px;
    

}
 #certificate-para{
          font-size: 1rem;
        font-weight: 300;
   margin-bottom: 0px;
}
.certificate-boxes{
        height: 754px;
        width: 100%;
        display: flex;
        justify-content: center;
              gap: 49px;
        position: relative;
        left: -33px;
                 right: 0px;
                  

    
}
.certificate-heading{
    font-size: 15px;
    font-weight: 600;

}
.certificate-para{
    font-size: 12px;
    text-align: center;
}
.certificate-year{
    font-size: 13px;
    text-align: center;
}

.certificate-box{
                height: 239px;
    width: 150px;
    background-color: transparent;
    border-radius: 4px;
    border:none ;
   
  
}
.image{
                height: 23vh;
        width: 37vw;
    object-fit: contain;
}


.certificate-heading3{
    /* font-size: 11px; */
    font-weight: 600;
    text-align: center;

}
.certificate-para3{
    font-size: 12px;
    text-align: center;
}
.certificate-year3{
    font-size: 13px;
    text-align: center;
}

.certificate-box3{
                height: 240px;
    width: 150px;
    background-color: transparent;
    border-radius: 4px;
      border:none ;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
  
}
.image3{
              height: 23vh;
        width: 37vw;
     object-fit: contain;
}

footer{
                     height: 316px;
        width: 104%;
        margin-top: 258px;
    display: flex;
    justify-content: space-around;
    align-items: center;

    /* margin-left: 2vw; */
}
#footer-contact{
         display: none;
}
#footer-heading{
font-size: 1.77rem;
font-weight: 400;
}
.quick-links{
    display: flex;
    flex-direction: column;
        gap: 16px;
        text-align: center;
}
.contact-us{
    display: flex;
    flex-direction: column;
        gap: 16px;
                font-size: 1rem;
        font-weight: 600;
        text-align: center;
}
#quick-heading{
    
          font-size: 1.4rem;
    font-weight: 600;
}
#contact-us{
 
        font-size: 1.4rem;
  font-weight: 600;
  
}
a{
    
            font-size: 1rem;
        font-weight: 600;
}
.bottom-bar{
    height: 35px;
    width: 104%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#booking-message {
            width: 86%;
    height: 100px;
    padding: 12px;
    margin-top: 15px;
    border-radius: 8px;
    resize: none;
    font-size: 15px;
    box-sizing: border-box;
     border: 1px solid #B8DCD6;
    background: #F8FCFB;
    color: #12343B;
    outline: none;
    transition: all 0.3s ease;
}

#booking-message::placeholder{
    color: #789094;
}
#booking-message:focus{
    border-color: #167D7F;
    background: white;
    box-shadow:
        0 0 0 3px rgba(22, 125, 127, 0.10),
        0 0 15px rgba(22, 125, 127, 0.15);
    transform: translateY(-2px);
}
#book{
        height: 777px;
}
.book-container{
                  height: 490px;
        width: 88%;
        margin: 0px;
        position: relative;
        top: 31vh;
        left: 32px;
        background: rgba(255, 255, 255, 0.75);
        border: 1px solid #B8DCD6;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(11, 82, 91, 0.08), 0 0 25px rgba(22, 125, 127, 0.08);
        backdrop-filter: blur(10px);
        transition: all 0.4s ease;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 21px;
 
}
.book-container.book {
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 9999;
}
.book-container.book:hover{
     transform: translate(-50%, -50%) translateY(-5px);

    box-shadow:
        0 15px 35px rgba(11, 82, 91, 0.12),
        0 0 30px rgba(22, 125, 127, 0.15);
}
.book-container:hover{
    transform: translateY(-5px);
    box-shadow:
        0 15px 35px rgba(11, 82, 91, 0.12),
        0 0 30px rgba(22, 125, 127, 0.15);
}
/* .book-container{

} */

#booking-heading::after{
    content: "";
    display: block;
    width: 222px;
    height: 4px;
    margin: 12px auto 0;
    background: linear-gradient(
        90deg,
        #0B525B,
        #167D7F,
        #4BAFA8
    );
    border-radius: 10px;
}
#booking-heading{
         font-size: 27px;
        height: 141px;
        font-weight: 600;
        margin: 0px;
                position: relative;
        top: 28px;
        text-align: center;
        color: #0B525B;
}
form{
       width: 89%;
               position: relative;
        bottom: 49px;
                display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
}
#book-left{
        display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#book-right{
        display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
input{
        padding: 8px;
          border-radius: 3px;
               width: 141px;
      border: 1px solid #B8DCD6;
    background: #F8FCFB;
    color: #12343B;
    outline: none;
    transition: all 0.3s ease;
}

#book-submit {
        display: flex;
    justify-content: center;
      margin-top: 18px;
}
#book-submit input{
    padding: 12px 32px;
    color: white;
    font-size: 1rem;
    font-weight: 600;

}
.heartbeat-line {
    position: relative;
            top: 271px;
    left: 0;
    width: 100%;
    height: 50px;
    overflow: hidden;
    z-index: 1;
}

.heartbeat-line svg {
    width: 100%;
    height: 100%;
}

.heartbeat-line path {
    fill: none;
   stroke: #6FC7BC;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;

    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;

    animation: heartbeatMove 4s linear infinite;
}

@keyframes heartbeatMove {
    0% {
        stroke-dashoffset: 1200;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -1200;
    }
}


   }