/*-----------------------------------------------------------------------------------
    Techno Knock — UI Overhaul Layer
    Loaded after style.css. Modernizes the existing Fexo/Axis theme while
    keeping the brand palette (orange / purple / navy) and typography.

    INDEX
    ## 01. Tokens & Base
    ## 02. Scroll Progress + Back To Top
    ## 03. Preloader
    ## 04. Header & Navigation
    ## 05. Buttons
    ## 06. Section Titles
    ## 07. Home Hero
    ## 08. Inner Page Hero
    ## 09. Cards (services / iconic boxes)
    ## 10. Client Logos
    ## 11. Tabs, Accordion & Lists
    ## 12. Forms & Contact
    ## 13. Info Boxes & Support Box
    ## 14. Images & Media
    ## 15. Footer
    ## 16. Generic Card Hovers (team / blog / project / pricing)
    ## 17. Keyframes & Utilities
    ## 18. Accessibility & Reduced Motion
-----------------------------------------------------------------------------------*/

/* ## 01. Tokens & Base
----------------------------------------------------------------*/
:root {
  --tk-grad: linear-gradient(135deg, #FF3B00 0%, #FF6A2B 55%, #FF8F4D 100%);
  --tk-grad-brand: linear-gradient(120deg, #FF3B00, #FF6A2B 40%, #6D30FB 130%);
  --tk-navy: #010F34;
  --tk-navy-800: #071A45;
  --tk-navy-glass: rgba(1, 15, 52, 0.82);
  --tk-white-glass: rgba(255, 255, 255, 0.82);
  --tk-surface: #ffffff;
  --tk-border-soft: rgba(1, 15, 52, 0.08);
  --tk-shadow-sm: 0 2px 10px rgba(1, 15, 52, 0.06);
  --tk-shadow-md: 0 14px 34px -12px rgba(1, 15, 52, 0.18);
  --tk-shadow-lg: 0 28px 60px -18px rgba(1, 15, 52, 0.28);
  --tk-shadow-primary: 0 14px 30px -10px rgba(255, 59, 0, 0.45);
  --tk-radius: 20px;
  --tk-radius-lg: 28px;
  --tk-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--primary-color);
  color: #fff;
}

/* Slim, branded scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #eef0f5;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FF3B00, #c22e02);
  border-radius: 8px;
  border: 2px solid #eef0f5;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--tk-navy);
}

/* Visible keyboard focus, brand colored */
a:focus-visible,
button:focus-visible,
.theme-btn:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary-color) !important;
  outline-offset: 3px;
  border-radius: 6px;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.01em;
}

/* ## 02. Scroll Progress + Back To Top
----------------------------------------------------------------*/
.tk-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--tk-grad);
  z-index: 100000;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 12px rgba(255, 59, 0, 0.55);
  pointer-events: none;
  transition: width 0.08s linear;
}

.tk-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--tk-grad);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99990;
  box-shadow: var(--tk-shadow-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: all 0.4s var(--tk-ease);
}
.tk-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.tk-top:hover {
  background: var(--tk-navy);
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--tk-shadow-lg);
}
@media (max-width: 767px) {
  .tk-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

/* ## 03. Preloader
----------------------------------------------------------------*/
.preloader {
  background: radial-gradient(120% 120% at 50% 40%, #0a1e52 0%, var(--tk-navy) 65%);
}
.preloader .loading-wrapper .loading {
  border-color: rgba(255, 255, 255, 0.12);
  border-top-color: var(--primary-color);
}

/* ## 04. Header & Navigation
----------------------------------------------------------------*/
/* Animated underline on desktop menu links */
@media (min-width: 1200px) {
  .main-menu ul > li.menu-item > a {
    position: relative;
  }
  .main-menu ul > li.menu-item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--tk-grad);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.4s var(--tk-ease);
  }
  .main-menu ul > li.menu-item:hover > a::after,
  .main-menu ul > li.menu-item > a.tk-active::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
.main-menu ul > li.menu-item > a.tk-active {
  color: var(--primary-color) !important;
}
.header-two .main-menu ul > li.menu-item > a.tk-active {
  color: #FF6A2B !important;
}

/* Sticky headers become glassy instead of flat */
.sticky {
  animation: tkSlideDown 0.45s var(--tk-ease);
}
.sticky.header-two {
  background: var(--tk-navy-glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -12px rgba(1, 15, 52, 0.55);
  margin-top: 0;
  padding: 6px 0;
}
.sticky.header-four .header-navigation {
  background: var(--tk-white-glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -14px rgba(1, 15, 52, 0.25);
}
@keyframes tkSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0.4;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Header phone box micro-interaction */
.nav-right-item .axis-support-box.style-one .icon img {
  transition: transform 0.4s var(--tk-ease);
}
.nav-right-item .axis-support-box.style-one:hover .icon img {
  transform: rotate(-12deg) scale(1.1);
}

/* Mobile off-canvas menu polish */
.theme-nav-menu {
  transition: all 0.45s var(--tk-ease) !important;
}
.offcanvas__overlay {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

/* ## 05. Buttons
----------------------------------------------------------------*/
.theme-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  will-change: transform;
  transition: transform 0.35s var(--tk-ease), box-shadow 0.35s var(--tk-ease), background-color 0.35s, color 0.35s;
}
.theme-btn.style-one {
  background: var(--tk-grad);
  box-shadow: 0 8px 22px -8px rgba(255, 59, 0, 0.5);
}
.theme-btn.style-one:hover {
  background: var(--tk-navy);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -10px rgba(1, 15, 52, 0.45);
}
.theme-btn.style-two:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -12px rgba(109, 48, 251, 0.45);
}
/* shine sweep */
.theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.35) 50%, transparent 80%);
  transform: skewX(-24deg);
  transition: left 0.65s var(--tk-ease);
  z-index: 1;
  pointer-events: none;
}
.theme-btn:hover::before {
  left: 130%;
}

.icon-btn {
  transition: all 0.35s var(--tk-ease) !important;
}
.icon-btn:hover {
  background: var(--tk-grad) !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: var(--tk-shadow-primary);
}
.icon-btn:hover i {
  transform: rotate(0deg) !important;
}

/* ## 06. Section Titles
----------------------------------------------------------------*/
.section-title .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 59, 0, 0.08);
  border: 1px solid rgba(255, 59, 0, 0.18);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-title .sub-title .line {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--tk-grad);
  margin: 0;
  animation: tkLinePulse 2.4s ease-in-out infinite;
}
.section-title.text-white .sub-title {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #FF8F4D;
}
@keyframes tkLinePulse {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(0.4); opacity: 0.6; }
}

/* Gradient highlight for key words in headings.
   SplitText wraps chars in child divs, so the clip must cascade to them. */
.tk-grad-text,
.tk-grad-text * {
  background-image: var(--tk-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary-color); /* fallback */
}

/* ## 07. Home Hero
----------------------------------------------------------------*/
.hero-wrapper_two {
  overflow: hidden;
}
/* readability + brand glow overlays over the photo */
.hero-wrapper_two::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(60% 80% at 85% 10%, rgba(109, 48, 251, 0.28) 0%, transparent 60%),
    radial-gradient(50% 65% at 8% 90%, rgba(255, 59, 0, 0.22) 0%, transparent 60%),
    linear-gradient(180deg, rgba(1, 15, 52, 0.55) 0%, rgba(1, 15, 52, 0.25) 45%, rgba(1, 15, 52, 0.65) 100%);
  pointer-events: none;
}
.hero-wrapper_two > .container,
.hero-wrapper_two .social-box-wrap {
  position: relative;
  z-index: 2;
}
.tk-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
}

/* hero tagline pill */
.tk-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  margin-bottom: 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.tk-hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2BD576;
  box-shadow: 0 0 0 0 rgba(43, 213, 118, 0.6);
  animation: tkPing 2s ease-out infinite;
}
@keyframes tkPing {
  0% { box-shadow: 0 0 0 0 rgba(43, 213, 118, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(43, 213, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(43, 213, 118, 0); }
}

/* avatar / trust box becomes a glass card */
.hero-wrapper_two .axis-avatar-box {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 34px;
  padding: 20px 28px;
  border-radius: var(--tk-radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.45);
}
.hero-wrapper_two .axis-avatar-box .avatar-list ul li img {
  transition: transform 0.35s var(--tk-ease);
}
.hero-wrapper_two .axis-avatar-box .avatar-list ul li:hover img {
  transform: translateY(-5px) scale(1.08);
}
.hero-wrapper_two .axis-avatar-box > p {
  max-width: 320px;
  margin: 0;
}
@media (max-width: 1199.98px) {
  .hero-wrapper_two .axis-avatar-box {
    justify-content: center;
  }
}

/* hero stats strip */
.tk-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 44px;
  margin-top: 34px;
}
.tk-hero-stats .tk-stat h5 {
  font-size: clamp(26px, 3vw, 36px);
  color: #fff;
  margin-bottom: 2px;
  font-weight: 700;
}
.tk-hero-stats .tk-stat h5 span.accent {
  color: #FF6A2B;
}
.tk-hero-stats .tk-stat p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin: 0;
}
@media (max-width: 1199.98px) {
  .tk-hero-stats {
    justify-content: center;
  }
}

.hero-wrapper_two .hero-content h2 {
  margin-bottom: 22px;
}

/* hero button row */
.hero-wrapper_two .axis-button {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
@media (max-width: 1199.98px) {
  .hero-wrapper_two .axis-button {
    justify-content: center;
  }
}
.theme-btn.tk-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.theme-btn.tk-btn-ghost:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}

/* scroll indicator */
.tk-scroll-hint {
  position: absolute;
  right: 80px;
  bottom: 44px;
  z-index: 2;
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  display: block;
}
.tk-scroll-hint::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 9px;
  margin-left: -2px;
  border-radius: 4px;
  background: #fff;
  animation: tkScrollWheel 1.8s var(--tk-ease) infinite;
}
@keyframes tkScrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@media (max-width: 1199.98px) {
  .tk-scroll-hint {
    display: none;
  }
}

/* ## 08. Inner Page Hero
----------------------------------------------------------------*/
.page-hero {
  overflow: hidden;
}
.page-hero::after {
  background:
    radial-gradient(55% 90% at 88% 0%, rgba(109, 48, 251, 0.35) 0%, transparent 60%),
    radial-gradient(45% 70% at 5% 100%, rgba(255, 59, 0, 0.28) 0%, transparent 55%),
    linear-gradient(180deg, rgba(1, 15, 52, 0.82) 0%, rgba(1, 15, 52, 0.68) 100%) !important;
}
.page-hero .page-content {
  position: relative;
  z-index: 3;
}
.page-hero .page-content h1 {
  animation: tkRiseIn 0.9s var(--tk-ease) both;
}
.page-hero .page-content ul {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: tkRiseIn 0.9s 0.15s var(--tk-ease) both;
}
.page-hero .page-content ul li a:hover {
  color: #FF6A2B;
}
@keyframes tkRiseIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ## 09. Cards (services / iconic boxes)
----------------------------------------------------------------*/
/* Service cards — grid alignment: equal height, CTA pinned to bottom */
.axis-service_two .row > [class*="col-"] {
  display: flex;
}
.axis-service_two .row > [class*="col-"] > .axis-iconic-box {
  width: 100%;
}
.axis-iconic-box.style-two {
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--tk-border-soft);
  box-shadow: var(--tk-shadow-sm);
  transition: transform 0.45s var(--tk-ease), box-shadow 0.45s var(--tk-ease), background-color 0.45s ease;
  overflow: hidden;
  isolation: isolate;
}
.axis-iconic-box.style-two .content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.axis-iconic-box.style-two .content .icon-btn {
  margin-top: auto;
  align-self: flex-start;
}
.axis-iconic-box.style-two .content p {
  margin-bottom: 22px;
}
.axis-iconic-box.style-two .content p br {
  display: none; /* neutralize legacy <br> height hacks */
}
/* top accent line sweeps in on hover */
.axis-iconic-box.style-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--tk-grad);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--tk-ease);
  z-index: 2;
}
.axis-iconic-box.style-two:hover::before {
  transform: scaleX(1);
}
/* cursor spotlight (driven by JS custom props) */
.axis-iconic-box.style-two::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 106, 43, 0.14), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.axis-iconic-box.style-two:hover::after {
  opacity: 1;
}
.axis-iconic-box.style-two:hover {
  transform: translateY(-8px);
  box-shadow: var(--tk-shadow-lg);
}
.axis-iconic-box.style-two .icon {
  box-shadow: var(--tk-shadow-sm);
  transition: transform 0.45s var(--tk-ease), box-shadow 0.45s ease;
}
.axis-iconic-box.style-two .icon img {
  transition: transform 0.45s var(--tk-ease);
}
.axis-iconic-box.style-two:hover .icon {
  transform: translateY(-4px) rotate(-4deg);
  box-shadow: var(--tk-shadow-primary);
}
.axis-iconic-box.style-two:hover .icon img {
  transform: scale(1.12);
}
.axis-iconic-box.style-two .content h4 a {
  transition: color 0.3s;
}
.axis-iconic-box.style-two:hover .content p {
  color: rgba(255, 255, 255, 0.72);
}

/* Glass process cards (How We Work section) */
.axis-iconic-box.style-one {
  transition: transform 0.45s var(--tk-ease), border-color 0.45s ease, background-color 0.45s ease, box-shadow 0.45s ease;
}
.axis-iconic-box.style-one:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 43, 0.55);
  background-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.5);
}
.axis-iconic-box.style-one .icon img {
  transition: transform 0.5s var(--tk-ease);
}
.axis-iconic-box.style-one:hover .icon img {
  transform: translateY(-6px) scale(1.08);
}

/* ## 10. Client Logos
----------------------------------------------------------------*/
.axis-client-item .client-img img {
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s var(--tk-ease);
}
.axis-client-item:hover .client-img img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.08);
}

/* ## 11. Tabs, Accordion & Lists
----------------------------------------------------------------*/
.axis-about_one .axis-content-box .nav-tabs .nav-link {
  border-radius: 50px !important;
  transition: all 0.35s var(--tk-ease);
}
.axis-about_one .axis-content-box .nav-tabs .nav-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}
.axis-about_one .axis-content-box .nav-tabs .nav-link.active {
  background: var(--tk-grad) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 8px 20px -8px rgba(255, 59, 0, 0.55);
}

.accordion-card {
  transition: box-shadow 0.35s ease, transform 0.35s var(--tk-ease), border-color 0.35s ease;
  border: 1px solid transparent;
}
.accordion-card:hover {
  box-shadow: var(--tk-shadow-md);
  transform: translateY(-2px);
}
.accordion-card:has(.accordion-title[aria-expanded="true"]) {
  border-color: rgba(255, 59, 0, 0.3);
  box-shadow: var(--tk-shadow-md);
}
.accordion-card .accordion-title[aria-expanded="true"] {
  color: var(--primary-color) !important;
}

.check-list li {
  transition: transform 0.3s var(--tk-ease);
}
.check-list li:hover {
  transform: translateX(5px);
}
.check-list li i {
  background: var(--tk-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ## 12. Forms & Contact
----------------------------------------------------------------*/
.form_control {
  border-radius: 14px !important;
  border: 1.5px solid var(--tk-border-soft) !important;
  background-color: #fff !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}
.form_control:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 4px rgba(255, 59, 0, 0.12) !important;
}
.contact-form-wrapper {
  border-radius: var(--tk-radius-lg);
  box-shadow: var(--tk-shadow-lg);
  border: 1px solid var(--tk-border-soft);
  position: relative;
  overflow: hidden;
}
.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--tk-grad);
}
.map-box {
  border-radius: var(--tk-radius);
  overflow: hidden;
  box-shadow: var(--tk-shadow-md);
}
.map-box iframe {
  display: block;
  width: 100%;
  filter: saturate(0.85);
  transition: filter 0.4s ease;
}
.map-box:hover iframe {
  filter: saturate(1.1);
}

/* ## 13. Info Boxes & Support Box
----------------------------------------------------------------*/
.axis-info-box .icon,
.axis-info-box .icon i {
  transition: all 0.35s var(--tk-ease);
}
.axis-info-box:hover .icon {
  transform: translateY(-4px) rotate(-6deg);
}
.axis-info-box.style-three .icon {
  border-radius: 16px;
}
.axis-info-box.style-three:hover .icon {
  background: var(--tk-grad) !important;
  color: #fff !important;
  box-shadow: var(--tk-shadow-primary);
}
.axis-info-box.style-three:hover .icon i {
  color: #fff !important;
}

/* ## 14. Images & Media
----------------------------------------------------------------*/
.axis-image {
  overflow: hidden;
  border-radius: var(--tk-radius-lg);
}
.axis-image img {
  transition: transform 0.8s var(--tk-ease);
  will-change: transform;
}
.axis-image:hover img {
  transform: scale(1.06);
}

/* decorative shapes float gently */
.axis-about_one .shape img,
.shape img {
  animation: tkFloat 7s ease-in-out infinite;
}

/* ## 15. Footer
----------------------------------------------------------------*/
.main-footer {
  position: relative;
  isolation: isolate;
}
.main-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(45% 60% at 92% 8%, rgba(109, 48, 251, 0.25) 0%, transparent 60%),
    radial-gradient(40% 55% at 4% 95%, rgba(255, 59, 0, 0.16) 0%, transparent 55%);
  pointer-events: none;
}
.footer-widget .widget-nav li a {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s var(--tk-ease);
}
.footer-widget .widget-nav li a:hover {
  color: #FF6A2B;
  transform: translateX(6px);
}
.footer-widget .line-wrap span {
  background: var(--tk-grad) !important;
}
.main-footer .social-box a {
  transition: all 0.35s var(--tk-ease) !important;
}
.main-footer .social-box a:hover {
  background: var(--tk-grad) !important;
  color: #fff !important;
  transform: translateY(-4px);
  box-shadow: var(--tk-shadow-primary);
}
.main-footer .axis-info-box.style-two {
  transition: transform 0.3s var(--tk-ease);
}
.main-footer .axis-info-box.style-two:hover {
  transform: translateX(5px);
}
.copyright-area {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ## 16. Generic Card Hovers (team / blog / project / pricing)
----------------------------------------------------------------*/
.axis-team-item,
.axis-blog-post-item,
.axis-project-item,
.axis-pricing-item {
  transition: transform 0.45s var(--tk-ease), box-shadow 0.45s ease;
  border-radius: var(--tk-radius);
}
.axis-team-item:hover,
.axis-blog-post-item:hover,
.axis-project-item:hover,
.axis-pricing-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--tk-shadow-lg);
}

/* ## 17. Keyframes & Utilities
----------------------------------------------------------------*/
@keyframes tkFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}

.tk-tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ## 18. Accessibility & Reduced Motion
----------------------------------------------------------------*/
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.15s !important;
  }
  .tk-hero-canvas,
  .tk-scroll-hint {
    display: none !important;
  }
}
