  @font-face {
  font-family: 'InkFree';
  src: url('../Vecta_Stitch/fonts/Inkfree.ttf') format('truetype');
}
/* ===== General ===== */
html, body {   overflow-x: hidden;   
  scroll-behavior: smooth;  
  font-family: 'Poppins', cursive;
  scroll-padding-top: 80px; /* header ki height */}
body {
  margin:0;
  font-family:'Poppins', cursive;
  color:#fff;

}
.hidden { display:none; }
* {
  box-sizing: border-box;
}
section [style*="left:40px"] {
  left: 20px !important;
}

section [style*="right:50px"] {
  right: 20px !important;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .container {
    flex-direction: column;
  }
}
header {
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  padding:0 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* header video ke upar rahe */
  background: transparent; /* transparent hi rahega */
}

.logo img{ font-family:'Pacifico', cursive; font-size:1.8rem; color:#a76612;  height: 100px; float: left;}
.toggle-circle {
  width: 50px;
  height: 50px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
 position: relative;
  z-index: 1001; /* menu ke upar rakhega */
  transition: transform 0.5s ease;
}

.toggle-circle::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: #ffbf69;
  transition: transform 0.5s ease;
}

.toggle-circle.active {
  transform: rotate(90deg);
}

.toggle-circle.active::before {
  transform: rotate(90deg);
}
.nav-links {
  position:absolute; 
  right:200px; 
  top:50%; 
  transform: translateY(-50%);
 list-style:none;
  padding:0; margin:0;
   opacity:0;
    pointer-events:none;
    z-index: 1000; transition:.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* space between links */
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;   /* horizontal se vertical */
    position: absolute;      /* toggle button ke neeche fix karna */
    top: 120px;               /* toggle button ke neeche */
    left: 0;
    width: 100%;
    background: transparent;       /* ya apni navbar ka bg color */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    /* padding: 5px 0; */
    z-index: 999;
    text-align: center;      /* text ko center align karega */
  }

  .nav-links li a {
    /* padding: 5px 0; */
    display: block;          /* har link ek line me */
    color: #ffbf69;          /* text color mobile ke liye */
  }
}



.nav-links li a{ color:#ffbf69; text-decoration:none; font-weight:500; font-size:1.1rem; }
.nav-links.show{ opacity:1; pointer-events:auto; }
/* ===== Hero ===== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  margin-top: 0;
  padding-top: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* opacity control here */
  z-index: -1; /* video ke upar, text ke neeche */
} 
.hero-btn{
  display:inline-block; margin-top:10px; padding:12px 30px;
  background: #ffbf69; color:black; font-size:1.2rem; font-weight:600; text-decoration:none;
  border-radius:30px; border:2px solid #ffbf69; transition:.3s;
  margin-bottom: 140px;
}
.hero-btn:hover{ background:transparent; color:#ffbf69; border-color:#ffbf69; }

.typing-container{
  font-size: clamp(3rem,7vw,25rem); color:#fff; display:flex; white-space:nowrap; overflow:hidden;
   font-family: 'Ink Free', cursive;

  margin-top: 225px; 
  /* transform: rotate(-10deg); */
}
.typing-container span{   z-index: 2; /* text above overlay */opacity:0; display:inline-block; transform: translateY(5px); animation: fadeUp .4s forwards; }
@keyframes fadeUp{ to{ opacity:1; transform: translateY(0); } }

/* floating gallery thumbs (About -> Service1 old visuals) */
.slide-left{ opacity:0; transform: translateX(-50px); transition:.8s; animation: bounceLeft 3s infinite alternate; }
.slide-right{ opacity:0; transform: translateX(50px);  transition:.8s; animation: bounceRight 3s infinite alternate; }
@keyframes bounceLeft{ 0%{transform: translateX(-50px)} 50%{transform: translateX(-50px) translateY(-10px)} 100%{transform: translateX(-50px)} }
@keyframes bounceRight{0%{transform: translateX(50px)} 50%{transform: translateX(50px) translateY(-10px)} 100%{transform: translateX(50px)} }
@keyframes slideInLeft{ to{opacity:1; transform: translateX(0);} }
@keyframes slideInRight{to{opacity:1; transform: translateX(0);} }

.left-images img, .right-images img{ position:relative; z-index:1; }

/* ===== CTA Button (services) ===== */
.digitizing-btn{
  padding:15px 35px; font-size:1.05rem; font-weight:700; letter-spacing:.3px;
  text-decoration:none; background:#ffbf69; color:#000; border-radius:30px; border:2px solid #fff;
  transition:.35s; box-shadow:0 4px 15px rgba(0,0,0,.2);
}
.digitizing-btn:hover{
  background:#ffbf69; color:#fff; border-color:#fff;
  box-shadow:0 6px 20px rgba(255,255,255,.4); transform: scale(1.06);
}

/* ===== Shared service media + gallery layer ===== */
.media-container{ position:relative; width:100%; height:100vh; overflow:hidden; }
.media-container video{ width:100%; height:100%; object-fit:cover; transition: opacity .6s ease; }

.image-gallery{
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  background:#ffffff; height:100vh; width:100%; position:absolute; inset:0;
  opacity:0; pointer-events:none; transform: scale(.96); transition: all .45s ease; z-index:2; color:#000;
}

.image-gallery.active{ opacity:1; pointer-events:auto; transform: scale(1); }
.image-row{ display:flex; gap:20px; margin:10px 0; }
.image-row img{
  width:250px; height:180px; object-fit: contain; border-radius:10px;    background: #f5f5f5;
  box-shadow:0 4px 15px rgba(0,0,0,.2); transition: transform .3s;
}
.image-row img:hover{ transform: scale(1.05); }
/* Mobile layout: 2 images per row */
@media (max-width: 768px) {
  .image-row {
    flex-wrap: wrap;              /* allow wrapping */
    justify-content: center;      /* center align */
    gap: 10px;                    /* smaller gap */
  }

  .image-row img {
    width: 48%;                   /* 2 per row */
    height: 100px;                 /* maintain aspect ratio */
  }
}


/* small screens */
@media (max-width:600px){
  .digitizing-btn{ padding:12px 18px; font-size:1rem; }
 
}

.contact-section {

  width: 100%;
    height: auto;
  padding: 40px 20px;
  text-align: center;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  text-align: center;
  position: relative;
}

.contact-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hand-img {
  min-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.hiiii-text {
  position: absolute;
   font-weight: bold;
  font-family: 'Ink Free', cursive;
  font-size: 37px;
  color: #ffbf69;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hiiii-text span {
  opacity: 0;
  transform: translateY(5px);
  animation: fadeUp 0.5s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.contact-line {
  color: #000000;
    word-wrap: break-word;
  font-size: 18px;
}

.contact-btn {
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  border: 2px solid #ffbf69;
  border-radius: 30px;
  text-decoration: none;
  background: transparent;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #fff;
  color: #000;

}



@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;   /* sab cheez center me */
    text-align: center;
  }
  .footer-col {
    width: 100%;
    font-size: 14px;
    justify-content: center;
  }
  .footer-col img {
    display: block;
    margin: 0 auto;       /* logo ko center karne ka shortcut */
  }
}

.price-card {
  flex:1;
  min-width:280px;
  max-width:340px;
  background:rgba(255,255,255,0.08);
  padding:50px 30px;
  border-radius:25px;
  backdrop-filter: blur(12px);
  border:1px solid rgba(255,255,255,0.15);
  box-shadow:0 0 25px rgba(255,191,105,0.15);
  transition: all .35s ease;
}
.price-card:hover {
  transform: translateY(-12px);
  box-shadow:0 0 35px rgba(255,191,105,0.5);
}
.price-card h3 {
  font-size:1.8rem;
  margin-bottom:10px;
}
.price-card .price {
  font-size:2.5rem;
  font-weight:700;
  color:#ffbf69;
  margin-bottom:15px;
}
.price-card hr {
  border:0;
  height:2px;
  background:linear-gradient(90deg, transparent, #ffbf69, transparent);
  margin:20px 0;
}
.price-card ul {
  list-style:none;
  padding:0;
  line-height:2;
  font-size:1rem;
  margin-bottom:25px;
  color: rgb(255, 255, 255);
}
.price-card.popular {
  animation: glow 2.5s infinite alternate;
}
@keyframes glow {
  from { box-shadow: 0 0 25px rgba(255,191,105,0.3); }
  to { box-shadow: 0 0 45px rgba(255,191,105,0.8); }
}

.ribbon {
  position:absolute;
  top:40px;
  right:-38px;
  background:#ffbf69;
  color:#000;
  font-weight:700;
  font-size:0.9rem;
  padding:6px 50px;
  transform:rotate(45deg);
  box-shadow:0 5px 15px rgba(0,0,0,0.25);
  z-index:1;
  overflow:hidden; /* important */
}

.digitizing-btn {
  display:inline-block;
  padding:12px 28px;
  border-radius:30px;
  background:#fff;
  color:#000;
  font-weight:600;
  text-decoration:none;
  transition:all .3s ease;
}
.digitizing-btn:hover {
  background:#ffbf69;
  color:#000;
    transform: translateY(-3px);
}
.digitizing-btn.highlight {
  background:#ffbf69;
  color:#fff;
  border:none;
}
.digitizing-btn.highlight:hover {
  background:#fff;
  color:#000;
}
/* Responsive */
@media (max-width: 768px) {
  .price-card { max-width:80%; }
}

@media (max-width: 768px) {
  .about-section .col-pic {
    display: none;
  }
}


#service1-content.hidden {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}


@media (max-width: 768px) {
  #services .container {
    width: 100% !important;   /* responsive banado */
    padding: 15px;            /* thoda space andar */
  }

  #services h2 {
    font-size: 2rem;          /* chhoti screen ke liye font adjust */
  }

  #services div[style*="margin-top: 200px"] {
    margin-top: 75px !important; /* text upar le aao */
  }

  #services .digitizing-btn {
    position: static !important;   /* absolute hatado */
    transform: none !important;
    margin: 20px auto;             /* center align */
    display: block;
  }
}
@media (max-width: 768px) {
  #digitizing .container {
    width: 100% !important;   /* responsive banado */
    padding: 15px;            /* thoda space andar */
  }

  #digitizing h2 {
    font-size: 2rem;          /* chhoti screen ke liye font adjust */
  }

  #digitizing div[style*="margin-top: 200px"] {
    margin-top: 75px !important; /* text upar le aao */
  }

  #digitizing .digitizing-btn {
    position: static !important;   /* absolute hatado */
    transform: none !important;
    margin: 20px auto;             /* center align */
    display: block;
  }
}
@media (max-width: 768px) {
  #patches .container {
    width: 100% !important;   /* responsive banado */
    padding: 15px;            /* thoda space andar */}
  #patches h2 {
    font-size: 2rem;          /* chhoti screen ke liye font adjust */}
  #patches div[style*="margin-top: 200px"] {
    margin-top: 75px !important; /* text upar le aao */}
  #patches .digitizing-btn {
    position: static !important;   /* absolute hatado */
    transform: none !important;
    margin: 20px auto;             /* center align */
    display: block;}}
@media (max-width: 768px) {
  .hiiii-text {
    top: 25%; 
    left: 1%;
    transform: translate(-50%, -50%);}}
@media (min-width: 770px) {
  .hiiii-text {
    top: 28%; /* thoda neeche */
    left: 2%;
    transform: translate(-50%, -50%);}}
.footer {
  background: #000;
  color: #fff;
  padding: 60px 40px 20px;}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;  /* responsive ke liye */}
.footer-col {
  flex: 1;
  min-width: 150px;
  margin: 0 20px;}
.big-col {
  flex: 2; /* first column wider */}
.footer h5 {
  color: #ffbf69;
  margin-bottom: 15px;}
.footer ul {
  list-style: none;
  line-height: 35px;
  padding: 0;}
.footer ul li {
  margin-bottom: 10px;}
.footer ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;}
.footer ul li a:hover {
  color: #ffbf69;}
.footer-social a {
  color: #ffbf69;
  margin-right: 15px;
  font-size: 20px;
  transition: color 0.3s ease;}
.footer-social a:hover {
  color: #fff;}
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #222;
  padding-top: 15px;
  font-size: 14px;}