
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
}

body{
  background-color:  rgba(0,0,0,0.05);
}


.larkita-txt{
 text-align: center;
  /*background-color: #D2B48C;*/
  font-family:"Cormorant Garamond", sans-serif;
  font-weight: 500;
  /*font-size: 50px;*/
}

.esthetician-service-home{
  text-decoration: none;
  color: black;
   font-family: "raleway", sans-serif;
    font-weight: 400;
     text-transform: uppercase;
      font-size: 1rem;
        letter-spacing: 2px; 
        color: tan;
}


/* Navbar main container */
  .nav-container-flex {
    position: sticky;
    top: 0;
     border-bottom: 1px solid #e8d9c8;
     background: #fdf8f3;
    z-index: 999;
    box-shadow: 0 2px 16px rgba(59,42,26,.07);
    transition: box-shadow .3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 5%;
  }

  nav.scrolled { box-shadow: 0 4px 28px rgba(59,42,26,.13); }

  
  /* Navigation links */
  
 
  .btn-book-now{
   margin-left: 100px;
    width: 150px;
    height: 40px;
    
  }


  .nav-links a {
    color: black;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 10px;
    font-family: "raleway", sans-serif;
    font-weight: 400;
     text-transform: uppercase;
     color: #3b2a1a;
     position: relative;
      transition: color .3s;
      letter-spacing: 2px; 
  }

  
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1.5px; background: #c49a6c; transition: width .3s;
  }

  
  .nav-links a:hover, .nav-links a.active { color: #c49a6c; }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }


  /*quote-cont*/
 .quote-cont{
    width: 80%;
    display: flex;
    text-align: center;
    margin: auto;
    border: none;
    height: 200px;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    flex-direction: column;
    background-color:#d6ae7b;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    font-family: "jost",sans-serif;
 }


.p-kaylovecos-txt{
 font-family: "cormorant Garamond", sans-serif;
}

.our-best-service-cont{
    width: 80%;
    border-bottom: 1px solid black;
    margin:auto;
    margin-top: 30px;

}

.h3-best-service-txt{
    margin-left: 2em;
    font-family: "jost",sans-serif;
    font-size: 2em;
}

.service-main-cont{
    display: flex;
    justify-content: center;
   flex-wrap: wrap;
    gap: 30px;
}

.facial-cont{
    /*border: 1px solid #333;*/
   
    
    border-radius: 10px;
    background-color: #e8d0b8;
    padding: 0.1em;
     box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
   
}

.rating-star-cont{
  
   margin-bottom: 20px;
}

.h2-facial-txt-cont,.h2-vagi-care-txt-cont,.h2-body-treatment-txt-cont,
.h2-bro-care-txt-cont,.h2-waxing-txt-cont
{
   /* border-top: 1px solid black;*/
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color:  #c49a6c;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    /*position: relative;*/
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
     display: flex;
   align-items: center;
   justify-content: center;
   height: 100px;

   
   
}


.fa-star{
    /*padding: 0.3em;*/
    padding-left: 0.9em;
    /*padding-top: 1em;*/
    color: gold;
}

.h2-facials-txt,.h2-vagi-care-txt,.h2-body-treat-txt,.h2-bro-care-txt,
.h2-waxing-txt
{
    text-align: center;
    /*border-top: 1px solid whitesmoke;
    border-bottom: 1px solid whitesmoke;*/
   font-family: "cormorant Garamond", sans-serif;
   /*margin-top: 0.5em;*/
  
}


  
  /* Hamburger */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px;
  }

  
  .hamburger span {
    display: block; height: 2px; 
    background: #3b2a1a;
    border-radius: 2px; transition: all .35s;
  }

  
  .hamburger span:nth-child(1) { width: 24px; }
  .hamburger span:nth-child(2) { width: 18px; }
  .hamburger span:nth-child(3) { width: 24px; }


   
  /* Animate to X */
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
   

  
  /* ── OVERLAY ── */
  .overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.45); z-index: 1000;
    opacity: 0; transition: opacity .3s;
  }

  
  .overlay.show { display: block; }
  .overlay.visible { opacity: 1; }

    /* ── MOBILE DRAWER ── */
  .drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 70%; 
   /* background: #fdf8f3;*/
   background-color: #333;
     z-index: 1001;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(59,42,26,.18);
    display: flex; flex-direction: column;
  }

  .drawer.open { transform: translateX(0); }


  
  /* Drawer header */
  .drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 22px; border-bottom: 1px solid #e8d9c8;
   /* background-color: ;*/
  }

  
  .close-btn {
    width: 38px; height: 38px; border-radius: 50%;
    background: #f5ede0; border: 1px solid #e8d9c8;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: #3b2a1a;
    transition: background .2s, transform .3s;
  }

  .close-btn:hover { background: #e8d0b8; transform: rotate(90deg); }


   /* Drawer links */
  .drawer-links { list-style: none; padding: 14px 0; flex: 1; overflow-y: auto; }
  .drawer-links li a {
    display: flex; align-items: center; gap: 13px;
    padding: 14px 26px; text-decoration: none;
    font-size: .8rem; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; color: white;
    border-left: 3px solid transparent;
    transition: color .2s, background .2s, border-color .2s;
    font-family: "raleway", sans-serif;
  }

  
  .drawer-links li a .d-icon { font-size: 1.05rem; }
  .drawer-links li a:hover { background: #f5ede0; color: #c49a6c; }
  .drawer-links li a.active {
    color: #c49a6c; border-left-color: #c49a6c;
    font-weight: 700; background: #fdf0e2;
  }

   
  /* Drawer footer */
  .drawer-footer { padding: 20px 22px; border-top: 1px solid #e8d9c8; }
  .drawer-footer .btn-book { width: 100%; padding: 13px; font-size: .72rem; margin-bottom: 14px; }
  .drawer-socials { display: flex; justify-content: center; gap: 12px; margin-bottom: 12px; }
  .drawer-socials a {
    width: 50px; height: 50px; border-radius: 50%;
    
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; text-decoration: none; color: white;
    transition: border-color .2s, transform .2s;
  }

  
  .drawer-socials a:hover { border-color: #c49a6c; transform: translateY(-5px); }
  .drawer-tagline { text-align: center; font-size: .6rem; color: white; letter-spacing: 1px; }

   /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-right { display: none; }
    .hamburger { display: flex; }

  }


/*
  .s-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    user-select: none;
    
  }

  .s-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
   
  }

  .s-slide {
    flex: 0 0 100%;
    position: relative;
    height: 800px;
    overflow: hidden;
  }

  .s-slide img {
    width: 100%;
    height: 100% ;
    object-fit: cover;
    display: block;
    pointer-events: none;
  }

  .s-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 55%);
  }

  .s-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem 2rem;
    color: #fff;
  }

  .s-caption-title { font-size: 18px; font-weight: 500; margin-bottom: 4px; }
  .s-caption-sub   { font-size: 13px; opacity: 0.75; }

  .s-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
  }

  .s-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.1);
  }

  .s-btn:hover svg {
    animation: wiggle 0.55s ease infinite;
  }

  .s-prev { left: 16px; }
  .s-next { right: 16px; }

  .s-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4px 6px;
  }

  .s-dots { display: flex; gap: 7px; align-items: center; }

  .s-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
  }

  .s-dot.active {
    background: #111;
    transform: scale(1.4);
  }

  .s-counter { font-size: 12px; color: #999; }

  .s-progress-wrap {
    height: 2px;
    background: #e5e5e5;
    border-radius: 2px;
    overflow: hidden;
  }

  .s-progress {
    height: 100%;
    background: #111;
    width: 0%;
    transition: width 0.05s linear;
  }

  @keyframes wiggle {
    0%   { transform: translateX(0) rotate(0deg); }
    15%  { transform: translateX(4px) rotate(12deg); }
    30%  { transform: translateX(-3px) rotate(-7deg); }
    45%  { transform: translateX(4px) rotate(8deg); }
    60%  { transform: translateX(-2px) rotate(-4deg); }
    75%  { transform: translateX(3px) rotate(5deg); }
    100% { transform: translateX(0) rotate(0deg); }
  }

  */


/*dropdown css code /*


    /* ── Main dropdown wrapper ──
    .dropdown {
      position: relative;
      display: inline-block;
      top: 45px;
      left: 50%;
      transform: translate(-50%,-50%)
    }

    /* ── Trigger button ── 
    .dropdown-btn {
      background: #ffffff;
      border: 1px solid #ccc;
      padding: 10px 18px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 600;
      color: #333;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background 0.2s;
    }

    .dropdown-btn:hover {
      background: #f0f0f0;
    }

    .dropdown-btn .arrow {
      font-size: 11px;
      color: #888;
      transition: transform 0.25s;
      display: inline-block;
    }

    .dropdown-btn.open .arrow {
      transform: rotate(180deg);
    }

    /* ── Dropdown menu ── 
    .dropdown-menu {
      display: none;
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      background: #ffffff;
      border: 1px solid #ddd;
      border-radius: 10px;
      list-style: none;
      min-width: 230px;
      z-index: 100;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }

    .dropdown-menu.open {
      display: block;
    }

    /* ── Each list item ──
    .menu-item {
      border-bottom: 1px solid #f0f0f0;
      width: 400px;
      
    }

    .menu-item:last-child {
      border-bottom: none;
    }

    /* ── Item trigger button ── 
    .menu-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 11px 16px;
      text-decoration: none;
      color: #333;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      background: transparent;
      border: none;
      width: 100%;
      text-align: left;
      transition: background 0.15s;
    }

    .menu-link:hover {
      background: #f7f7f7;
    }

    .menu-link.active {
      background: #eeedfe;
      color: #3c3489;
    }

    .item-arrow {
      font-size: 11px;
      color: #aaa;
      transition: transform 0.2s;
    }

    .menu-link.active .item-arrow {
      transform: rotate(90deg);
      color: #534ab7;
    }

    /* ── Sub detail panel ── 
    .sub-details {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.25s ease;
      background: #fafafa;
      border-top: 1px solid #f0f0f0;
    }

    .sub-details.open {
      max-height: 200px;
    }

    .sub-inner {
      padding: 10px 16px;
      font-size: 13px;
      color: #555;
      line-height: 1.7;
    }

    /* ── Badge ── 
    .badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 6px;
      margin-left: 8px;
      background: #eeedfe;
      color: #3c3489;
    }


    /*dropdown everything fixed*/

     .bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      background: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1600&q=80') center/cover no-repeat;
      transition: filter 0.4s ease;
    }
    .bg.blurred {
      filter: blur(14px) brightness(0.6);
    }

    .card {
      position: relative;
      z-index: 10;
      /*background: rgba(255,255,255,0.95);*/
      /*background-color: #c49a6c;*/
     background-color: white;
      border-radius: 18px;
      padding: 28px 24px;
      width: 25%;
      box-shadow: 0 12px 40px rgba(0,0,0,0.18);
      /*
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
      */
      /*height: 300px;*/
      border: 1px solid rgba(255,255,255,0.8);
      overflow: visible;
    }

    .card-title { font-size: 16px; font-weight: 700; color: #222; }
    .card-sub   { font-size: 12px; color: #999; ;margin-top: -10px; }

    .dropdown { position: relative; width: 100%; }

    .dropdown-btn {
      background: #fff;
      border: 1px solid #ddd;
      padding: 9px 14px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      color: #333;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      transition: background 0.2s, border-color 0.2s;
      ;
    }
    .dropdown-btn:hover { background: #f7f7f7; border-color: #bbb; }
    .dropdown-btn.open  { border-color: #7f77dd; background: #f5f4ff; color: #3c3489; }

    .arrow {
      font-size: 10px; color: #aaa;
      transition: transform 0.25s; display: inline-block;
    }
    .dropdown-btn.open .arrow { transform: rotate(180deg); color: #7f77dd; }

    .dropdown-menu {
      display: none;
      
      position: absolute;
      top: calc(100% + 6px);
      left: 0; right: 0;
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 12px;
      list-style: none;
      z-index: 9999;
      overflow-y: auto;
      max-height: 55vh;
      box-shadow: 0 16px 48px rgba(0,0,0,0.22);
      scrollbar-width: thin;
      scrollbar-color: #d0cef5 transparent;
    }
    
    .dropdown-menu::-webkit-scrollbar { width: 4px; }
    .dropdown-menu::-webkit-scrollbar-thumb { background: #d0cef5; border-radius: 10px; }
    .dropdown-menu.open { display: block; }
    .dropdown-menu.drop-up {
      top: auto;
      bottom: calc(50% + 6px);
    }

    .menu-item { border-bottom: 1px solid #f2f2f2; }
    .menu-item:last-child { border-bottom: none; }

    .menu-link {
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 14px; color: #333; font-size: 13.5px; font-weight: 500;
      cursor: pointer; background: transparent; border: none;
      width: 100%; text-align: left; transition: background 0.15s;
      outline: none;
    }
    .menu-link:hover   { background: #f7f7f7; }
    .menu-link.active  { background: #eeedfe; color: #3c3489; }
    .menu-link.focused {
      background: #e0deff; color: #3c3489;
      outline: 2px solid #7f77dd; outline-offset: -2px;
    }
    .menu-link.focused .item-arrow { color: #7f77dd; }

    .item-arrow { font-size: 10px; color: #bbb; transition: transform 0.2s; flex-shrink: 0; }
    .menu-link.active .item-arrow { transform: rotate(90deg); color: #7f77dd; }

    .sub-details {
      max-height: 0; overflow: hidden;
      transition: max-height 0.3s ease;
      background: #fafafa; border-top: 1px solid #f2f2f2;
    }
    .sub-details.open {
      max-height: 130px;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: #c4c0f0 transparent;
    }
    .sub-details.open::-webkit-scrollbar { width: 4px; }
    .sub-details.open::-webkit-scrollbar-thumb { background: #c4c0f0; border-radius: 10px; }
    

    .sub-inner { padding: 10px 14px; font-size: 12.5px; color: #666; line-height: 1.75;  }

    .badge {
      display: inline-block; font-size: 10px; font-weight: 700;
      padding: 2px 7px; border-radius: 5px; margin-left: 6px;
      background: #eeedfe; color: #3c3489; vertical-align: middle;
    }


    .add-on-cont{
      text-align: center;
      font-family: "playfair", sans-serif;
      font-weight: 500;
      font-size: 60px;
    }

    .hr-line{
      width: 400px;
      margin: auto;
      border-bottom: 1px solid black;

    }
    
    

   .add-on-img{
      box-shadow: 0 16px 48px rgba(0,0,0,0.22);
      margin: auto;
      width: 80%;
      height: 600px;
      
      display: block;
      object-fit: cover;
      
       
       
   }
    .add-on-txt-p{
       font-family: "didot",sans-serif;
       font-weight: 500;
       font-size: 20px;
       text-align: center;
      
       
       
       
    }

    .add-on-cont-flex{
      display: flex;
      gap: 30px;
      justify-content: center;
    }

    .jelly-mask-cont{
      position: relative;
      overflow: hidden;
      border-radius: 150px;
    }

    .jelly-mask-txt-cont{
      position: absolute;
      top: 70%;
      left: 50%;
      transform: translate(-50%,-50%);
      background-color: #c49a6c;
      width: 250px;
      text-align: center;
    }
    .add-on-jelly-mask-img{
      width:250px;
       height:100%;
       border-radius: 150px;
       background-position: center;
       box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
       transition: transform .5s ease;
       /*background-color: ;*/


    }

    .jelly-mask-cont:hover img{
      transform: scale(1.1);
      border-radius: 150px;
    }

    .add-on-img-link{
      text-decoration: none;
       color: #333;
      font-family: "didot",sans-serif;
      font-weight: 500;
      font-size: 20px;
    }

    .Book-now-cont-link{
      width: 500px;
      margin: auto;
      margin-bottom: 0.9em;
      
      
    }

    .book-me-link{
      text-decoration: none;
      background-color: #c49a6c;
      text-align: center;
      display: block;
      width: 250px;
      margin: auto;
      padding: 14px 18px;
      border-radius: 25px;
      font-family: "jost",sans-serif;
      font-weight: 500;
      color: white;
      font-size: 20px;
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    }

    .book-me-link:hover{
      border: 1px solid #c49a6c;
      background-color: white;
      color: black;
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    }

    .professional-cont-flex{
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .professional-txt-cont{
      width: 500px;
      background-color: black;
      color: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);

    }

    .p-highly-trained-txt{
      font-family: "jost",sans-serif;
      font-weight: 500;
      letter-spacing: 0.05em;
    }

    .p-cerfied-esthetician-txt{
      font-family: "playfair",sans-serif;
      font-weight: 500;
      font-size: 3rem;
      letter-spacing: 0.03em;
    }

    .p-trained-txt{
      font-family: "didot",sans-serif;
      font-weight: 500;
      font-size: 0.4em;
      letter-spacing: 0.03em;
    }

    .certified-img{
      border-radius: 10px;
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);

    }
    
    /* lash extesions css starts from here */

.eyelash-extension-cont-main{
  
  display: flex;
  justify-content: center;
}

.eye-lash-extension-abt-cont{
  display: flex;
  justify-content: center;
  position: relative;
  width: 500px;
  font-family: 'Cormorant Garamond', serif;
  color: white;
  background-color: #333;
  padding: 20px;
  
}

.lash-ext-img-cont{
  position: absolute;
  left: 80%;
  top: 90%;
}


    .comment-section-main-cont{
      background-color: #222;
      display: flex;
      flex-direction: column;
      color: white;
      justify-content: center;
      place-items: center;
      padding: 5em;
      gap: 40px;
      
    }

    .comment-section-flex-grid-cont{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      /*border: 1px solid white;*/
      text-align: center;
      padding: 0.9em;
      color: black;
    }
    
    .h2-clients-loving-txt{
      font-family: "raleway",sans-serif;
      font-weight: 500;
      font-size: 3em;
    }

    .comment-icon-txt{
      font-size: 2em;
    }

    .comment1-cont{
      width: 400px;
      /*border: 1px solid white;*/
      background-color: white;
      display: grid;
      place-items: center;
      border-radius: 5px;
      padding: 0.9em;
      font-family: "didot",sans-serif;
      font-weight: 500;
      font-size: 1.3em;
     
      
    }

    .p-comment-username{
      font-family: "jost",sans-serif;
      font-weight: 500;
    }
    .comment2-cont{
      width: 400px;
      /*border: 1px solid white;*/
      background-color: white;
      display: grid;
      place-items: center;
      border-radius: 5px;
      padding: 0.9em;
      font-family: "didot",sans-serif;
      font-weight: 500;
      font-size: 1.3em;
       
    }
    .comment3-cont{
      width: 400px;
      /*border: 1px solid white;*/
      background-color: white;
      height: 400px;
      display: grid;
      place-items: center;
      border-radius: 5px;
      padding: 0.9em;
      font-family: "didot",sans-serif;
      font-weight: 500;
      font-size: 1.3em;
    }

    
/* CSS */
.link-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--color-background-secondary);
  border: 0.5px solid var(--color-border-secondary);
  color: var(--color-text-primary);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  margin-left: 20rem;
}
.link-pill:hover {
  background: var(--color-background-tertiary);
  border-color: var(--color-border-primary);
  transform: translateY(-1px);
}
.link-pill svg { transition: transform 0.3s; }
.link-pill:hover svg { animation: wiggle 0.55s ease infinite; }

@keyframes wiggle {
  0%   { transform: translateX(0) rotate(0deg); }
  15%  { transform: translateX(4px) rotate(10deg); }
  30%  { transform: translateX(-2px) rotate(-6deg); }
  45%  { transform: translateX(4px) rotate(7deg); }
  60%  { transform: translateX(-1px) rotate(-4deg); }
  75%  { transform: translateX(3px) rotate(5deg); }
  100% { transform: translateX(0) rotate(0deg); }
}


.pages-link{
  text-decoration: none;
  color: #ccc;
  font-family: "jost",sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1rem;
  
}

.social-career-about-cont-flex{
  display: flex;
  justify-content: center;
}

.social-career-about-cont-grid{
  display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      /*border: 1px solid white;*/
      text-align: center;
      padding: 0.9em;
      color: black;
      place-items: center;
}

.social-cont-main{
  width: 400px;
  /*border: 1px solid black;*/
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  background-color: #222;
   color: white;
   border-radius: 5px;
}

.h3-social-txt,.h3-career-txt,.h3-about-txt{
  font-family: "roboto",sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
}

.p-follow-us,.p-be-part,.p-about{
  font-family: "playfair",sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 2.5rem;
  text-transform: uppercase;
}

.p-follow-us-link,.p-about-link{
  font-family: "roboto",sans-serif;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid white;
  padding: 10px 14px;
  display: block;
  width: 150px;
  margin: auto;
  border-radius: 50px ;
  color: white;
  
}

.p-follow-us-link:hover{
  color:black;
  background-color: white;
}

.p-about-link:hover{
  color:black;
  background-color: white;
}

.p-view-job-link{
  font-family: "roboto",sans-serif;
  font-weight: 500;
  text-decoration: none;
   display: block;
  width: 200px;
  margin: auto;
  border-radius: 50px ;
  border: 1px solid #333;
  padding: 10px 14px;
  color: black;
}

.p-view-job-link:hover{
  background-color: #333;
  color: white;
}

.career-cont-main{
  width: 400px;
  /*border: 1px solid black;*/
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
   gap: 30px;
   border-radius: 5px;
   box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.about-cont-main{
  width: 400px;
  /*border: 1px solid black;*/
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
   gap: 30px;
   background-color: #D2B48C;
   color: white;
   border-radius: 5px;
}

.main-footer-flex-cont{
  display: flex;
  justify-content: center;
  gap: 30px;
  background-color: black;
 color: white;
 padding: 0.9em;
}

.social-media-cont-main,.treatment-cont-main,
.aboutus-cont-main,.contact-cont-main,.exclusive-offers-cont-main{
  width: 15%;
  font-family: "roboto",sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.9em;
}

.facebook-cont-icon,.youtube-cont-icon,.instagram-cont-icon,
.tiktok-cont-icon{
  width: 50px;
  /*background-color: white;*/
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5em;
  margin: 0.5em;
  transition: transform 0.5s ease;
  
}

.all-links{
  text-decoration: none;
  color: white;
  text-transform: capitalize;
  
}

.all-links:hover{
  border-bottom: 1px solid white;
}

.fa-facebook{
 
 font-size: 30px;
  
 
}

.fa-facebook:hover{
  transform: scale(1.2);
}

.fa-youtube:hover{
  transform: scale(1.2);
}

.fa-instagram:hover{
  transform: scale(1.2);
}

.fa-tiktok:hover{
  transform: scale(1.2);
}

.fa-youtube{
 
 font-size: 30px;
 color: #ff0000;
  
}

.fa-instagram{
 font-size: 30px;
 
 
 color: #e1306c;
 
 
 
}

.fa-tiktok{

 font-size: 30px;
 color: white;
 
 
 
}

.kaylove-txt-cont{
  background-color: #c49a6c;
  text-align: center;
  position: sticky;
  font-family: "jost",sans-serif;
  font-weight: 500;
  padding: 12px 16px;
}
/* Outer animated wrapper */
#anim-box {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition:
    max-height 0.35s ease,
    opacity    0.35s ease,
    margin-top 0.35s ease;
    width: 200px;
}

/* Inner scrollable box */
#inner-box {
  max-height: 200px;
  overflow-y: auto;
  padding: 0.75rem 1rem;
  background: #f9f9f7;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.7;
  width: 200px;
  color: black;
}

/* Subtle scrollbar */
#inner-box::-webkit-scrollbar       { width: 6px; }
#inner-box::-webkit-scrollbar-track { background: transparent; }
#inner-box::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }



/*side link css*/





    /* ── Sticky tab sits on the left edge ── */
    .sticky-wrapper {
      position: fixed;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1000;
    }

    .tab {
      display: flex;
      align-items: center;
      width: max-content;
      transform: translateX(-100%);
      transition: transform 0.5s cubic-bezier(0.34, 1.1, 0.64, 1);
      cursor: pointer;
      user-select: none;
    }

    .tab.open {
      transform: translateX(0);
    }

    /* Label portion */
    .tab-body {
      height: 52px;
      background:tan;
      padding: 0 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-radius: 0 10px 10px 0;
      z-index: 9999;

    }

    .svg1{
      color: white;
    }

    .tab-body span {
      font-size: 15px;
      font-weight: 500;
      color: #042C53;
      white-space: nowrap;
      letter-spacing: 0.02em;
    }

    .tab-body i {
      font-size: 18px;
      color: #042C53;
    }

    /* Arrow trigger button */
    .trigger {
      position: absolute;
      left: 0;
      top: 0;
      width: 36px;
      height: 52px;
      background:rgba(0,0,0,0.2);
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
      border-radius: 0 10px 10px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: opacity 0.3s, transform 0.3s;
      z-index: 10;
      border: none;
      z-index: 9999;
    }

    .trigger i {
      font-size: 20px;
      color: #E6F1FB;
    }

    .trigger.hidden {
      opacity: 0;
      pointer-events: none;
      transform: translateX(-10px);
    }

    /* Page demo content */
    .demo-content {
      text-align: center;
      color: #555;
    }

    .demo-content h1 {
      font-size: 22px;
      margin-bottom: 8px;
      color: #222;
    }

    .demo-content p {
      font-size: 14px;
      color: #888;
    }

    .book-me-sticky{
      text-decoration: none;
      color:red;
     
    }

    .span-book-me-sticky{
      color: white;
    }








    
/*css for tablets*/

  @media (min-width:768px){
   
  

  

    .larkita-txt-cont{
      width: 100px;
    }
    
    .esthetician-service-home{
     
      color: black;
      font-size: 1em;
      /*background-color: ;*/
    }

    .nav-links{
       font-size: 0.5rem;
       
    }

    .quote-cont{
      width: 100%;
    }

    .h3-best-service-txt{
      border-bottom: 1px solid black;
     
      width: 200px;
    }

    .our-best-service-cont{
      border: none;
    }

    .add-on-txt-p{
      text-align: center;
      width: 800px;
      margin: auto;
    }

    .add-on-cont-flex{
      width: 100%;
      margin: auto;
      margin: 5px;
    }

    .jelly-mask-cont{
      
      border-radius: 150px;
      width: 250px;
     
    }

    .add-on-jelly-mask-img{
       width:250px;
      
       border-radius: 0;
       object-fit: cover;

    }

    .professional-cont-flex{
      width: 100%;
      display: flex;
      flex-direction: column;
      
    }

    .professional-txt-cont,.certified-img-cont{
       margin-left: 20px;
    }

    .comment-section-main-cont{
      width: 100%;
    }

    


    .comment2-cont,.comment1-cont,.comment3-cont{
      width: 300px;
      
      font-size: 1em;
    }

    .social-cont-main,.career-cont-main,.about-cont-main{
      width: 300px;
      
      
    }

    .p-be-part,.p-follow-us,.p-about{
      font-size: 1rem;
    }

 
    /*.main-footer-flex-cont{
      
    }*/

    .all-links{
     
      font-size: 0.8rem;
    }

    .social-media-cont-main,.treatment-cont-main,.contact-cont-main,.exclusive-offers-cont-main{
      
      width: 300px;
    }
    

  }

   @media (min-width:800px){

    .esthetician-service-home{
      font-size: 0.9rem;
    }

    .nav-anchor-link{
      font-size: 0.5rem !important;
      
    }

    .clients-loving-txt-cont{
      width: 100%;
    }

    .h2-clients-loving-txt{
      font-size: 2em;
    }

    .comment1-cont,.comment2-cont,.comment3-cont{
      width: 100%;
    }

        
   body,html{
    overflow-x: hidden;
    box-sizing: border-box;
     margin: 2px;
    
  }

  .social-cont-main,.career-cont-main,.about-cont-main{
    width: 100%;
  }

   }




    /*css media querry start from here */


  @media (max-width:768px)  {
    
   body,html{
    overflow-x: hidden;
    box-sizing: border-box;
     margin: 2px;
    
  }

  .quote-cont{
    width: 100%;
    border-radius: 0;
   
  }

  .our-best-service-cont{
    width: 100%;
  }

  .card{
    width: 100%;
  }

  .add-on-cont{
    font-size: 2.5em;
    line-height: 3rem;
  }



  .hr-line{
    display: none;
  }

  
  .add-on-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  }

  .add-on-txt-p{
    width: 100%;
    text-align: center;
  
  }
  

  .add-on-cont-flex{
    display: grid;
  }

  .jelly-mask-cont{
    width: 250px;
    
  }

  .add-on-jelly-mask-img{
   width:250px;
       height:400px;
       border-radius: 0;
       background-position: center;
       box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
       transition: transform .5s ease;
       object-fit: cover;
   
  }

  .jelly-mask-txt-cont{
    font-size: 0.9em;
    text-transform: uppercase;
  }

  .Book-now-cont-link{
   width: 100%;
  }

  .professional-cont-flex{
    display: flex;
    flex-direction: column;
    width: 100%;
    
  }

  .professional-txt-cont{
    width: 100%;
  }

  .certified-img-cont{
    width: 100%;
  }

  .certified-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .comment-section-flex-grid-cont{
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .link-pill{
    width: 100%;
    margin: auto;
  }

  .social-career-about-cont-flex{
    
    width: 100%;
  }

  .social-career-about-cont-grid{
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .career-cont-main{
    box-shadow: none;
  }

  .main-footer-flex-cont{
    width: 100%;
    display: grid;
   gap: 0;
  }


.social-media-cont-main{
  width: 100%;
}

.treatment-cont-main{
  width: 100%;
}

.aboutus-cont-main,.contact-cont-main,.exclusive-offers-cont-main{
  width: 100%;
 
}


.eye-lash-extension-abt-cont{
  width: 100%;
  height: 250px;
}

.lash-ext-img-cont{
  left: 40%;
  margin-bottom: 50px;
  top: 80%;
}

.lash-ext-img{
  border-radius: 5px;
}

  }
