@font-face {
  font-family: 'Times';
  src: url('../fonts/times.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  box-sizing: border-box;
}


*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}


body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  background-color: #fff;
  padding: 0;
  margin: 0;
}

p  {
   font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}


h1, h2, h3, h4, h5, h6,
.bebas, .title, .heading {
  font-family: 'BebasNeuePro-Regular', sans-serif;
  font-weight: normal;
  letter-spacing: 0.5px;
  margin-bottom: 0.5em;
}


h1.bold, .bebas-bold, .title-bold {
  font-family: 'BebasNeuePro-Bold', sans-serif;
  font-weight: bold;
}


a {
  text-decoration: none;
  color: inherit;
}


ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
    transition:all .3s;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: -1px 1px 9px 1px #706d663d;
}

header.sticky  {
    position:fixed;
    left:0;
    
}

header .top-header{
    background: #1c1c1c;
    padding: 10px 0;
}

header .top-header p {
    text-align:center;
    color:#fff;
}


header.sticky .top-header{
    display:none;
}

header nav {
      background-color: #fff;
      box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
      padding: 0.75rem 1rem;
      position: relative;
      z-index: 100;
    }
   
  header  .logo {
          font-weight: 700;
    font-size: 36px;
    color: #222;
    user-select: none;
    font-family: 'BebasNeuePro-Regular';
    text-transform: uppercase;
    letter-spacing: 6px;
    }
    /* Menu styling */
 header   .menu {
         display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    }
 header .menu li a {
        color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.3rem 0.5rem;
    transition: color 0.3s ease;
    display: block;
    text-transform: uppercase;
    font-size: 18px;
    }
 header   .menu li a:hover {
      color: #000;
    }
    /* Hamburger button */
  header  .hamburger {
      display: none;
          flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 43px;
    height: 43px;
    cursor: pointer;
    user-select: none;
    background: #000;
    padding: 7px;
    border-radius: 2px;
    }
  header  .hamburger span {
      display: block;
      height: 3px;
      background-color: #fff;
      border-radius: 2px;
      transition: all 0.4s ease;
      transform-origin: center;
    }
    /* Hamburger animation when open */
   header .hamburger.open span:nth-child(1) {
     transform: rotate(45deg) translate(5px, 7px);
    }
  header  .hamburger.open span:nth-child(2) {
      opacity: 0;
    }
  header  .hamburger.open span:nth-child(3) {
     transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Mobile menu hidden by default */
    
    
header .mian-menu {
        background: #fff;
    padding: 10px 0;
}  


.mian-menu .logo a {
    display: flex;
    align-items: center;
}

.mian-menu .logo a h3 {
  margin: 0;
    text-align: center;
    line-height: 18px;
    font-family: 'Times', serif ;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 25px;
        margin-top: 6px;
}


.mian-menu .logo a h3 span{
        font-size: 15px;
        letter-spacing: 1.4px;
}


.main-footer .logo a {
    display: flex;
    align-items: center;
}


.main-footer .logo a h3 {
  margin: 0;
    text-align: center;
    line-height: 18px;
    font-family: 'Times', serif ;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 25px;
        margin-top: 6px;
}



.main-footer  .logo a h3 span{
             font-size: 15px;
        letter-spacing: 1.4px;
}


    
.pulse-button {
        position: relative;
        background-color: #1c1c1c;
    color: #fff;
    font-weight: bold;
    padding: 12px 25px;
    font-family: 'BebasNeuePro-Regular', sans-serif;
    font-size: 22px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    overflow: visible;
    letter-spacing: .14em;
    transition: all .3s;
  }
  
  .pulse-button:hover {
      background:#000;
  }

  /* The pulse effect wrapper */
  .pulse-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background-color: #82b440;
    border-radius: 12px;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
    animation: pulse-wave 2s ease-out infinite;
    z-index: -1;
  }

  @keyframes pulse-wave {
    0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.7;
    }
    100% {
      transform: translate(-50%, -50%) scale(1.8);
      opacity: 0;
    }
  }
  
  
  
  
  
  /*hero-sec*/
  
  
  .mian-hero {
      background:#1c1c1c;
      overflow:hidden;
      padding:50px 0;
      position:relative;
  }
  
  
  
  
 .mian-hero .main-ttl {
      padding-left: 15%;
  }
  
 .mian-hero .main-ttl h1 {
       font-size: 127px;
    line-height: 86px;
    color: #fff;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 9px;
    display:inline-block;
  }
  
   .mian-hero .main-ttl h1 sup {
       margin-left:10px;
   }
   
  .mian-hero .main-ttl .end-letter {
      display: block;
    text-align: end;
   }
  
  .mian-hero .main-ttl h1 span {
       font-weight: 400;
    font-style: italic;
    font-size: 51px;
    letter-spacing: 1px;
  }
  
  
  .mian-hero .main-ttl p{
    font-size: 22px;
    width: 73%;
    line-height: 28px;
    color:#fff;
  }
  
  
 .banner-hex.float-1 {
       position: absolute;
    top: -48px;
    width: 206px;
    height: 231px;
    left: 17px;
 } 
 
 
 .banner-hex.float-2 {
  position: absolute;
    top: -47px;
    left: 235px;
    width: 150px;
    height: 180px;
 }
 
 .banner-hex.float-5 {
   position: absolute;
    bottom: 119px;
    left: 167px;
    width: 181px;
    height: 212px;
}  
  
  
.banner-hex.float-3 {
       position: absolute;
    bottom: -47px;
    left: 235px;
    width: 150px;
    height: 180px;
}  
  
.banner-hex.float-4 {
       position: absolute;
    bottom: -48px;
    width: 206px;
    height: 231px;
    left: 17px;
}  

.mian-hero .col-md-6.position-relative {
    margin-left: -20px;
    text-align: right;
    justify-content: end;
    display: flex;
}


.banner-hex:hover {
    transform:scale(1.06);
}


  
 .mian-hero .main-ttl a {
        color: #fff;
    background: transparent;
    padding: 15px 20px;
    display: inline-block;
    margin-top: 43px;
    border-radius: 10px;
    font-weight: 600;
    border: 1px solid #fff;
        margin-right: 15px;
        transition: all .3s;
  }
  
  .mian-hero .main-ttl a:hover {
      background:#fff;
      color:#1c1c1c;
  }
  
  .mian-hero .main-ttl a.boxx {
      background:#fff;
      color:#1c1c1c;
  }
  
  .mian-hero .main-ttl a.boxx:hover {
      background: transparent;
      color:#fff;
  }
  
 footer {
      background: #fff;
    padding: 80px 0 40px 0;
    color:#000;
  }
  
  
footer .logo {
    font-weight: 700;
    font-size: 36px;
    color: #000;
    user-select: none;
    font-family: 'BebasNeuePro-Regular';
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom:25px;
}



footer .about-ft p{
    color: #000;
    font-size: 15px;
}

footer .about-ft {
    padding-right: 40px;
}

footer .footer-links-coulnms {
        columns: 3;
}

footer .footer-links-coulnms li:nth-child(6), footer .footer-links-coulnms li:nth-child(10)  {
      break-before: column;
}

footer .footer-links-coulnms li{
    color:#000; 
        font-size: 15px;
}


footer .footer-links-coulnms-non {
    margin-top:50px;
}

footer  .footer-links-coulnms-non li {
    color:#000; 
        font-size: 15px;
}

footer .imp-links {
    margin-top: 20px;
}


footer .imp-links h4{
    font-size: 21px;
    line-height: 27px;
    font-family: 'Roboto';
    font-weight: 700;
    color: #000;
    margin-bottom:20px;
}

.copyright p {
    color:#000;
}

.copyright .social-icons{
        display: flex;
    margin-top: 20px;
    gap:25px;
}

.copyright .social-icons a {
        color: #000;
    font-size: 26px;
}


.main-footer{
    border-bottom: 2px solid #000;
    padding-bottom: 30px;
}

.btm-footer {
    margin-top:30px;
}

.btm-footer img{
        width: 35%;
    margin: 0 auto;
    filter: grayscale(1) brightness(2);
}

.about-sec {
    padding:100px 0;
}


.about-sec p{
    font-size: 21px;
    line-height: 27px;
    margin: 20px 0;
}


.your-self {
    padding:80px 0;
    background:#1c1c1c;
}

.your-self h2{
    font-size: 103px;
    line-height: 109px;
    color:#fff;
}

.your-self h2 span {
    font-weight: 700;
    font-style: italic;
}


.your-self .marquee-wrapper {
      overflow: hidden;
      position: relative;
      width: 100%;
      padding: 20px 0;
    }

 .your-self .marquee {
      display: flex;
      width: max-content;
      animation: marquee 20s linear infinite;
    }

  .your-self  .marquee img {
    object-fit: cover;
    height: 100%;
    }

    @keyframes marquee {
      from {
        transform: translateX(0%);
      }
      to {
        transform: translateX(-50%);
      }
    }

  
 .your-self   .marquee-content {
      display: flex;
    }

  .your-self  .marquee-content-clone {
      display: flex;
    }
    
.your-self .image-box {
  position: relative;
      width: 320px;
    margin:0 10px;
}


.your-self .caption {
 position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 36px;
    font-weight: 700;
    font-family: 'BebasNeuePro-Regular';
    text-transform: uppercase;
    letter-spacing: 5px;
}



.your-self h3{
        font-size: 44px;
    line-height: 54px;
    margin-top: 70px;
    color: #fff;
}




.every-tat {
    padding:80px 0;
}


.every-tat .inn-evr{
   background-color:#f8f6f2;
   padding:80px 120px;
   border-radius:30px;
}

.inn-evr h2{
    font-size: 103px;
    line-height: 109px;
}

.inn-evr h2 span{
    font-weight: 700;
    font-style: italic;
}

.inn-evr p{
        font-size: 21px;
    line-height: 27px;
    width: 55%;
}




.sing-pp {
    background: #1c1c1c;
    padding: 10px 5px;
    border-radius: 20px;
}

.sing-pp img {
   border-radius: 20px;
    height:510px;
    object-fit:cover
}


.sing-pp a{
    color: #fff;
    background: #1c1c1c;
    padding: 13px;
    margin-top: 4px;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    width: 70%;
    justify-content: center;
    margin: 18px auto 10px auto;
    border: 1px solid #fff;
    transition: all .3s;
}

.sing-pp a:hover {
    background: #fff;
    color: #1c1c1c;
}

.portfolio .pulse-button{
    display: flex;
    width: 280px;
    margin: 50px auto 0 auto;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px 0;
}
    
    
.story-carousel .sing-pp a{
    padding: 13px;
    width: 47%;
    
}  

.story-carousel .sing-pp img {
    height: 400px;
    width:450px;
    margin:0 auto;
}



.sing-callt {
    background: #f8f6f2;
    padding: 10px 30px;
    border-radius: 30px;
}

.sing-callt img{
        object-position: center;
    width: 100%;
    transform: scaleX(1.15);
    object-fit: cover;
    height: 305px;

}


.sing-callt h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    padding:15px 0;
}

.sing-callt p {
    font-size: 19px;
    line-height: 24px;
    padding-bottom: 50px;
}


.bg-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.bg-section .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.bg-section .content {
      position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
    font-family: sans-serif;
    width: 100%;
}

.bg-section .content h2{
    font-size: 155px;
    line-height: 140px;
    font-weight: 700;
}

.start-wid {
    padding:80px 0;
}

.content .pulse-button {
    display: flex;
    width: 280px;
    margin: 50px auto 0 auto;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px 0;
}

.testimonials {
        background: #1c1c1c;
    padding: 100px 0;
    color: #fff;
}

.testi-slide h4 {
    font-size: 50px;
    font-weight:700;
    text-align:center;
}


.testi-slide .item {
    width: 60%;
    margin: 0 auto;
}

.smooth-half-moon {
      width: 100%;
    height: 100px;
    background: #1c1c1c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    clip-path: url(#halfMoonClip);
    margin-top: -56px;
}

.every-tat.imgs .inn-evr {
        padding: 80px 90px;
}

.every-tat.imgs img {
    border-radius:15px;
}

.every-tat.imgs .bday {
       padding-left: 30px;
    
}

.every-tat.imgs .bday h2{
        font-size: 110px;
    line-height: 110px;
}

.every-tat.imgs .inn-evr p {
    font-size: 21px;
    line-height: 27px;
    width: 77%;
}


.blogs {
    background:#f8f6f2;
    padding:80px 0;
}

.svg-separator {
    overflow:hidden;
}

.svg-separator svg{
        width: 107%;
    margin-left: -17px;
    display: block; 
    height: 80px;
}


.blogs h2{
    font-size: 103px;
    line-height: 109px;
}

.blogs h2 span {
     font-weight: 700;
    font-style: italic;
}

.blogs h3{
    font-size:44px;
    line-height:54px;
    font-weight:700;
}


.blogs ul li a{
        font-size: 21px;
    line-height: 27px;
    text-decoration: underline;
   
}

.blogs ul li {
     padding-bottom: 20px;
}



.blogs img {
          object-fit: cover;
    height: 100%;
}


.dtls-blog {
    padding-left:30px;
}


.dtls-blog .blog-btn{
        color: #fff;
    background: #1c1c1c;
    padding: 17px;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    width: 32%;
    justify-content: center;
    margin-top: 15px;
}



.bday .pulse-button{
        display: inline-block;
    margin-top: 24px;
    overflow: hidden;
    padding: 15px 60px;
}


/*cta1*/

.cta-section-2 {
  background-color: #000;
  margin-top:80px;
}

.cta-left {
  background-color: #82b440;
  font-family: 'Bebas Neue', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  height: 100%;
}

.cta-left h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-left p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-left .cta-btn {
  background-color: #000;
  color: #fff;
  padding: 0.7rem 1.8rem;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 5px;
  transition: 0.3s;
}

.cta-left .cta-btn:hover {
  background-color: #111;
}

.cta-right {
  background-image: url('https://images.unsplash.com/photo-1570032257805-c206c5d6c3aa'); /* replace with tattoo image */
  background-size: cover;
  background-position: center;
}


.cta-section-3 {
  background-color: #000;
  font-family: 'BebasNeuePro-Regular';
}

.border-box {
  border: 3px solid #fff;
  border-radius: 20px;
}

.cta-section-3 h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.cta-section-3 p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-section-3 .cta-btn {
      background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 50px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 9px;
    transition: 0.3s;
}

.cta-section-3 .cta-btn:hover {
  background-color: #fff;
  color: #000;
}

.pb-80 {
    padding-bottom:80px;
}

.cta-section-1 {
  background-color: #000;
    background-image: linear-gradient(to right, rgb(28 28 28), rgba(0, 0, 0, 0.9));
}

.cta-section-1 .cta-title {
  font-family: 'BebasNeuePro-Regular';
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.cta-section-1 .cta-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.cta-section-1 .cta-btn {
      background-color: #fff;
    color: #000000;
    padding: 0.8rem 2rem;
    font-weight: bold;
    border-radius: 10px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    border:1px solid #fff;
}

.cta-section-1 .cta-btn:hover {
  background-color: transparent;
  border:1px solid #fff;
  color:#fff;
}


.cta-section-4 {
  background-color: #fff;
  font-family: 'BebasNeuePro-Regular';
  color: #000;
}

.cta-box {
  border-left: 6px solid #1c1c1c;
  padding: 40px;
  background: #f9f9f9;
  border-radius: 10px;
  text-align: left;
  border-right: 6px solid #1c1c1c;
}

.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-box .cta-btn {
  background-color: #1c1c1c;
  color: #fff;
  padding: 0.7rem 1.8rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  letter-spacing: 2px;
}

.cta-box .cta-btn:hover {
  background-color: #000;
}

.cta-section-4 {
    padding:80px 0;
}

.cta-section-6 {
  background-color: #f5f5f5;
  font-family: 'BebasNeuePro-Regular';
  color: #000;
}

.cta-title {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.cta-subtext {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.cta-btn-rounded {
      padding: 0.6rem 1.5rem;
    font-size: 25px;
    color: #fff;
    background-color: #1c1c1c;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease;
    display: inline-block;
    letter-spacing: 2px;
}

.cta-btn-rounded:hover {
  background-color: #000;
  color: #fff;
}

.google-review-badge, .hygiene-badge {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    transform: translateY(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    padding: 8px;
    z-index: 1000;
    margin-left: 10px;
    width: 80px;
}

.google-review-badge {
    top: 58%;
}

.hygiene-badge {
    top: 77%;
}

.google-review-badge img, .hygiene-badge img {
    width: 30px;
    height: auto;
    display: block;
}

.google-review-badge p, .hygiene-badge p {
    text-align: center;
    padding: 7px 0px;
    font-size: 13px;
    margin: 0;
}

.google-review-badge h2, .hygiene-badge h2 {
    font-size: 20px;
    margin: 0;
    font-weight:700;
}


.menu-form {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}


 a.locate{
        border: 2px solid #000;
    padding: 4px 20px;
    font-size: 19px;
    transition: all .3s;
}

 a.locate:hover {
     background-color:#000;
     color:#fff;
 }

.menu-form svg{
       height: 35px;
    width: 35px;
}

.menu-form i{
        font-size: 20px;
    margin-left: 6px;
}



 #popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    /* Popup Box */
   #popup-overlay  #popup-box {
       background: #fff;
    padding: 35px 30px 20px 30px;
    border-radius: 7px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    
    }

   #popup-overlay  #popup-box h2 {
      font-weight: bold;
      margin-bottom:5px;
    }

    #popup-overlay #popup-box .close-btn {
        position: absolute;
    border: 1px solid #000;
    font-size: 19px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin:0;
    top: 15px;
    right: 24px;
    color: #fff;
    background: #000;
    font-weight: 300;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    align-items: center;
    transition:all .3s;
    }
    
    
    #popup-overlay #popup-box .close-btn:hover {
        background:transparent;
        color:#000;
    }
    

    #popup-overlay .form-control,#popup-overlay .form-select {
      border: none;
      border-bottom: 1px solid #000;
      border-radius: 0;
    }
    
    #popup-overlay .form-control:focus, #popup-overlay .form-select:focus {
        box-shadow:none
    }

   #popup-overlay  .submit-btn {
      background-color: #1c1c1c;
      border:1px solid #1c1c1c;
      color: #fff;
      border-radius: 12px;
      padding: 12px;
      width: 100%;
      font-weight: bold;
      margin-top: 20px;
      transition: all .3s;
    }
    
    #popup-overlay  .submit-btn:hover {
        background-color:#fff;
        color:#1c1c1c;
    }

   #popup-overlay  label {
      font-weight: 500;
      font-size: 14px;
      margin-bottom: 10px;
    }
    
    
    
    .paralax {
        padding:80px 0 0 0;
    }
    
    .tatwcon {
        position:relative;
    }
    
    .tatwcon .contnet-only {
        position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 80px;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:#0000008a;
    }
    
    .tatwcon .contnet-only h2{
            font-size: 60px;
    line-height: 72px;
    font-weight: 700;
    letter-spacing: 4px;
    }
    
   .tatwcon .contnet-only h4 {
            font-size: 30px;
    line-height: 39px;
    }
    
    
    .tatwcon .contnet-only a{
        position: relative;
    background-color: #ffffff;
    color: #000000;
    font-weight: bold;
    padding: 9px 25px;
    font-family: 'BebasNeuePro-Regular', sans-serif;
    font-size: 22px;
    border: 1px solid #fff;
    border-radius: 13px;
    cursor: pointer;
    overflow: visible;
    letter-spacing: .14em;
    transition: all .3s;
    display: block;
    width: 202px;
    margin-top: 30px;
    text-align: center;
    }
    
    .tatwcon .contnet-only a:hover {
        background-color:transparent;
        color:#fff;
    }
    
#right-col {
  position: relative;
  overflow: hidden;
}


.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 98%;
  height: 150%; 
  background-image: url('../img/img-tr-2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(0);
  z-index: -1;
}

.paralax-slide {
    margin-top:15px;
}

.paralax-slide .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none; /* Allows clicks to pass through if needed */
}

.paralax-slide .owl-prev, .paralax-slide .owl-next {
  pointer-events: all; /* Re-enable click on buttons */
  background: rgba(0, 0, 0, 0.5); /* Optional: style */
  color: white;
  border: none;
  padding: 10px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}


.paralax-slide .owl-nav span{
    color: #fff;
    font-size: 90px;
}

.portfolio.story {
    padding:80px 0;
}


.paralax-slide.owl-theme .owl-nav [class*=owl-]:hover {
    background:transparent;
}


@media (max-width: 600px) {
  
 .hum-menu {
    text-align: right !important;
    display: flex;
    justify-content: flex-end;
  }

body .masonry__item {
    margin: 20px 10px;
    overflow: hidden;
}

.mian-menu .logo a h3 {
        font-size: 19px;
}

.mian-menu .logo a h3 span {
        font-size: 11px;
}

header .top-header p {
    font-size: 13px;
}

footer, .about-section, main {
    overflow:hidden;
}

.phone-wp {
    display:none;
}

.banner-hex.float-1, .banner-hex.float-2, .banner-hex.float-3, .banner-hex.float-4, .banner-hex.float-5 {
    display:none;
}

.mian-hero .col-md-6.position-relative {
            margin: 0;
        text-align: center;
        justify-content: center;
}

body .banner-hex {
    width: 356px;
    height: 395px; 
    
    
}

.menu-form {
           position: absolute;
        top: 15px;
        right: 83px;
}

.mian-menu .row.align-items-center {
    position:relative;
}
  .mian-hero .main-ttl {
            padding: 0 20px 50px 20px;
        display: flex ;
        flex-direction: column;
        align-items: center;
        justify-content: center;
  }
  
  
 body .about-section:before {
    right: -72px;
    top: 86px;
  }
  
 body  .section-heading {
    font-size: 40px;
    margin-bottom: 35px;
}

.testimonial-carousel.owl-carousel .owl-item img {
    height: 360px;
    object-fit: cover;
    margin-bottom: 40px;
}
  
.counter-box {
        margin: 30px 0;
}  
  
body .counter-section {
    padding:80px 0;
}  
  
header .menu {
        position: absolute;
        top: 76px;
        right: 1rem;
        left: 1rem;
        background: #fff;
        flex-direction: column;
        box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
        border-radius: 8px;
        padding: 1rem 0;
        display: none;
      }
    header  .menu.show {
        display: flex;
      }
    header  .menu li a {
        padding: 10px 15px;
        border-bottom: 1px solid #eee;
      }
    header  .menu li:last-child a {
        border-bottom: none;
      }
    header  .hamburger {
        display: flex;
        
      }  
      
      .mian-hero .main-ttl p {
          width:100%;
      }
      
      .mian-hero .main-ttl h1 {
          font-size: 77px;
        line-height: 75px;
      }
      
      .mian-hero .main-ttl a.boxx {
          margin:0;
      }
      
      .hero-btn-box {
          
                  justify-content: center;
      }
      

 
     .your-self h2 {
        font-size:55px;
        line-height:58px;
    }  
      
    .tatwcon img{
       height: 465px;
       object-fit: cover;
    }  
      
    .tatwcon .contnet-only {
        padding: 35px;
    }  
      
    .parallax-bg {
    left: 12px;
    width: 94%;
    }  
      
    .every-tat .inn-evr {
        padding: 30px 25px;
    }  
    
    
    .inn-evr h2 {
         font-size:55px;
        line-height:58px;
    }
      
      
    .about-sec {
    padding: 60px 0;
    }

.your-self h3 {
        font-size: 35px;
}

.inn-evr p {
    width: 100%;
}
 
 
.sing-pp a {
    width:81%;
}      
 
.every-tat.imgs .bday h2, .blogs h2 {
    font-size:55px;
        line-height:58px;
} 


.every-tat.imgs .inn-evr {
    padding: 30px 20px;
}
  
.every-tat.imgs .bday {
   padding: 30px 10px;
}  

.every-tat.imgs .inn-evr p {
    width: 100%;
}
 
.bg-section .content h2 {
    font-size: 106px;
    line-height: 107px;
   
}

.bg-section {
    height: 65vh;
   
}

.testi-slide .item {
    width: 95%;
}
  
  
.dtls-blog .blog-btn {
        width: 48%;
}   

header .menu {
        gap: 2px;
}


.locate {
    display:none;
}


.google-review-badge, .hygiene-badge {
    flex-direction: row;
    box-shadow: none;
    padding: 8px;
    width: 50%;
    bottom: 0;
    top: auto !important;
    border-radius: 0;
    margin: 0;
    transform: translate(0);
    gap: 10px;
}


.google-review-badge {
    left:0;
     border-right: 1px solid #000;
}
.hygiene-badge {
    right:0;
    left:auto;
}

.google-review-badge p, .hygiene-badge p {
            padding: 0;
        font-size: 11px;
        line-height: 13px;
}

.mian-menu .logo img {
    width:65px;
}

.dtls-blog {
    padding-left:0;
    padding-top:30px;
}

.testimonials {
    padding: 80px 0 30px 0;
}

.blogs {
    padding: 40px 0 80px 0;
}


.mian-hero img {
    height: 360px;
    border-radius: 20px 20px 0 0;
}


.mian-hero .main-ttl a {
    color: #fff;
    background: transparent;
    padding: 10px;
    display: inline-block;
    margin-top: 43px;
    border-radius: 10px;
    font-weight: 600;
    border: 1px solid #fff;
    margin-right:0;
    transition: all .3s;
    font-size: 13px;
}

.hero-btn-box {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

footer .footer-links-coulnms-non {
        margin-top: 19px;
}

footer .copyright {
    padding-top: 30px;
}
 
.btm-footer img {
    width: 97%;
    margin-bottom: 25px;
} 
 
  
}



.banner-hex {
  width: 400px;                  
  height: 450px;   
  transition:all ease .3s;
  overflow: hidden;
  clip-path: polygon(
    50% 0%,    
    100% 25%,  /* top right */
    100% 75%,  /* bottom right */
    50% 100%,  /* bottom middle */
    0% 75%,    /* bottom left */
    0% 25%     /* top left */
  );
}

.banner-hex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hexa-year {
    width: 370px;                  
  height: 420px;   
  margin: 0 auto;
  overflow: hidden;
  clip-path: polygon(
    50% 0%,    
    100% 25%,  /* top right */
    100% 75%,  /* bottom right */
    50% 100%,  /* bottom middle */
    0% 75%,    /* bottom left */
    0% 25%     /* top left */
  );
}

.hexa-year img {
    width: 100%;
  height: 100%;
  object-fit: cover;
}


.paralax-slide.owl-carousel .item .para-octa{
    width: 350px;                  
  height: 400px;   
  margin: 0 auto;
  overflow: hidden;
  clip-path: polygon(
    50% 0%,    
    100% 25%,  /* top right */
    100% 75%,  /* bottom right */
    50% 100%,  /* bottom middle */
    0% 75%,    /* bottom left */
    0% 25%     /* top left */
  );
}

.paralax-slide.owl-carousel .item .para-octa img {
    object-fit:cover
}


.portfolio.story .sing-pp .hexa-pp{
     width: 350px;                  
  height: 400px;   
  margin: 0 auto;
  overflow: hidden;
  clip-path: polygon(
    50% 0%,    
    100% 25%,  /* top right */
    100% 75%,  /* bottom right */
    50% 100%,  /* bottom middle */
    0% 75%,    /* bottom left */
    0% 25%     /* top left */
  );
}


.portfolio .sing-pp .hexa-pp{
     width: 380px;                  
  height: 430px;   
  margin: 0 auto;
  overflow: hidden;
  clip-path: polygon(
    50% 0%,    
    100% 25%,  /* top right */
    100% 75%,  /* bottom right */
    50% 100%,  /* bottom middle */
    0% 75%,    /* bottom left */
    0% 25%     /* top left */
  );
}


.imgd-hex {
     width: 450px;                  
  height: 500px;   
  margin: 0 auto;
  overflow: hidden;
  clip-path: polygon(
    50% 0%,    
    100% 25%,  /* top right */
    100% 75%,  /* bottom right */
    50% 100%,  /* bottom middle */
    0% 75%,    /* bottom left */
    0% 25%     /* top left */
  );
}


.about-section {
  background: #fff;
  color: #1c1c1c;
  padding: 70px 0;
  position:relative;
}

/* Layout */
.about-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Year Badge */
.year-badge {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  background: #1c1c1c;
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.year-badge span {
  font-weight: 800;
}

/* Text */
.about-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-content h2 span {
  border-bottom: 3px solid #1c1c1c;
}
.about-content p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #333;
}
.highlight {
  font-weight: 600;
  color: #1c1c1c;
}

/* Button */
.cta-btn {
  padding: 14px 34px;
  font-size: 1rem;
  border: 2px solid #1c1c1c;
  border-radius: 50px;
  background: #1c1c1c;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}
.cta-btn:hover {
  background: #fff;
  color: #1c1c1c;
}

/* Image Card */
.about-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.about-card img {
  width: 100%;
  display: block;
  border-radius: 20px;
  transition: transform 0.4s ease;
}
.about-card:hover img {
  transform: scale(1.05);
}

/* Image Badge */
.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #1c1c1c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 950px) {
  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-content h2 {
    font-size: 2.2rem;
  }
  .about-card {
    margin-top: 40px;
  }
  .image-badge {
    left: 50%;
    transform: translateX(-50%);
  }
}


.about-section:before {
   content: "";
   background: url(../img/float-icon.png);
   height: 53%;
   position: absolute;
   width: 92px;
   right: 72px;
   top: 10px;
   background-repeat: no-repeat;
   background-size: contain;
   z-index: 1;

   transform-origin: center center;

   /* Spin animation */
   animation: spinY 5s linear infinite;
}

@keyframes spinY {
   from {
      transform: rotateZ(332deg) rotateY(0deg);
   }
   to {
      transform: rotateZ(332deg) rotateY(360deg);
   }
}


.testimonial-section {
    padding:80px 0;
}

.testimonial-section .section-heading {
    color:#000;
}


/* Card Styling */
.testimonial-card {
  background: rgb(28 28 28);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(12px);
  margin: 15px;
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-8px);
}

/* Image */
.testimonial-carousel.testimonial-img {
  width: 100%;
  border-radius: 15px;
  border: 3px solid #fff;
  object-fit: cover;
}

/* Content */
.testimonial-content {
  color: #fff;
  padding: 15px;
  position: relative;
}
.testimonial-content p {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-content h4 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 700;
}
.testimonial-content span {
  font-size: 0.95rem;
  color: #aaa;
}

/* Quote Icon */
.testimonial-carousel .quote-icon {
  font-size: 3.5rem;
  font-weight: bold;
  color: rgba(255,255,255,0.1);
  position: absolute;
  top: -15px;
  left: -10px;
}

/* Owl Carousel Nav */
.testimonial-carousel .owl-nav button {
  background: #000 !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-size: 1.5rem !important;
  transition: 0.3s;
}
.testimonial-carousel .owl-nav button:hover {
  background: transparent !important;
  border: 2px solid #000 !important;
  color: #000 !important;
}
.testimonial-carousel .owl-dots .owl-dot span {
  background: #fff !important;
  opacity: 0.4;
}
.testimonial-carousel .owl-dots .owl-dot.active span {
  opacity: 1;
}


.testimonial-section h2 {
    color: #fff;
}

.portfolio.pb-80 {
    padding-top:80px;
}



.story-carousel .sing-pp {
     background: transparent; 
    padding: 10px 5px;
    border-radius: 4px;
    border: 1px solid #00000036;
    box-shadow: 0px 1px 3px 3px #cccccc3d;
    margin-bottom: 20px;

}



.story-carousel .sing-pp h3{
    text-align: center;
    margin: 15px 0;
    font-weight: 600;
}

.conts-sers {
    padding: 15px 21px;
    text-align: center;
}

.conts-sers p{
    text-align:center;
    min-height:156px;
}


.tatwcon .contnet-only ul {
        list-style: disc;
    margin-left: 30px;
    padding: 10px 0;
}


.tattoo-team-block {
    background: #1c1c1c;
    padding: 80px 0;
    color: #fff;
    text-align: center;
  }

  .section-heading {
    font-size: 58px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 60px;
    letter-spacing: 3px;
    position: relative;
  }

  .artist-block {
    display: flex;
    justify-content: center;
    align-items: stretch;
    background: #111;
    border: 2px solid #333;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
  }

  .artist-card {
    flex: 1;
    padding: 20px;
    border-right: 2px solid #333;
    transition: all 0.4s ease;
  }

  .artist-card:last-child {
    border-right: none;
  }

  .artist-card:hover {
    background: #1a1a1a;
    transform: translateY(-5px);
  }

  .artist-photo {
       width: 210px;
    height: 210px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 0 20px rgb(255 255 255 / 30%);
  }

  .artist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: transform 0.4s ease, filter 0.4s ease;
  }

  .artist-card:hover .artist-photo img {
    filter: grayscale(0);
    transform: scale(1.05);
  }

  .artist-name {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 6px;
    text-transform: uppercase;
  }

  .artist-role {
    font-size: 1rem;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
  }

  .artist-desc {
       font-size: 0.95rem;
    color: #bbb;
    line-height: 1.6;
    max-width: 367px;
    margin: 0 auto;
    text-align: justify;
  }

  @media (max-width: 767px) {
    .artist-block {
      flex-direction: column;
    }
    .artist-card {
      border-right: none;
      border-bottom: 2px solid #333;
    }
    .artist-card:last-child {
      border-bottom: none;
    }
  }
  
  
  
  
.img-div img {
    animation: glitch-effect 1.5s cubic-bezier(.22,1,.36,1) infinite;
}


.story-carousel .col-md-4:nth-child(1) .img-div img {
    animation-delay: 0s; 
}

.story-carousel .col-md-4:nth-child(2) .img-div img{
    animation-delay: 0.5s; 
}

.story-carousel .col-md-4:nth-child(3) .img-div img{
    animation-delay: 1s; 
}
  
  
  
  
@keyframes glitch-effect {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0)
    }

    5% {
        -webkit-transform: translate(-5px,5px);
        transform: translate(-5px,5px)
    }

    10% {
        -webkit-transform: translate(-5px,-5px);
        transform: translate(-5px,-5px)
    }

    15% {
        -webkit-transform: translate(5px,5px);
        transform: translate(5px,5px)
    }

    20% {
        -webkit-transform: translate(5px,-5px);
        transform: translate(5px,-5px)
    }

    25% {
        -webkit-transform: translate(0);
        transform: translate(0)
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0)
    }
}  
  
  
  
.portfolio.servi  img{
          height: 235px;
    width: 100%;
    margin: 0 auto;
    object-fit: contain;
  }
  
  
  
 .portfolio.servi  .story-carousel .sing-pp {
      border:none;
  }
  
  .tatt-stu {
      padding:80px 0;
  }
  
  .img-port-slider .item {
      overflow:hidden;
  }
  
  
  .img-port-slider .item img{
      transition: all .3s;
  }
  
  
  .img-port-slider .item:hover img {
      transform:scale(1.06);
  }
  
  
  
  .art-show {
      padding:80px 0;
      background: #000;
      color:#fff;
  }
  
  
   .masonry__container {
	column-count: 5;
	column-gap: 20px;
}

.masonry__item {
    margin: 20px 0;
    overflow:hidden;
}

.masonry__item img {
    transition:all ease .3s;
}


.masonry__item:hover img {
    transform:scale(1.07);
}


.masonry__container .masonry__item:first-child {
    margin-top: 0;
}


@media screen and (max-width: 768px) {
	.masonry__container {
		column-count: 3;
		gap:0
	}
}

@media screen and (max-width: 576px) {
	.masonry__container {
		column-count: 2;
		gap:0
	}
}


.counter-section {
      background: url('../img/tri-bg-sec.webp') no-repeat top center/cover;
      background-attachment: fixed;
      padding: 140px 0;
      color: #fff;
      text-align: center;
      position: relative;
    }

    .counter-section::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.5); /* dark overlay for text visibility */
    }

    .counter-box {
      position: relative;
      z-index: 2;
    }

    .counter-number {
      font-size: 3rem;
      font-weight: bold;
    }

    .counter-label {
      font-style: italic;
      font-size: 1.2rem;
    }
    
    
   .floating-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none; /* hidden by default */
  justify-content: space-between;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  z-index: 9999;
}

.floating-footer a {
  flex: 1;
  padding: 14px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.whatsapp-btn {
  background: #25D366;
}

.nav-btn {
  background: #000;
}

/* Show on mobile + small tablets */
@media (max-width: 768px) {
  .floating-footer {
    display: flex !important;
  }
}


.tri-steps-row {
      background:#fff;
      padding:80px 0;
    }

    .steps-header {
      text-align: center;
      margin-bottom: 1.25rem;
    }
    .steps-title {
      color: #fff;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin: 0;
      font-size: 1.05rem;
    }
    .steps-sub {
      color: rgba(255,255,255,0.7);
      margin-top: .25rem;
      font-size: .95rem;
    }

    /* ===== Steps row ===== */
    .steps-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding: .5rem 0;
    }

    /* step card */
    .step {
         background: #000000;
    color: #fff;
    min-width: 135px;
    max-width: 210px;
    padding: 25px 10px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    flex: 0 0 auto;
    transition: transform .28s 
cubic-bezier(.2, .8, .2, 1), box-shadow .28s;
}

    .step:focus, .step:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 40px rgba(255,255,255,0.05);
      outline: none;
    }

    .step-badge {
      width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-grid
;
    place-items: center;
    background: #ffffff;
    color: #000000;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 auto .6rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 0, 0, 0.12);
}


    }

    .step h6 {
          margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    }

    .step p {
      margin: 0;
      color: #fff;
      font-size: 0.88rem;
      line-height: 1.25;
    }

    /* ===== Arrow column ===== */
    .arrow-wrap {
          width: 70px;
    flex: 0 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .arrow-svg {
      width: 100%;
      max-width: 88px;
      height: 28px;
      overflow: visible;
    }

    .arrow-line {
      stroke: rgb(0 0 0 / 46%);
      stroke-width: 2;
      stroke-linecap: round;
      opacity: .12;
    }

    .arrow-path {
      stroke: #000;
      stroke-width: 2.4;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
      stroke-dasharray: 120;
      stroke-dashoffset: 120;
      animation: draw 1.4s ease-in-out infinite;
    }

    .arrow-head {
      fill: #fff;
      opacity: 0.95;
      transform-origin: center;
      animation: pulse 1.4s ease-in-out infinite;
    }

    @keyframes draw {
      0%   { stroke-dashoffset: 120; opacity:0; transform: translateX(-6px); }
      30%  { opacity:1; transform: translateX(0); stroke-dashoffset: 0; }
      70%  { opacity:1; transform: translateX(6px); stroke-dashoffset: -120; }
      100% { opacity:0; transform: translateX(12px); stroke-dashoffset: -240; }
    }

    @keyframes pulse {
      0% { transform: scale(0.9); opacity:0.9; }
      50% { transform: scale(1.12); opacity:1; }
      100% { transform: scale(0.9); opacity:0.9; }
    }

    /* stagger animations */
    .steps-row .arrow-wrap:nth-of-type(1) .arrow-path { animation-delay: 0s; }
    .steps-row .arrow-wrap:nth-of-type(2) .arrow-path { animation-delay: .12s; }
    .steps-row .arrow-wrap:nth-of-type(3) .arrow-path { animation-delay: .24s; }
    .steps-row .arrow-wrap:nth-of-type(4) .arrow-path { animation-delay: .36s; }

    .steps-row .arrow-wrap:nth-of-type(1) .arrow-head { animation-delay: 0s; }
    .steps-row .arrow-wrap:nth-of-type(2) .arrow-head { animation-delay: .12s; }
    .steps-row .arrow-wrap:nth-of-type(3) .arrow-head { animation-delay: .24s; }
    .steps-row .arrow-wrap:nth-of-type(4) .arrow-head { animation-delay: .36s; }

    @media (max-width: 767.98px) {
      .steps-row { flex-direction: column;
        gap: 1rem;
        justify-content: center;
        align-items: center; }
      .arrow-wrap { transform: rotate(90deg); }
      .step { width: 100%; max-width: 100%; 
              padding: 30px;
          
      }
    }

    .step:focus { box-shadow: 0 18px 40px rgba(255,255,255,0.06), 0 0 0 4px rgba(255,255,255,0.03); }

    .steps-row::-webkit-scrollbar { height: 8px; }
    .steps-row::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.06); border-radius: 999px; }


.boxx.profile {
        background: #fff;
    margin-top: 40px;
    color: #111111;
}

.boxx.profile:hover {
    background:transparent;
    color:#ffff;
    border:1px solid #fff;
}
 
.filter-btn.active, .filter-btn:hover { 
       background: transparent;
    color: #fff;
    border: 1px solid #fff;
    
}

.filter-tabs { 
    
    margin-bottom: 30px;

}

.filter-btn {
    
  background: #f0f0f0;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s;
   border: 1px solid #fff;
   color:#000;
}

    #contact {
      padding: 80px 0;
      background-color: #000;
      border-top: 1px solid #222;
    }

     #contact  h2 {
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      border-left: 4px solid #fff;
      padding-left: 15px;
      margin-bottom: 30px;
      color:#fff;
    }

    .contact-info p {
      margin-bottom: 10px;
      font-size: 16px;
      letter-spacing: 0.5px;
      color:#fff;
          display: flex;
    gap: 10px;
    }

    .contact-info i {
      margin-right: 10px;
      color: #fff;
    }

    .map-container iframe {
      width: 100%;
      height: 280px;
      border: 2px solid #fff;
      border-radius: 8px;
      filter: grayscale(100%) brightness(80%);
    }

    .appointment-form {
      background-color: #111;
      padding: 30px;
      border-radius: 10px;
      border: 1px solid #222;
      box-shadow: 0 0 15px rgba(255,255,255,0.05);
    }

    .appointment-form label {
      font-weight: 600;
      text-transform: uppercase;
      font-size: 13px;
      color: #ccc;
    }

    .appointment-form input,
    .appointment-form textarea,
    .appointment-form select {
      background-color: #000;
      border: 1px solid #333;
      color: #fff;
      border-radius: 5px;
    }

    .appointment-form input:focus,
    .appointment-form textarea:focus,
    .appointment-form select:focus {
      border-color: #fff;
      box-shadow: none;
    }

    .appointment-form select option {
      background-color: #000;
      color: #fff;
    }

    .appointment-form button {
      background-color: #fff;
      color: #000;
      border: none;
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: 1px;
      transition: all 0.3s;
    }

    .appointment-form button:hover {
      background-color: #ccc;
    }

    /* Responsive tweaks */
    @media (max-width: 767px) {
      .appointment-form {
        margin-top: 40px;
      }
      
     body .filter-tabs {
        margin-bottom: 30px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        flex-direction: row;
        justify-content: space-between;
}
      
      
 body .filter-btn {
      flex:0 0 45%;
  }    
      
      
      
    body .your-self .image-box  {
        width:250px;
    }  
      
      
   body .your-self .marquee img {
        height:450px;
    }
   
      
  body  .btm-footer {
            margin-top: 0;
    padding-bottom: 40px;
    }  
      
      
      
    }
 