@font-face {
  font-family: "Avenir Next LT Pro";
  src: url("fonts/Avenir-Next-LT-Pro-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  /* offset for sticky header when scrolling to anchors */
}

/* When Lenis is active, native smooth scroll is disabled to avoid double behavior */
html.lenis,
html.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis-stopped {
  overflow: hidden;
}

.lenis-smooth iframe {
  pointer-events: none;
}


a {
  transition: 0.3s all ease;
}

button {
  cursor: pointer;
}

select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(images/select-input-arrow.png);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: calc(100% - 15px) 50%;
}

.header-nav {
  top: 0;
  left: 0;
  right: 0;
  padding: 14px 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transition: padding 0.35s ease;
}

.header-shell {
  /* max-width: min(1260px, calc(100% - 28px)); */
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(31, 20, 41, 0.12);
  transition: max-width 0.42s ease, border-radius 0.32s ease, background 0.32s ease, box-shadow 0.32s ease;
}

.header-row {
  min-height: 74px;
  padding-inline: 20px;
  transition: min-height 0.35s ease, padding 0.35s ease;
}

.header-logo img {
  transition: max-width 0.35s ease, transform 0.35s ease;
}

.nav-items,
.nav-actions,
.nav-lang,
.header-burger {
  transition: opacity 0.3s ease, transform 0.3s ease, max-width 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

.header-nav.menu-sticky .header-shell {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(26, 13, 35, 0.16);
}

.header-nav.header-compact {
  padding: 10px 0;
}

.header-nav.header-compact .header-shell {
  /* max-width: 760px; */
  max-width: 450px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.header-nav.header-compact .header-row {
  min-height: 58px;
  padding-inline: 18px;
  justify-content: space-between !important;
}

.header-nav.header-compact .header-logo img {
  max-width: 128px !important;
}

.header-nav.header-compact .nav-items {
  display: none !important;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transform: translateY(-8px);
  pointer-events: none;
}

.header-nav.header-compact .nav-lang {
  display: none !important;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  margin-right: 0 !important;
  transform: translateY(-6px);
  pointer-events: none;
}

.header-nav.header-compact .nav-actions {
  margin-left: auto !important;
  padding-right: 0 !important;
}

.header-nav.header-compact .nav-actions> :not([hidden])~:not([hidden]) {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.header-nav.header-compact .nav-cta-wrap {
  padding: 3px;
  transform: scale(0.92);
  margin-left: 0 !important;
}

.header-nav.header-expanded .nav-items,
.header-nav.header-expanded .nav-actions,
.header-nav.header-expanded .nav-lang {
  opacity: 1;
  max-width: 1200px;
  transform: translateY(0);
  pointer-events: auto;
}

@media screen and (max-width: 1279px) {
  .header-nav {
    padding: 10px 0;
  }

  .header-nav:not(.header-compact) .header-shell {
    max-width: calc(100% - 30px);
    border-radius: 18px;
  }

  .header-nav.header-compact .header-shell {
    max-width: 95%;
    border-radius: 999px;
  }

  .header-row {
    min-height: 58px;
    padding-inline: 12px;
  }

  .header-nav.header-compact .nav-actions {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transform: translateY(-8px);
    pointer-events: none;
  }

  .header-nav.header-compact .header-burger {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-items a {
  padding-block: 12px !important;
  line-height: 20px;
}

.btn-primary {
  padding: 14px 26px;
  background: #7e2a8d;
  /* background-image: url(images/button-bg.png); */
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 70px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  border: 2px solid #B14EC2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  box-shadow: 0 8px 20px rgba(177, 78, 194, 0.4);
}

/* btn secondary */
.btn-secondary {
  padding: 14px 26px;
  background: transparent;
  border-radius: 70px;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  border: 2px solid #B14EC2;
  color: #B14EC2;
  cursor: pointer;
}

.btn-secondary:hover {
  box-shadow: 0 8px 20px rgba(177, 78, 194, 0.4);
  background: #7e2a8d;
  /* background-image: url(images/button-bg.png); */
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 100% 100%;
  color: #fff;
}

.bg-purple {
  background: #FCF9FE;
}

/* hero CTA hover glow + full dot field with cursor urgency */
.hero-hurry-btn {
  /* .hero_section .hero-hurry-btn { */
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* .hero_section .hero-hurry-btn::before { */
.hero-hurry-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--hurry-rot, 0deg),
      rgba(177, 78, 194, 0.15),
      rgba(255, 255, 255, 0.9),
      rgba(177, 78, 194, 1),
      rgba(97, 43, 153, 1),
      rgba(177, 78, 194, 0.15));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
  z-index: 4;
}

.hero_section .hero-hurry-btn:hover::before {
  opacity: 1;
  animation: hurry-spin 1.2s linear infinite;
}

.hero_section .hero-hurry-btn.btn-primary:hover,
.hero_section .hero-hurry-btn.btn-secondary:hover {
  box-shadow: 0 0 0 1px rgba(177, 78, 194, 0.6), 0 0 28px rgba(177, 78, 194, 0.55), 0 10px 30px rgba(73, 20, 90, 0.32);
}

.hero-hurry-label {
  position: relative;
  z-index: 3;
}

.hero-hurry-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.16s ease;
  z-index: 1;
}

.hero-hurry-btn.is-hurry-active .hero-hurry-field {
  opacity: 1;
}

.hero-hurry-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #f5deff 45%, #b85fff 100%);
  box-shadow: 0 0 7px rgba(197, 116, 255, 0.72);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  pointer-events: none;
}

@keyframes hurry-spin {
  to {
    --hurry-rot: 360deg;
  }
}

/* About section scroll reveal line + staged content */
.about-reveal-section {
  position: relative;
  overflow: hidden;
}

.about-reveal-item {
  position: relative;
  z-index: 2;
}

.nav-items>a.active {
  padding: 5px;
  border-bottom: 1px solid #000;
}

.nav-items>a.active:hover {
  border-color: #7E2A8D;
}

:root {
  --joy-border: 2px;
  --joy-radius: 999px;
  --joy-purple: #7E2A8D;
}

.joy-btn-wrap {
  display: inline-flex;
  align-items: center;
  padding: 6px;
  border-radius: 999px;
  background: rgba(126, 42, 141, 0.14);
}

.joy-nav-circle {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: var(--joy-radius);
  background: linear-gradient(90deg, #5f2170 0%, #7E2A8D 52%, #5a1f68 100%);
  color: #fff;
  font-family: "Geo", "Avenir Next LT Pro", monospace;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1;
  text-transform: uppercase;
  text-wrap: nowrap;
  cursor: pointer;
  overflow: hidden;
  animation: glow 2s linear infinite;
  will-change: box-shadow;
  z-index: 0;
  box-shadow: 0 0 0 1px rgba(126, 42, 141, 0.25);
}

.joy-nav-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1 / 1;
  width: 175%;
  height: auto;
  border-radius: 50%;
  background: conic-gradient(from 90deg,
      rgba(126, 42, 141, 0.1) 0deg,
      #f6eeff 20deg,
      #7e2a8d 115deg,
      #12001f 250deg,
      #f6eeff 330deg,
      rgba(126, 42, 141, 0.1) 360deg);
  animation: spin 2s linear infinite;
  transform: translate(-50%, -50%);
  z-index: -2;
}

.joy-nav-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - var(--joy-border));
  height: calc(100% - var(--joy-border));
  background: linear-gradient(90deg, rgba(73, 25, 86, 0.94), rgba(126, 42, 141, 0.92), rgba(73, 25, 86, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.68);
  transform: translate(-50%, -50%);
  border-radius: var(--joy-radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: -1;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0 0 rgba(126, 42, 141, 0), 0 0 0 1px rgba(126, 42, 141, 0.25);
  }

  25% {
    box-shadow: 0 0 0 6px rgba(126, 42, 141, 0.18), 0 0 0 1px rgba(126, 42, 141, 0.35);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(126, 42, 141, 0), 0 0 0 1px rgba(126, 42, 141, 0.25);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(126, 42, 141, 0), 0 0 0 1px rgba(126, 42, 141, 0.25);
  }
}

.lang-flags>button img {
  filter: grayscale(100%);
  border-radius: 100%;
  transition: 0.3s;
}

.lang-flags>button:hover img {
  filter: grayscale(0);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);

}

.lang-flags>button.active img {
  filter: grayscale(0);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
}

.rippling {
  border: 3px solid #7E2A8D;
  border-radius: 30px;
  height: 25px;
  width: 25px;
  left: 15px;
  top: 15px;
  animation: pulsate 1s ease-out infinite;
  opacity: 0;
}

@keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

/* .hero_section {
  background: url(./images/grid-layer.png);
  background-repeat: no-repeat;
  background-size: cover;
} */

.hero_section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #fdf9ff;
  background-image: linear-gradient(to right,
      rgba(244, 238, 252, 0.9) 1px,
      transparent 1px),
    linear-gradient(to bottom,
      rgba(244, 238, 252, 0.9) 1px,
      transparent 1px);
  background-size: 64px 64px;
}

canvas.webgl-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

/* hero globe */

.zulficarjoy-globe-wrapper {
  position: absolute;
  top: 30px;
  right: -56px;
  width: clamp(360px, 46vw, 760px);
  aspect-ratio: 1 / 1;
  z-index: 1;
  pointer-events: auto;
  touch-action: none;
}

.zulficarjoy-globe-wrapper .canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
}

@media screen and (max-width: 991px) {
  .zulficarjoy-globe-wrapper {
    position: relative;
    top: auto;
    right: auto;
    width: min(92vw, 560px);
    margin: 24px auto 0;
  }
}

.hero-info-box {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 200px;
  max-width: 260px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -120%) scale(0.9);
  transform-origin: bottom center;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-info-box-inner {
  background: rgba(5, 14, 24, 0.92);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(126, 210, 255, 0.35);
  backdrop-filter: blur(18px);
}

.hero-info-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7ed0ff;
  margin-bottom: 6px;
}

.hero-info-body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #e1f4ff;
  opacity: 0.9;
}

.hero-info-box--visible {
  opacity: 1;
  transform: translateY(0px) scale(1);
}


/* hero globe :end */

.hero_brands {
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.hero_brands ul li {
  color: #0A0A0A;
  font-weight: 400;
}

.accordion-item {
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
}

.accordion-item.active {
  flex: 2.5;
}

.accordion-item {
  transition: 0.5s;
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
}

.accordion-item.active .vertical-text {
  writing-mode: horizontal-tb;
  transform: rotate(0deg);
  flex: 0;
}

.accordion-content {
  transition: opacity 0.4s ease 0.1s;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.accordion-item.active .accordion-content {
  opacity: 1;
  max-height: 500px;
}

.accordion-item:hover {
  background-color: rgb(177 78 194 / 11%);
}

.accordion-item-content {
  transition: all 0.75s cubic-bezier(0.25, 1, 0.35, 1);
}

.accordion-item.active .accordion-item-content {
  align-items: flex-start !important;
}

.accordion-item.active .hero_acctitle {
  display: none;
}

.hero_acc_wrapper {
  border-radius: 24px;
}

.skltbs-active {
  color: var(--color-primary);
}

.brand_slide2 {
  overflow: hidden;
  position: relative;
  background-color: #fff;
}

.brand_slide2:before,
.brand_slide2:after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}

.brand_slide2:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.brand_slide2:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}



/* 
.kanjTechExpertise_overlays img {
  position: relative;
  display: block;
  z-index: 5;
}
.kanjTechExpertise_overlays > div > div::before {
  content: "";
  display: block;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  transform: scale(1);
  background: url(./images/vector/dots-pattern.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.kanjTechExpertise_overlays > div > div:hover:before {
  transform: scale(2.2);
} */


.dotAnimated_section {
  position: relative;
  overflow: hidden;
}

.kanj-exp-item {
  will-change: transform, opacity;
}

.kanj-exp-item img {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.partner-cluster,
.partner-cluster-inner,
.partner-float {
  will-change: transform, opacity;
}

.partner-float {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.gridCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.partners-dots-canvas {
  pointer-events: auto;
}


.footer-links li a:after {
  transition: 0.3s;
}

.showcase-banner {
  background: url(./images/thumb/1.png);
  background-size: cover;
}

.benefits-banner {
  background: url(./images/thumb/3.png);
  background-size: cover;
}

.howwework_section {
  background: url(./images/banner/1.png);
  background-size: cover;
  background-repeat: no-repeat;
}


.teamSwiper .swiper-slide {
  filter: grayscale(100%);
  transition: transform 0.3s ease;
}

.teamSwiper .swiper-slide.swiper-slide-active {
  filter: grayscale(0);
  transform: translateY(-64px);
}

.teamSwiper .swiper-slide.swiper-slide-next,
.teamSwiper .swiper-slide.swiper-slide-prev {
  transform: translateY(-32px);
}

.teamSwiper .swiper-wrapper {
  padding: 100px 0;
}



#testimonial-splide .splide__slide {
  transform: scale(0.8);

}

#testimonial-splide .splide__slide.is-active {
  transform: scale(1) !important;
  transition: transform 1s;
}

#testimonial-splide .splide__slide.is-prev {
  transform: scale(0.9) !important;
  transition: transform 1s;
}

#testimonial-splide .splide__slide.is-next {
  transform: scale(0.9) !important;
  transition: transform 1s;
}

#testimonial-splide .splide__slide.is-visible {
  transform: scale(0.8);
  transition: transform 1s;
}




.faq-accordion-item {
  transition: all 0.3s ease;
}

.faq-accordion-icon {
  transition: transform 0.3s ease;
}


.ie-accordion-item .ie-accordion-content {
  display: none;
  transition: 0.3s all;
}

.ie-accordion-item.active .ie-accordion-content {
  display: block;
}

.ie-accordion-item.active button {
  color: #7E2A8D;
}


.mobile-contact-bg {
  background: url(./images/banner/3.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: left;
}



@media screen and (min-width: 992px) {
  .contact-bg {
    background: url(./images/thumb/11.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: left;
  }

}


@media screen and (max-width: 575px) {

  .brand_slide2:before,
  .brand_slide2:after {
    position: absolute;
    top: 0;
    content: '';
    width: 50px;
    height: 100%;
    z-index: 2;
  }

  .btn-primary {
    display: block;
    width: 100%;
    background: #7e2a8d;
    /* background-image: url(images/button-bg-sm.png); */
    background-color: #7E2A8D;
    text-align: center;
    font-size: 14px;
  }

  .btn-secondary {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 14px;
  }

  .btn-secondary:hover {
    background: transparent;
    color: #7E2A8D;
  }

}



.fill-text-span {
  -webkit-background-clip: text;
  background-clip: text;
  background-color: #9E9E9E;
  background-image: linear-gradient(135deg, #000000 50%, #9E9E9E 60%);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 0% 200%;
  color: transparent;
  display: inline;
  will-change: background-size;
}

@media (prefers-reduced-motion: reduce) {
  .fill-text-span {
    background-size: 200% 200%;
  }
}

/* .js-fill {
    font-family: "Avenir Next LT Pro";
    font-weight: 400 !important;
  } */

html:not(.no-js) [data-aos="fade-up"] {
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

html:not(.no-js) [data-aos="fade-down"] {
  -webkit-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -20px, 0);
}

html:not(.no-js) [data-aos="fade-left"] {
  -webkit-transform: translate3d(20px, 0, 0);
  transform: translate3d(20px, 0, 0);
}

html:not(.no-js) [data-aos="fade-right"] {
  -webkit-transform: translate3d(-20px, 0, 0);
  transform: translate3d(-20px, 0, 0);
}