/* Kaushal Incorporate — shared styles */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; font-family: Inter, sans-serif; color: #1A2230; overflow-x: hidden; }
a { -webkit-tap-highlight-color: transparent; }

@keyframes ki-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes ki-dash { to { stroke-dashoffset: -1000; } }
@keyframes ki-pulse { 0%,100% { opacity: .5; } 50% { opacity: 1; } }
@keyframes ki-kenburns { from { transform: scale(1.02) translate(0,0); } to { transform: scale(1.11) translate(-1.5%,-1.5%); } }

.ki-zoom { transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.ki-zoom-wrap:hover .ki-zoom { transform: scale(1.06); }

/* reCAPTCHA v3 badge — move to bottom-left so it doesn't overlap the
   floating Quote/Call/WhatsApp buttons in the bottom-right. */
.grecaptcha-badge { left: 14px !important; right: auto !important; box-shadow: 0 6px 18px rgba(11,39,64,0.12) !important; }

/* Nav responsive */
#ki-burger { display: none; }
@media (max-width: 900px) {
  #ki-nav-menu {
    display: none; position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px; background: #fff;
    padding: 16px 24px 24px; border-bottom: 1px solid #E8ECF1;
    box-shadow: 0 12px 30px rgba(11,39,64,0.12);
  }
  #ki-nav-menu.open { display: flex; }
  #ki-burger { display: flex !important; }
}
