
/* ===== InkingKings ADD-ON SECTIONS (scoped, non-destructive) ===== */
:root{
  --ikx-accent:#1FE3C2;
  --ikx-bg-dark:#0a0a0a;
  --ikx-card:#121212;
  --ikx-stroke:#1c1c1c;
  --ikx-muted:#bfbfbf;
  --ikx-white:#ffffff;
  --ikx-offwhite:#f5f5f5;
  --ikx-btn:#f5efe7;
  --ikx-btn-hover:#ddd0c5;
}
.ikx { font-family: inherit; color: inherit; }
.ikx .section { padding:72px 0; }
.ikx .container { width:min(1200px, 92%); margin:0 auto; }
.ikx .title { font-size:48px; font-weight:700; letter-spacing:2px; text-transform:uppercase; text-align:center; padding-bottom: 30px; }
.ikx .title span{ color:var(--ikx-accent); }
.ikx .muted{ color:var(--ikx-muted); }
.ikx .btn{ display:inline-block; padding:12px 26px; background:var(--ikx-btn); color:#000; text-transform:uppercase; font-weight:700; letter-spacing:.5px; border-radius:8px; }
.ikx .btn:hover{ background:var(--ikx-btn-hover); }

/* Stats */
.ikx-stats{ background:var(--ikx-bg-dark); border-top:1px solid var(--ikx-stroke); border-bottom:1px solid var(--ikx-stroke); }
.ikx-stats .grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.ikx-stat{ text-align:center; }
.ikx-stat .value{ font-size:28px; font-weight:800; color:var(--ikx-accent); }
.ikx-stat .label{ font-size:12px; letter-spacing:1px; text-transform:uppercase; color:#d5d5d5; }
/* Force stats into one single row on mobile */
@media (max-width: 720px) {
  .ikx-stats .grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;        /* small gap */
    padding: 8px 4px;
  }

  .ikx-stat {
    flex: 1;         /* all equal width */
    text-align: center;
  }

  .ikx-stat .value {
    font-size: 10px; /* smaller numbers */
    font-weight: 70;
  }

  .ikx-stat .label {
    font-size: 10px;  /* tiny labels */
    line-height: 1.1;
  }
}



/* New 3D sliding gallery */
/* Balanced 3D sliding gallery */
.ikx-gallery {
  background: #000; 
  color: #fff;
  overflow: hidden;
  position: relative;
}

.ikx-gallery .title { color: #fff; }
.ikx-gallery .muted { color: #aaa; }

.ikx-gallery-carousel {
  overflow: hidden;
  width: 100%;
  perspective: 1000px; 
  margin-top: 30px;
}

.ikx-gallery-track {
  display: flex;
  width: calc(300px * 16); /* 16 images (8 duplicated) */
  animation: ikx-slide 60s linear infinite;
}

.ikx-gallery-track img {
  width: 400px;
  height: 500px;
  object-fit: cover;
  margin: 0 12px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
  transform: rotateY(6deg);
  transition: transform 0.3s ease;
}

.ikx-gallery-track img:hover {
  transform: rotateY(0) scale(1.05);
}

@keyframes ikx-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobile: 2 videos side by side but larger */
@media (max-width: 720px) {
  .hero-content {
    flex-direction: row;
    gap: 8px;                 /* small gap between videos */
  }

  .hero-content video {
    flex: 1;
    max-width: 48% !important; /* take more width */
    height: 250px !important;  /* increase height slightly */
    object-fit: cover;
  }
}


/* ===== Sliding Reviews Carousel ===== */
.ikx-reviews {
  background:#fff; color:#000;
}
.ikx-reviews .title { color:#000; }
.ikx-reviews .muted { color:#444; }

.ikx-reviews-carousel{
  overflow:hidden;
  width:100%;
  perspective: 1000px;
  margin-top: 18px;
}

.ikx-reviews-track{
  display:flex;
  gap: 18px;
  animation: ikx-reviews-slide 8s linear infinite;
  will-change: transform;
}

.ikx-review-slide{
  flex: 0 0 auto;
  width: 420px; /* desktop size */
  transform: rotateY(6deg);
  transition: transform .3s ease;
}
.ikx-review-slide:hover{ transform: rotateY(0) scale(1.03); }

.ikx-review-card{
  background:#fff;
  border:1px solid #ececec;
  border-radius:16px;
  padding:20px;
  box-shadow:0 12px 36px rgba(0,0,0,.08);
  height: 100%;
}
.ikx-review-card .ikx-stars{ color:#ffb400; letter-spacing:2px; font-size:18px; }
.ikx-review-card .ikx-quote{ font-size:18px; margin:10px 0; color:#222; }
.ikx-review-card .ikx-author{ font-weight:700; }
.ikx-review-card .ikx-author small{ display:block; color:#666; }

@keyframes ikx-reviews-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* because content is duplicated */
}



/* Responsive tweaks */
/* Force bigger gallery images on mobile */
@media (max-width: 768px) {
  .ikx-gallery-track img {
    width: 100% !important;   /* full width */
    max-width: 360px;         /* prevent overflow */
    height: 380px !important; /* taller images */
    object-fit: cover !important;
  }
}

/* Institute (offwhite) */
.ikx-institute{ background:var(--ikx-offwhite); color:#000; }
.ikx-institute .title span{ color:#0b8; }
.ikx-institute .muted{ color:#333; }
.ikx-institute .cols{ display:grid; grid-template-columns:1.1fr .9fr; gap:28px; align-items:center; }
.ikx-list{ list-style:none; padding-left:0; margin:18px 0 0; }
.ikx-list li{ background:#fff; border:1px solid #e9e9e9; border-radius:12px; padding:12px 14px; margin-bottom:10px; box-shadow:0 6px 20px rgba(0,0,0,.06); }
.ikx-frame {
  background:#fff;
  border:2px solid #e9e9e9;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  border-radius:10px;

  display:inline-block;
}

.ikx-frame img {
  display:block;
  width: 100%;
  height: 400px;;
  object-fit:cover;   /* image box ke hisaab se crop/fit hogi */
  border-radius:8px;  /* andar ke image ke corners round */
}


/* Why Choose */
.ikx-why{ background:var(--ikx-bg-dark); }
.ikx-why .grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.ikx-why .ikx-card p{ color:var(--ikx-muted); font-size:14px; margin:0; }

/* Reviews (light) */
.ikx-reviews{ background:#fff; color:#000; }
.ikx-reviews .title{ color:#000; }
.ikx-review{ max-width:560px; margin:0 auto; background:#fff; border:1px solid #ececec; border-radius:16px; padding:20px; box-shadow:0 12px 36px rgba(0,0,0,.08); text-align:center; }
.ikx-stars{ color:#ffb400; letter-spacing:2px; font-size:18px; }
.ikx-quote{ font-size:18px; margin:10px 0; color:#222; }
.ikx-author{ font-weight:700; }
.ikx-author small{ display:block; color:#666; }

/* Contact (dark gradient) */
.ikx-contact{ background: radial-gradient(90% 120% at 0% 100%, rgba(31,227,194,.15) 0%, rgba(31,227,194,0) 50%), linear-gradient(#070707, #0f0f0f); }
.ikx-contact .cols{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.ikx-form input, .ikx-form textarea{ width:100%; padding:12px; border-radius:10px; background:#0d0d0d; border:1px solid #202020; color:#fff; }
.ikx-form ::placeholder{ color:#9b9b9b; }
.ikx-visit{ background:linear-gradient(145deg, rgba(31,227,194,.1), rgba(31,227,194,.05)); border:1px solid #173e38; padding:20px; border-radius:16px; color:#dff9f4; }
.ikx-visit ul{ list-style:none; padding-left:0; margin:0; }
.ikx-visit li{ display:flex; gap:10px; margin-bottom:10px; }

/* Utility */
.ikx.center{text-align:center}

/* Responsive */
@media (max-width: 900px){
  .ikx-services .grid, .ikx-why .grid{ grid-template-columns:repeat(2,1fr); }
  .ikx-gallery .grid{ grid-template-columns:repeat(2,1fr); }

}
@media (max-width: 520px){
  .ikx-stats .grid{ grid-template-columns:repeat(2,1fr); }
  .ikx-gallery img{ height:140px; }
}

.ikx-stat .value {
  font-size: 36px;
  font-weight: 700;
  color: #1fe3c2;
  transition: all 0.3s ease;
}
/* logo image css */
/* LOGO image: force size + remove filters */
.center-badge img {
  display: block;
  width: 120px;   /* width badhaya */
  height: 120px;  /* height badhaya */
  
  filter: none !important;
  -webkit-filter: none !important;
  image-rendering: auto;
  pointer-events: none;
  /* edge visibility on any bg */
}

/* caption */
.center-badge .cap {
  font-size: 14px;   /* thoda bada font */
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1fe3c2;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

/* small screens: slightly smaller */
@media (max-width: 720px) {
  .center-badge img { 
    width: 80px;    /* mobile pe thoda chhota */
    height: 80px; 
  }
  .center-badge .cap { 
    font-size: 11px; 
    letter-spacing: 2.5px; 
  }
}

.contact-list {
  list-style: none;       /* bullets remove */
  padding: 0;
  margin: 0;
}

.contact-list li {
  padding: 8px 0;         /* har line ke upar-niche equal space */
  font-size: 15px;        /* readable text */
  line-height: 1.6;       /* thoda airy feel */
  
}

.contact-list li:last-child {
  border-bottom: none;    /* last line me divider na ho */
}

.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  margin-top: 40px;
}

.footer-socials {
  display: flex;
  justify-content: center;   /* center align */
  gap: 100px;                 /* icons ke beech space */
  margin-bottom: 20px;
}

.footer-socials .social-icon {
  font-size: 26px;          /* icon size */
  color: #aaa;
  transition: all 0.3s ease;
}

.footer-socials .social-icon.instagram:hover { color: #E4405F; transform: scale(1.2); }
.footer-socials .social-icon.facebook:hover { color: #1877F2; transform: scale(1.2); }
.footer-socials .social-icon.twitter:hover { color: #1DA1F2; transform: scale(1.2); }
.footer-socials .social-icon.whatsapp:hover { color: #25D366; transform: scale(1.2); }

.footer-copy {
  font-size: 18px;
  color: #888;
}/* ===== 3D Hover Nav (desktop) ===== */
.navbar { perspective: 900px; } /* depth for children */ /* b-no-services-linked.html me navbar present hai */ 
.navbar-nav .nav-link{
  position: relative;
  display:inline-block;
  padding:8px 12px;
  color:#fff !important;
  transform-style: preserve-3d;
  transition: transform .35s ease, color .35s ease, text-shadow .35s ease;
}



/* Navbar socials (mobile only) */
.nav-socials {
  display: flex;
  gap: 14px;
  margin-left: auto;
  margin-right: 5px;
  align-items: center;
}

.nav-socials a {
  font-size: 20px;
  color: #fff;
  transition: color 0.3s ease;
}

.nav-socials a:hover {
  color: #1FE3C2;
}

/* Fix offcanvas menu background full height */
.offcanvas {
  background: rgba(20,20,20,0.95) !important;
  height: 100vh !important;   /* full screen */
}


/* 3D “plate” behind text */
.navbar-nav .nav-link::before{
  content:"";
  position:absolute;
  inset:-8px -12px;
  background: rgba(31,227,194,.08);
  border:1px solid rgba(31,227,194,.18);
  border-radius:10px;
  transform: translateZ(-8px) scale(.96) rotateX(0deg);
  opacity:0;
  box-shadow: 0 16px 30px rgba(0,0,0,.35);
  transition: transform .35s ease, opacity .35s ease, box-shadow .35s ease;
  pointer-events:none;
}

/* glowing gradient underline (on Z layer) */
.navbar-nav .nav-link::after{
  content:"";
  position:absolute;
  left:50%; bottom:-6px;
  width:0; height:2px;
  background: linear-gradient(90deg, var(--ikx-accent), #00c6ff);
  transform: translateX(-50%) translateZ(6px);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(31,227,194,.65);
  transition: width .35s ease;
  pointer-events:none;
}

/* Hover state = lift + tilt + glow */
.navbar-nav .nav-link:hover{
  color: var(--ikx-accent) !important;
  transform: translateZ(10px) rotateX(8deg);
  text-shadow: 0 6px 18px rgba(31,227,194,.35);
}
.navbar-nav .nav-link:hover::before{ 
  opacity:1; 
  transform: translateZ(-2px) scale(1) rotateX(6deg);
  box-shadow: 0 24px 40px rgba(0,0,0,.45);
}
.navbar-nav .nav-link:hover::after{ width:84%; }

/* Active page state = subtle persistent highlight */
.navbar-nav .nav-link.active{
  color: var(--ikx-accent) !important;
}
.navbar-nav .nav-link.active::after{ width:60%; }

/* Offcanvas/mobile: keep it lighter (no big 3D to avoid jitter) */
@media (max-width: 720px){
  .navbar-nav .nav-link{
    transform:none !important;
    text-shadow:none !important;
  }
  .navbar-nav .nav-link::before{ display:none; }
  .navbar-nav .nav-link::after{
    bottom:-4px; height:2px; width:0;
    transition: width .25s ease;
  }
  .offcanvas .nav-link:hover::after{ width:70%; }
}

/* Navbar link */
.navbar-nav .nav-link {
  position: relative;
  display: inline-block;
  padding: 6px 10px;
  font-size: 0.95rem;
  color: #fff !important;
  transition: color 0.25s ease;
}

/* Underline with gradient fade ends */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%, 
    var(--ikx-accent, #1FE3C2) 20%, 
    var(--ikx-accent, #1FE3C2) 80%, 
    transparent 100%
  );
  transform: translateX(-50%);
  border-radius: 2px;
  opacity: 0;
  transition: width 0.3s ease, opacity 0.2s ease;
}

/* Hover state */
.navbar-nav .nav-link:hover {
  color: var(--ikx-accent, #1FE3C2) !important;
}
.navbar-nav .nav-link:hover::after {
  width: 70%;   /* underline size */
  opacity: 1;   /* fade-in effect */
}

/* Active link (persistent underline) */
.navbar-nav .nav-link.active {
  color: var(--ikx-accent, #1FE3C2) !important;
}
.navbar-nav .nav-link.active::after {
  width: 50%;
  opacity: 1;
}


/* Reduce vertical gap below stats on mobile */
@media (max-width: 720px) {
  .ikx-stats.section {
    padding-bottom: 10px !important; /* reduce bottom space */
    padding-top: 30px !important;    /* also shrink top space */
  }
}
@media (max-width: 768px) {
  /* Force navbar to stretch fully */
  .navbar .container-fluid.nav-bar-custom {
    padding-left: 6px !important;
    padding-right: 0 !important;  /* remove right gap */
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  /* Right section: socials + menu */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 05px; /* spacing between IG, WA and menu */
    margin-right: 0 !important;
  }

  /* Push menu toggler to the very edge */
  .navbar-toggler {
    margin: 0 !important;
    padding-right: 0 !important;
    right: 0 !important;
  }
}


/* animation *.

/* ===== Global smooth scroll + motion safety ===== */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}


/* ===== Hero videos: TOP/BOTTOM converge to center ===== */
.hero-content { overflow: visible; }

.video-left, .video-right {
  position: relative;
  z-index: 1;
  animation-fill-mode: forwards;
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
  will-change: transform, opacity, filter;
}

/* New keyframes: one falls from top, one rises from bottom */
@keyframes enterFromTop {
  0%   { transform: translateY(-140px) scale(.98); opacity: 0; filter: saturate(.6) blur(1px); }
  60%  { transform: translateY(10px)   scale(1.02); opacity: 1; filter: none; }
  100% { transform: translateY(0)      scale(1); }
}
@keyframes enterFromBottom {
  0%   { transform: translateY(140px)  scale(.98); opacity: 0; filter: saturate(.6) blur(1px); }
  60%  { transform: translateY(-10px)  scale(1.02); opacity: 1; filter: none; }
  100% { transform: translateY(0)      scale(1); }
}

/* Subtle idle float (optional) */
@keyframes idleFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Map classes: left one comes from TOP, right one comes from BOTTOM */
.video-left  { animation: enterFromTop 2.2s ease-out .15s both, idleFloat 6s ease-in-out 1.3s infinite; }
.video-right { animation: enterFromBottom 2.2s ease-out .15s both, idleFloat 6s ease-in-out 1.5s infinite; }

/* Hover par idle float pause (optional) */
.video-left:hover, .video-right:hover { animation-play-state: paused; }

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  .video-left, .video-right { animation: none !important; }
}
/* Overlay parallax same rahega on .overlay-wrapper (JS se X-translate) */
.overlay-wrapper { will-change: transform; transition: transform .25s ease-out; }

/* New: text ka entrance from bottom */
.overlay-inner {
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(50px);
  /* Delay ~1.5s = videos (1.5s + .10s buffer) ke baad start */
  animation: overlayEnterFromBottom 1.2s ease-out 2.5s both;
}

@keyframes overlayEnterFromBottom {
  0%   { opacity: 0; transform: translateY(50px); }
  60%  { opacity: 1; transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .overlay-inner { animation: none !important; opacity: 1; transform: none; }
}

/* Overlay text: half overlap on top of video (move up) */
.overlay-wrapper{
  position: absolute;
  bottom: -90px;                 /* pehle -20px tha; 30px se text upar aayega */
  left: 50%;
  transform: translateX(-50%);  /* center lock */
  z-index: 5;
  /* baki tumhara styling same rahe */
  opacity: 0;
  animation: overlayStraightUp 1.2s ease-out 2.5s forwards;
}

@keyframes overlayStraightUp{
  0%   { opacity:0; transform: translate(-50%, 40px); }
  100% { opacity:1; transform: translate(-50%, 0); }
}

/* Mobile tweak (thoda kam) */
@media (max-width:720px){
  .overlay-wrapper{ bottom: 18px; }
}

}
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  will-change: transform, opacity;
  transition: transform .9s cubic-bezier(.2,.65,.2,1), opacity .9s ease;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.in-view.reveal-up    { opacity: 1; transform: translateY(0); }
.in-view.reveal-left  { opacity: 1; transform: translateX(0); }
.in-view.reveal-right { opacity: 1; transform: translateX(0); }
/* Overlay on videos: half overlap & bottom entrance */
.overlay-wrapper{
  position: absolute;
  bottom: -15px;             /* half-overlap adjust: -10 to -30 try kar sakte ho */
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 5;
  display: flex;
  gap: 10px;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  justify-content: center;
  pointer-events: none;

  opacity: 0;
  animation: overlayStraightUp 1.3s ease-out 2.4s forwards;
}
@keyframes overlayStraightUp{
  0%   { opacity:0; transform: translate(-50%, 40px); }
  100% { opacity:1; transform: translate(-50%, 0); }
}
.reveal-up, .reveal-left, .reveal-right, .reveal-top {
  opacity: 0;
  will-change: transform, opacity;
  transition: transform .9s cubic-bezier(.2,.65,.2,1), opacity .9s ease;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-top   { transform: translateY(-40px); }

.in-view.reveal-up,
.in-view.reveal-left,
.in-view.reveal-right,
.in-view.reveal-top { opacity: 1; transform: translate(0,0); }
.gallery-reveal.reveal-right { transition-delay: .15s; }
/* ===== InkingKings THEME ===== */
:root{
  --ikx-accent:#1FE3C2;
  --ikx-bg-dark:#0a0a0a;
  --ikx-card:#121212;
  --ikx-stroke:#1c1c1c;
  --ikx-muted:#bfbfbf;
  --ikx-white:#ffffff;
  --ikx-offwhite:#f5f5f5;
  --ikx-btn:#f5efe7;
  --ikx-btn-hover:#ddd0c5;
}
.ikx{ font-family:inherit; color:inherit; }
.ikx .section{ padding:72px 0; }
.ikx .container{ width:min(1200px,92%); margin:0 auto; }
.ikx .title{ font-size:48px; font-weight:700; letter-spacing:2px; text-transform:uppercase; text-align:center; padding-bottom:30px; }
.ikx .title span{ color:var(--ikx-accent); }
.ikx .muted{ color:var(--ikx-muted); }
.ikx .btn{ display:inline-block; padding:12px 26px; background:var(--ikx-btn); color:#000; text-transform:uppercase; font-weight:700; letter-spacing:.5px; border-radius:8px; }
.ikx .btn:hover{ background:var(--ikx-btn-hover); }

/* Stats */
.ikx-stats{ background:var(--ikx-bg-dark); border-top:1px solid var(--ikx-stroke); border-bottom:1px solid var(--ikx-stroke); }
.ikx-stats .grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.ikx-stat{ text-align:center; }
.ikx-stat .value{ font-size:36px; font-weight:700; color:var(--ikx-accent); transition:all .3s ease; }
.ikx-stat .label{ font-size:12px; letter-spacing:1px; text-transform:uppercase; color:#d5d5d5; }
/* Mobile stats in one row */
@media (max-width:720px){
  .ikx-stats .grid{ display:flex; justify-content:space-between; align-items:center; gap:6px; padding:8px 4px; }
  .ikx-stat{ flex:1; text-align:center; }
  .ikx-stat .value{ font-size:18px; }
  .ikx-stat .label{ font-size:10px; line-height:1.1; }
}



/* Gallery (3D sliding strip) */
.ikx-gallery{ background:#000; color:#fff; overflow:hidden; position:relative; }
.ikx-gallery-carousel{ overflow:hidden; width:100%; perspective:1000px; margin-top:30px; }
.ikx-gallery-track{ display:flex; width:calc(300px * 16); animation: ikx-slide 60s linear infinite; }
.ikx-gallery-track img{
  width:400px; height:500px; object-fit:cover; margin:0 12px; border-radius:14px;
  box-shadow:0 6px 18px rgba(0,0,0,.6); transform:rotateY(6deg); transition:transform .3s ease;
}
.ikx-gallery-track img:hover{ transform:rotateY(0) scale(1.05); }
@keyframes ikx-slide{ 0%{ transform:translateX(0); } 100%{ transform:translateX(-50%); } }

/* Reviews slider */
.ikx-reviews{ background:#fff; color:#000; }
.ikx-reviews .title{ color:#000; }
.ikx-reviews-carousel{ overflow:hidden; width:100%; perspective:1000px; margin-top:18px; }
.ikx-reviews-track{ display:flex; gap:18px; animation: ikx-reviews-slide 8s linear infinite; will-change:transform; }
.ikx-review-slide{ flex:0 0 auto; width:420px; transform:rotateY(6deg); transition:transform .3s ease; }
.ikx-review-slide:hover{ transform:rotateY(0) scale(1.03); }
.ikx-review-card{ background:#fff; border:1px solid #ececec; border-radius:16px; padding:20px; box-shadow:0 12px 36px rgba(0,0,0,.08); height:100%; }
.ikx-stars{ color:#ffb400; letter-spacing:2px; font-size:18px; }
.ikx-quote{ font-size:18px; margin:10px 0; color:#222; }
.ikx-author{ font-weight:700; }
.ikx-author small{ display:block; color:#666; }
@keyframes ikx-reviews-slide{ 0%{ transform:translateX(0); } 100%{ transform:translateX(-50%); } }

/* Contact */
.ikx-contact{ background: radial-gradient(90% 120% at 0% 100%, rgba(31,227,194,.15) 0%, rgba(31,227,194,0) 50%), linear-gradient(#070707, #0f0f0f); }
.ikx-contact .cols{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.ikx-form input, .ikx-form textarea{ width:100%; padding:12px; border-radius:10px; background:#0d0d0d; border:1px solid #202020; color:#fff; }
.ikx-form ::placeholder{ color:#9b9b9b; }
.ikx-visit{ background:linear-gradient(145deg, rgba(31,227,194,.1), rgba(31,227,194,.05)); border:1px solid #173e38; padding:20px; border-radius:16px; color:#dff9f4; }
.ikx-visit ul{ list-style:none; padding-left:0; margin:0; }
.ikx-visit li{ display:flex; gap:10px; margin-bottom:10px; }

/* Utilities & responsive */
.ikx.center{text-align:center}
@media (max-width:900px){
  .ikx-services .grid, .ikx-why .grid{ grid-template-columns:repeat(2,1fr); }
  .ikx-gallery .grid{ grid-template-columns:repeat(2,1fr); }
  
}
@media (max-width:520px){
  .ikx-stats .grid{ grid-template-columns:repeat(2,1fr); }
  .ikx-gallery img{ height:140px; }
}


/* Footer */
.footer{ background:#000; color:#fff; text-align:center; padding:25px 10px; margin-top:40px; }
.footer-socials{ display:flex; justify-content:center; gap:100px; margin-bottom:20px; }
.footer-socials .social-icon{ font-size:26px; color:#aaa; transition:all .3s ease; }
.footer-socials .social-icon.instagram:hover{ color:#E4405F; transform:scale(1.2); }
.footer-socials .social-icon.facebook:hover{ color:#1877F2; transform:scale(1.2); }
.footer-socials .social-icon.twitter:hover{ color:#1DA1F2; transform:scale(1.2); }
.footer-socials .social-icon.whatsapp:hover{ color:#25D366; transform:scale(1.2); }
.footer-copy{ font-size:18px; color:#888; }

/* Logo image (strap) */
.center-badge img{ display:block; width:120px; height:120px; filter:none!important; image-rendering:auto; pointer-events:none; }
.center-badge .cap{ font-size:14px; letter-spacing:3px; text-transform:uppercase; color:#1fe3c2; font-weight:600; line-height:1; text-align:center; }
@media (max-width:720px){
  .center-badge img{ width:80px; height:80px; }
  .center-badge .cap{ font-size:11px; letter-spacing:2.5px; }
}

/* Navbar 3D hover + underline (desktop) */
.navbar{ perspective:900px; }
.navbar-nav .nav-link{ position:relative; display:inline-block; padding:8px 12px; color:#fff!important; transform-style:preserve-3d; transition: transform .35s ease, color .35s ease, text-shadow .35s ease; }
.navbar-nav .nav-link::before{
  content:""; position:absolute; inset:-8px -12px; background:rgba(31,227,194,.08);
  border:1px solid rgba(31,227,194,.18); border-radius:10px; transform:translateZ(-8px) scale(.96) rotateX(0);
  opacity:0; box-shadow:0 16px 30px rgba(0,0,0,.35); transition: transform .35s ease, opacity .35s ease, box-shadow .35s ease; pointer-events:none;
}
.navbar-nav .nav-link::after{
  content:""; position:absolute; left:50%; bottom:-6px; width:0; height:2px;
  background:linear-gradient(90deg, var(--ikx-accent), #00c6ff); transform:translateX(-50%) translateZ(6px);
  border-radius:2px; box-shadow:0 0 10px rgba(31,227,194,.65); transition:width .35s ease; pointer-events:none;
}
.navbar-nav .nav-link:hover{ color:var(--ikx-accent)!important; transform:translateZ(10px) rotateX(8deg); text-shadow:0 6px 18px rgba(31,227,194,.35); }
.navbar-nav .nav-link:hover::before{ opacity:1; transform:translateZ(-2px) scale(1) rotateX(6deg); box-shadow:0 24px 40px rgba(0,0,0,.45); }
.navbar-nav .nav-link:hover::after{ width:84%; }
.navbar-nav .nav-link.active{ color:var(--ikx-accent)!important; }
.navbar-nav .nav-link.active::after{ width:60%; }
@media (max-width:720px){
  .navbar-nav .nav-link{ transform:none!important; text-shadow:none!important; }
  .navbar-nav .nav-link::before{ display:none; }
  .navbar-nav .nav-link::after{ bottom:-4px; height:2px; width:0; transition:width .25s ease; }
  .offcanvas .nav-link:hover::after{ width:70%; }
}

/* ===== Global smooth scroll + motion safety ===== */
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; scroll-behavior:auto!important; }
}

/* ===== Hero videos: TOP/BOTTOM converge to center + idle float ===== */
.hero-content{ overflow:visible; }
.video-left,.video-right{
  position:relative; z-index:1; animation-fill-mode:forwards; border-radius:10px;
  box-shadow:0 14px 40px rgba(0,0,0,.45); will-change:transform, opacity, filter;
}
@keyframes enterFromTop{
  0%{ transform:translateY(-140px) scale(.98); opacity:0; filter:saturate(.6) blur(1px); }
  60%{ transform:translateY(10px) scale(1.02); opacity:1; filter:none; }
  100%{ transform:translateY(0) scale(1); }
}
@keyframes enterFromBottom{
  0%{ transform:translateY(140px) scale(.98); opacity:0; filter:saturate(.6) blur(1px); }
  60%{ transform:translateY(-10px) scale(1.02); opacity:1; filter:none; }
  100%{ transform:translateY(0) scale(1); }
}
@keyframes idleFloat{ 0%{ transform:translateY(0); } 50%{ transform:translateY(-6px); } 100%{ transform:translateY(0); } }
.video-left{  animation: enterFromTop 2.2s ease-out .15s both,   idleFloat 6s ease-in-out 1.3s infinite; }
.video-right{ animation: enterFromBottom 2.2s ease-out .15s both, idleFloat 6s ease-in-out 1.5s infinite; }
.video-left:hover,.video-right:hover{ animation-play-state:paused; }
@media (prefers-reduced-motion: reduce){ .video-left,.video-right{ animation:none!important; } }

/* --- Overlay: center locked (X) + smooth Y-only entry --- */
.overlay-wrapper{
  position: absolute;
  left: 50%;
  bottom: -15px;                 /* half overlap: -10 to -30 adjust kar sakte ho */
  transform: translateX(-50%);   /* X lock only */
  z-index: 5;
  pointer-events: none;
  will-change: transform;        /* wrapper ko GPU hint */
}

.overlay-inner{
  opacity: 0;
  transform: translateY(46px) translateZ(0);  /* Y-only; translateZ(0) = no jitter */
  will-change: transform, opacity;
  animation: overlayYIn 1.3s cubic-bezier(.2,.65,.2,1) 2.4s forwards;
}

@keyframes overlayYIn{
  0%   { opacity:0; transform: translateY(46px) translateZ(0); }
  60%  { opacity:1; transform: translateY(-6px) translateZ(0); }
  100% { opacity:1; transform: translateY(0) translateZ(0); }
}

/* mobile fine-tune */
@media (max-width:720px){
  .overlay-wrapper{ bottom: -10px; }
  .overlay-inner{ animation-delay: 2.4s; } /* same delay; change if videos timing change */
}

/* ===== Scroll reveal system ===== */
.reveal-up,.reveal-left,.reveal-right,.reveal-top{
  opacity:0; will-change:transform, opacity;
  transition: transform .9s cubic-bezier(.2,.65,.2,1), opacity .9s ease;
}
.reveal-up{    transform:translateY(40px); }
.reveal-left{  transform:translateX(-40px); }
.reveal-right{ transform:translateX(40px); }
.reveal-top{   transform:translateY(-40px); }

.in-view.reveal-up,
.in-view.reveal-left,
.in-view.reveal-right,
.in-view.reveal-top{ opacity:1; transform:translate(0,0); }

/* Stagger support via --stagger */
.reveal-right,.reveal-left,.reveal-up,.reveal-top{ transition-delay: var(--stagger, 0ms); }

/* Mobile hero videos side-by-side bigger */
@media (max-width:720px){
  .hero-content{ flex-direction:row; gap:8px; }
  .hero-content video{ flex:1; max-width:48%!important; height:250px!important; object-fit:cover; }
}
/* ---- Mobile fix for overlay text ---- */
@media (max-width: 720px) {
  .overlay-wrapper {
    bottom: -35px;               /* -15 ki jagah +ve (upar laaya) */
    transform: translateX(-50%);
    max-width: 95%;            /* screen ke andar rahe */
    white-space: normal;       /* allow wrapping */
    text-align: center;        /* center align when wrapped */
  }

  .overlay-inner {
    font-size: 32px;           /* thoda chhota text */
    line-height: 1.2;
  }

  .overlay-inner span {
    display: block;            /* har word apni line me (wrap fix) */
  }
}

