:root {
  --c1: rgb(166, 52, 172);
  --c2: rgb(236, 31, 255);
  --c3: rgb(179, 70, 254);
  --c4: rgb(30, 30, 30);
  --c5: rgb(255, 255, 255);
  --c6: rgb(0, 0, 0);
  --c7: rgb(178, 178, 178);
  --c8: rgba(255, 255, 255, 60%);
  --c9: rgba(0, 0, 0, 60%);
  --btn: linear-gradient(180deg, rgb(158, 39, 154) 0%, rgb(199, 104, 242) 100%);
  --bg: linear-gradient(
    -109.925deg,
    rgb(89, 10, 87) 0%,
    rgb(199, 104, 242) 100%
  );
  --foter-btn-bg: linear-gradient(180deg, #ffc3fd 0%, #c768f2 100%);
  --font-primary: "SF Pro Display", sans-serif;
  --font-secondary: "Avilock", cursive;
  --space-10: clamp(8px, 0.5vw, 10px);
  --space-15: clamp(12px, 0.8vw, 15px);
  --space-16: clamp(16px, 1vw, 18px);
  --space-18: clamp(18px, 1.2vw, 20px);
  --space-20: clamp(16px, 1vw, 20px);
  --space-30: clamp(24px, 1.5vw, 30px);
  --space-36: clamp(26px, 1.8vw, 36px);
  --space-40: clamp(32px, 2vw, 40px);
  --space-50: clamp(40px, 2.5vw, 50px);
  --space-60: clamp(48px, 3vw, 60px);
  --space-70: clamp(56px, 3.5vw, 70px);
  --space-80: clamp(64px, 4vw, 80px);
  --space-90: clamp(72px, 4.5vw, 90px);
  --space-100: clamp(80px, 5vw, 100px);
  --space-120: clamp(96px, 6vw, 120px);
  --space-140: clamp(112px, 7vw, 140px);
  --space-160: clamp(128px, 8vw, 160px);
  --space-180: clamp(144px, 9vw, 180px);
  --space-200: clamp(160px, 10vw, 200px);
}
.py-10 {
  padding-block: var(--space-10);
}
.py-20 {
  padding-block: var(--space-20);
}
.py-30 {
  padding-block: var(--space-30);
}
.py-40 {
  padding-block: var(--space-40);
}
.py-50 {
  padding-block: var(--space-50);
}
.py-60 {
  padding-block: var(--space-60);
}
.py-70 {
  padding-block: var(--space-70);
}
.py-80 {
  padding-block: var(--space-80);
}
.py-90 {
  padding-block: var(--space-90);
}
.py-100 {
  padding-block: var(--space-100);
}
.py-120 {
  padding-block: var(--space-120);
}
.py-140 {
  padding-block: var(--space-140);
}
.py-160 {
  padding-block: var(--space-160);
}
.py-180 {
  padding-block: var(--space-180);
}
.py-200 {
  padding-block: var(--space-200);
}
::selection {
  background: var(--c1);
  color: var(--c5);
}
::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--btn);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  color: var(--c4);
  background: var(--c5);
  overflow: hidden;
}
.wrapper {
  z-index: 0;
  position: relative;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
  border: none;
  color: var(--c5);
}
input,
textarea {
  font-family: inherit;
}
.web-color {
  color: var(--c8);
}
.section-bg {
  background-color: var(--c4);
}
.cust-gap {
  row-gap: 24px;
}
/* HEADING */
h1.web-title {
  font-size: clamp(70px, 18vw, 360px);
  font-family: var(--font-secondary);
  line-height: 0.6;
}

h1.web-title-two {
  font-size: clamp(60px, 13vw, 255px);
  font-family: var(--font-secondary);
  line-height: 1.2;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-stroke: clamp(1px, 0.18vw, 3px) rgb(255 255 255 / 80%);
}

h2.web-title {
  font-size: clamp(36px, 5vw, 98px);
  font-family: var(--font-secondary);
  line-height: 1.1;
}

h2.web-title-two {
  font-size: clamp(42px, 6vw, 123px);
  font-family: var(--font-secondary);
  color: var(--c1);
  line-height: 1.1;
}

h3.web-title {
  font-size: clamp(28px, 2.8vw, 51px);
  color: var(--c5);
  line-height: 1.25;
}

h4.web-title {
  font-size: clamp(20px, 1.6vw, 28px);
  color: var(--c5);
  line-height: 1.3;
  font-weight: 500;
}

h6.webtitle {
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 500;
  line-height: 1.3;
}

p {
  font-size: var(--space-16);
  font-weight: 400;
  color: var(--c9);
  line-height: 1.3;
}
p span {
  font-weight: 500;
  color: var(--c1);
}
.web-btn {
  font-size: var(--space-18);
  padding: var(--space-15) var(--space-30);
  background: var(--btn);
  border-radius: var(--space-30);
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
}
.web-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.65s cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
  z-index: 2;
}

.web-btn:hover::after {
  left: 125%;
}
.web-btn:hover {
  color: var(--c5);
  background: var(--bg);
}
.web-btn .btn-magnet-inner {
  display: inline-block;
  will-change: transform;
}
@keyframes up-down {
  0% {
    transform: translateY(0);
  }

  33% {
    transform: translateY(20px);
  }

  60% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

/* OVERLAY */
.overlay::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(180px);
  bottom: -100px;
  right: -100px;
  background: #9a59b5;
  z-index: -1;
  opacity: 0.3;
}
.overlay::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(150px);
  background-color: var(--c1);
  bottom: -100px;
  left: 0px;
  z-index: 0;
}

/* HEADER */
.header {
  position: absolute;
  left: 0;
  top: 40px;
  width: 100%;
  z-index: 991;
}
.site-logo a {
  width: clamp(150px, 22vw, 70%);
  display: inline-block;
}
.site-logo a img {
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.4s ease;
}

.site-logo a:hover img {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 6px 18px rgba(166, 52, 172, 0.35));
}

.header_menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.header_menu ul li a {
  font-size: var(--space-18);
  text-transform: capitalize;
  letter-spacing: 1px;
  position: relative;
  font-weight: 300;
}
.header_menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--c1, #a634ac);
  transition: width 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.header_menu ul li a:hover::after {
  width: 100%;
}
/* BANNER START */
.banner {
  height: 100vh;
  perspective: 1400px;
}
.banner-content {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: var(--c5);
  z-index: 9999;
  will-change: transform;
}
.banner .shape {
  position: absolute;
  z-index: 0;
  will-change: transform;
}
.top-left {
  left: 170px;
  top: 160px;
}
.top-right {
  right: 300px;
  top: 120px;
}

.bottom-right {
  bottom: 220px;
  right: 290px;
}
.bottom-left {
  left: 330px;
  bottom: 160px;
}

.banner-btn {
  margin-top: var(--space-30);
}
.banner-img {
  position: absolute;
  left: 50%;
  bottom: 70px;
  width: 30%;
  transform: translateX(-50%);
  will-change: transform;
  transform-style: preserve-3d;
  overflow: visible !important;
}
.down-arrow {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  z-index: 99;
  background: var(--c1);
  border-radius: 30px;
  width: 50px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #161f26;
  animation: up-down 6s infinite linear;
}
/* DIGITAL */
.digital-head p {
  font-size: clamp(16px, 1vw + 0.5rem, 23px);
  line-height: clamp(26px, 1.8vw + 0.8rem, 40px);
}
body.index .digital-head .img {
  position: absolute;
  right: -160px;
  top: -20px;
  border-radius: 90px;
  overflow: hidden;
  width: 300px;
  height: auto;
}

/* BUILD */
.build h1.web-title-two {
  opacity: 0.2;
  padding-left: 50px;
}
.service-card {
  background: #211f22;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 30px;
  position: relative;
  z-index: 9999999999;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
  will-change: transform;
  height: 100%;
}
.service-card::before {
  background: var(--btn);
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 30px;
  -webkit-mask:
    linear-gradient(#211f22d4 0 0) content-box,
    linear-gradient(#211f22 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.2;
}
.service-card:hover::before {
  background: linear-gradient(
    180deg,
    rgb(158, 39, 154) 0%,
    rgb(199, 104, 242) 10%
  );
  opacity: 0.6;
}
.service-card .icon {
  width: 80px;
  height: 80px;
  background: var(--btn);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  right: 30px;
  bottom: -29px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.service-card:hover .icon {
  opacity: 1;
  transform: rotate(-14deg) scale(1.1);
}
.build .container.overlay::after {
  background: var(--c5) !important;
  width: 50%;
  height: 50%;
  filter: blur(580px);
  bottom: 0px;
  right: 0px;
  opacity: 0.3;
}
.build .container.overlay::before {
  content: unset;
}

/* OUR WORK */
.work-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.work-img.work-img-1 {
  transform: rotate(15deg);
  z-index: 991;
}
.work-img.work-img-2 {
  margin-top: -310px;
  transform: rotate(-9deg);
  z-index: 0;
}
.work-img.work-img-3 {
  transform: rotate(-10deg);
  z-index: 992;
}
.work-img.work-img-4 {
  margin-top: -230px;
  transform: rotate(7deg);
  z-index: 993;
}
.main-img {
  margin-bottom: -80px;
  overflow: hidden;
}

/* COUNTER */
.counter.overlay::after {
  width: 1500px;
  height: 200px;
  filter: blur(300px);
  bottom: 0px;
  right: -100px;
  background: #10001a;
  z-index: -9;
}
.counter.overlay::before {
  width: 400px;
  height: 400px;
  filter: blur(250px);
  background-color: var(--c1);
  bottom: 0;
  left: 70px;
  z-index: -9;
}
/* PACKAGES */
.portfolio-btns .nav-tabs {
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-10);
  justify-content: center;
}
.portfolio-btns .nav-tabs .nav-link {
  background: transparent;
  color: var(--c4);
  font-weight: 600;
  font-size: var(--space-20);
  padding: 12px 30px;
  border: 1px solid var(--c4);
  transition: all 0.6s ease-in-out;
  border-radius: 30px;
}
.portfolio-btns .nav-tabs .nav-link.active,
.portfolio-btns .nav-tabs .nav-link:hover {
  background: var(--btn);
  color: var(--c5);
  border-color: var(--c1);
}
.package-item {
  position: relative;
  background: url(../images/landing/packages.webp);
  padding: var(--space-30) var(--space-20) var(--space-20);
  height: 100%;
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  border: 1px solid var(--c1);
  border-radius: var(--space-30);
  transition: transform 0.4s ease;
}
.pack-batch {
  position: absolute;
  top: var(--space-16);
  right: var(--space-16);
  background: rgba(47, 168, 255, 0.12);
  color: var(--active-border);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
}
.package-header span {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: bold;
  margin-bottom: clamp(8px, 10px, 15px);
  color: var(--c4);
  text-align: center;
  display: block;
}
.package-header .pricing h5 {
  font-size: clamp(42px, 5.5vw, 86px);
  font-weight: bold;
  text-align: center;
  color: var(--c4);
  font-family: var(--font-secondary);
}
.pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.pricing> span {
    text-decoration: line-through;
}
.package-list {
  max-height: 320px;
  overflow-y: auto;
  margin-bottom: var(--space-40);
}
.package-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--space-20);
  color: var(--c4);
  padding: var(--space-10);
  border-bottom: 1px solid rgb(0 0 0 / 21%);
  font-weight: 300;
}
.package-list li::before {
  content: "\f00c";
  flex: 0 0 auto;
  width: var(--space-18);
  height: var(--space-18);
  border-radius: 50%;
  background: var(--btn);
  color: var(--c5);
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
}
.package-list::-webkit-scrollbar {
  width: 2px;
}
.port-items-main {
  position: relative;
}
.pricing-swiper .swiper-button-next,
.pricing-swiper .swiper-button-prev {
  color: var(--c5);
  background: var(--btn);
  border: 1px solid var(--btn);
  width: 50px;
  height: 50px;
  border-radius: 8px;
}
.pricing-swiper .swiper-button-next::after,
.pricing-swiper .swiper-button-prev::after {
  font-size: 30px;
  font-weight: 100;
}
.package-btn .hover-btn {
  font-family: var(--site-font);
  font-size: 14px;
  text-align: center;
}
.package-btn {
  text-align: center;
}
.pack-btn-main a.hover-btn-2 {
  border-color: var(--c3);
  color: var(--c3);
  box-shadow: -5px 5px 3px var(--c3);
}

/* BLOG */
.blog-main {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 30px;
  cursor: pointer;
}
.blog-main .content {
  position: absolute;
  left: 20px;
  bottom: -40px;
  transition: all 0.6s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  z-index: 9994;
  width: 80%;
}
.ctn h6.web-title {
  margin-bottom: var(--space-10);
  font-size: var(--space-30);
  font-family: var(--site-font);
  font-weight: 500;
}
.blog-main a.web-btn {
  font-size: var(--space-20);
  background: unset;
  padding-left: unset;
}
.blog-main:hover .content {
  bottom: 20px;
}
.blog-main .img img {
  transition: all 0.6s ease-in-out;
}
.blog-main:hover .img img {
  transform: scale(1.1);
}
.blog-head h2.web-title {
  margin-bottom: var(--space-20);
}
.blog-head {
  margin-bottom: var(--space-50);
}
.blog-btn-view {
  margin-top: var(--space-20);
}
/* COMBO */
.combo::before {
  position: absolute;
  content: "";
  width: 88%;
  height: 100%;
  right: 0;
  top: 0;
  background: url(../images/landing/combo-bg.webp);
  border-radius: var(--space-40);
  z-index: -1;
}
.combo::after {
  position: absolute;
  content: "";
  width: 760px;
  height: 950px;
  right: 0;
  top: 50%;
  background: url(../images/landing/left-combo.png);
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(calc(-50% + var(--combo-after-y, 0px)))
    scale(var(--combo-after-scale, 1));
}
.combo-main {
  padding-left: 40px;
}
.combo-main h2.web-title:first-child {
  font-size: 128px;
  margin-bottom: var(--space-20);
}
.combo-main h2.web-title:last-child {
  font-size: 138px;
  margin-top: var(--space-20);
}
/* TRUSTED */
.testi-box .profile {
  display: flex;
  align-items: center;
  gap: var(--space-20);
  margin-top: var(--space-30);
}
.testi-box .profile .img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-box span.web-title {
  font-size: var(--space-30);
  color: var(--c5);
}
.testi-box span.desinatipn {
  font-size: var(--space-20);
  color: var(--c5);
}
.testi-box .content {
  width: 70%;
}
.trusted::after {
  position: absolute;
  content: "";
  width: 930px;
  height: 470px;
  opacity: 20%;
  background: #e657ff;
  filter: blur(200px);
  left: 26%;
  bottom: -200px;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: -1;
}
input.form-control::placeholder,
.form-group textarea::placeholder {
  padding: 0px 10px;
  font-size: var(--space-16);
  color: var(--c4);
  opacity: 0.5;
}

.form-section .shape {
  position: absolute;
  right: -210px;
  top: 5px;
  width: 820px;
}
.contact-info * {
  font-size: 26px;
  font-weight: 400;
  color: var(--c4);
}

.contact-info > span {
  font-weight: bold;
  margin-bottom: var(--space-80);
  display: block;
  line-height: 2;
}

.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-info ul a:hover {
  color: var(--c2);
}
.form-main {
  margin-top: var(--space-40);
}
/* FOOTER */
.info-item > span {
  font-size: 32px;
  font-family: var(--font-secondary);
  color: var(--c5);
  margin: var(--space-100) 0 var(--space-60);
  display: block;
}

.footer .site-logo {
  margin: var(--space-100) 0 var(--space-30);
}

.info-item ul li a,
.info-item ul li span {
  position: relative;
  font-size: var(--space-16);
  color: var(--c7);
  margin-bottom: 15px;
  display: inline-block;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}
.footer .info-item ul li a:hover {
  transform: translateX(6px);
  color: var(--c2, #ec1fff);
}

.footer .site-logo a {
  margin-bottom: var(--space-16);
}

.social-links ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-links ul li a {
  width: 25px;
  transition: transform 0.4s ease;
}
.social-links ul li a:hover {
  transform: translateY(-5px) scale(1.08);
}

.footer-top {
  border-radius: 0px 0px var(--space-70) var(--space-70);
  padding-bottom: var(--space-50) !important;
  position: relative;
  z-index: 9999;
}

.footer-bottom {
  background: var(--bg);
  margin-top: -70px;
  z-index: -1;
  position: relative;
  padding-top: var(--space-120);
  padding-bottom: var(--space-40);
  border-radius: 0px 0px var(--space-50) var(--space-50);
}

.fot-bottom-content.text-right.info-item span {
  padding: 0 !important;
  margin: 0;
  font-family: var(--font-primary);
}
.footer-top .bg-image {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.1;
  z-index: -9;
}

.blog-main .img {
  height: 100%;
}

.blog-main .img img {
  height: 100%;
  object-fit: cover;
}

html.has-custom-cursor,
html.has-custom-cursor body {
  cursor: none;
}

html.has-custom-cursor a,
html.has-custom-cursor button,
html.has-custom-cursor input,
html.has-custom-cursor textarea,
html.has-custom-cursor .web-btn {
  cursor: none;
}

.reveal-fade {
  opacity: 0;
  transform: translateY(60px);
  will-change: transform, opacity;
}

/* Hero content must never flash at full opacity before the loader hands off.
   Kept hidden purely with CSS (applies on first paint, before any JS runs)
   until body.loaded is added by custom-anim.js right when the entrance
   timeline takes over ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â GSAP's inline styles then override this immediately. */
body:not(.loaded) .banner-head,
body:not(.loaded) .banner-pra,
body:not(.loaded) .banner-btn,
body:not(.loaded) .banner .shape,
body:not(.loaded) .down-arrow {
  opacity: 0;
}

.split-char,
.split-word {
  display: inline-block;
  will-change: transform, opacity;
}

.split-line {
  overflow: hidden;
  display: block;
}
/* 1. PRELOADER */
#site-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
}

#site-loader .loader-bg-panels {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 1;
}

#site-loader .loader-bg-panels span {
  flex: 1 1 25%;
  height: 100%;
  transform-origin: bottom;
  background: var(--c4);
}

#site-loader .loader-bg-panels span:nth-child(2) {
  background: var(--c4);
}

#site-loader .loader-bg-panels span:nth-child(3) {
  background: var(--c4);
}

#site-loader .loader-bg-panels span:nth-child(4) {
  background: var(--c4);
}

#site-loader .loader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: var(--c5, var(--c5));
}

#site-loader .loader-mark {
  position: relative;
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#site-loader .mark-square {
  position: absolute;
  inset: 0;
  border: 2px solid var(--c5, var(--c5));
  border-radius: 10px;
  animation: loaderMarkSpin 2.6s linear infinite;
}

#site-loader .mark-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-primary, sans-serif);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}

@keyframes loaderMarkSpin {
  0% {
    transform: rotate(0deg) scale(1);
    border-radius: 10px;
  }
  50% {
    transform: rotate(180deg) scale(0.82);
    border-radius: 50%;
  }
  100% {
    transform: rotate(360deg) scale(1);
    border-radius: 10px;
  }
}

#site-loader .loader-logo {
  font-family: var(--font-secondary, cursive);
  font-size: clamp(24px, 4vw, 42px);
  letter-spacing: 2px;
  color: var(--c5, var(--c5));
  margin-bottom: 18px;
}

#site-loader .loader-bar-track {
  width: min(60vw, 320px);
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 14px;
}

#site-loader .loader-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 10px;
  background: var(--c5, var(--c5));
}

#site-loader .loader-count {
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--c8, rgba(255, 255, 255, 0.6));
  font-variant-numeric: tabular-nums;
}

#site-loader .loader-count span {
  color: var(--c5, var(--c5));
  font-weight: 600;
}

/* 2. SCROLL PROGRESS BAR */
#scroll-progress-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 99998;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

#scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--btn, linear-gradient(90deg, #a634ac, #ec1fff));
  background-size: 200% 100%;
  box-shadow: 0 0 12px rgba(236, 31, 255, 0.6);
}
#back-to-top {
  position: fixed;
  right: 28px;
  bottom: 100px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--c5, var(--c5));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

#back-to-top.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top > svg {
  transition: transform 0.3s ease;
  width: 25px;
}

#back-to-top:hover svg {
  transform: rotate(-90deg) scale(1.15);
}

#back-to-top .ring {
  position: absolute;
  inset: 0;
  width: 50px;
  height: 50px;
}

#back-to-top .ring circle {
  fill: none;
  stroke: var(--c1, #a634ac);
  stroke-width: 3;
  stroke-linecap: round;
  transform-origin: 50% 50%;
}

/* 3. CUSTOM CURSOR  */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999997;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--c5, var(--c5));
  border-radius: 1px;
}

.cursor-outline {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--c5, var(--c5));
  border-radius: 4px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition:
    width 0.25s ease,
    height 0.25s ease,
    border-radius 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.cursor-outline.is-hover {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.cursor-outline.is-click {
  width: 26px;
  height: 26px;
}

@media (max-width: 991px), (pointer: coarse) {
  .cursor-dot,
  .cursor-outline,
  #back-to-top .ring {
    display: none !important;
  }
  html.has-custom-cursor,
  html.has-custom-cursor body,
  html.has-custom-cursor a,
  html.has-custom-cursor button {
    cursor: auto;
  }
}

/* 4. RESPONSIVE / MOBILE MENU */
.nav-toggle {
  display: none;
  width: 40px;
  height: 36px;
  position: relative;
  border: none;
  background: var(--bg);
  z-index: 10000;
  margin-left: auto;
  border-radius: 5px;
}

.nav-toggle span {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 2px;
  background: var(--c5);
  transition:
    transform 0.35s ease,
    opacity 0.25s ease,
    background 0.25s ease;
}

.nav-toggle span:nth-child(1) {
  top: 9px;
}
.nav-toggle span:nth-child(2) {
  top: 18px;
}
.nav-toggle span:nth-child(3) {
  top: 27px;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 991px) {
  .nav-toggle {
    display: block;
  }
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(2px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  z-index: 9999;
  transform: translateX(100%);
  display: flex;
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 90px 34px 40px;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
  background: var(--c4, #1e1e1e);
  width: 100%;
}

.mobile-nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav ul li a {
  display: block;
  padding: 16px 0;
  color: var(--c5, var(--c5));
  font-family: var(--font-primary, sans-serif);
  font-size: 18px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.mobile-nav ul li a span {
  display: inline-block;
  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

.mobile-nav ul li a:hover span {
  transform: translateX(8px);
  color: var(--c2, #ec1fff);
}

.mobile-nav .mobile-nav-btn {
  margin-top: auto;
}

.mobile-nav .mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 50%;
  color: var(--c5, var(--c5));
  font-size: 44px;
  z-index: 999999;
  border: 1px solid var(--c5);
  display: flex;
  align-items: end;
  justify-content: center;
  font-weight: 100;
}

/* 5. WHATSAPP FLOATING BUTTON */
.whatsapp-fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9996;
  width: 58px;
  height: 58px;
}
.whatsapp-fab a {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c5);
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}
.whatsapp-fab .ring-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: 1;
  opacity: 0.55;
}

/* Images Hover Effects*/
.work-img,
.testi-box .profile .img {
  overflow: hidden;
}

.work-img img,
.digital-head .img img .testi-box .profile .img img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-img:hover img,
.digital-head .img:hover img,
.testi-box .profile .img:hover img {
  transform: scale(1.08);
}

.page-hero {
  padding-top: clamp(160px, 18vw, 240px);
  padding-bottom: var(--space-80);
  background-color: var(--c4);
  overflow: visible;
}
.page-hero .bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.1;
  width: 450px;
}
.page-hero .bg-image img {
  height: 100%;
  object-fit: cover;
}
.page-hero .breadcrumb-nav ul {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: var(--space-20);
}
.page-hero .breadcrumb-nav ul li {
  font-size: var(--space-16);
  color: var(--c8);
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
}
.page-hero .breadcrumb-nav ul li a {
  color: var(--c8);
  transition: color 0.3s ease;
}
.page-hero .breadcrumb-nav ul li a:hover {
  color: var(--c1);
}
.page-hero .breadcrumb-nav ul li.active {
  color: var(--c1);
}
.page-hero h1.web-title-two,
.page-hero h1.web-title {
  color: var(--c5);
}
.page-hero p {
  max-width: 640px;
}

.sec-head {
  margin-bottom: var(--space-50);
}
.sec-head .tag {
  display: inline-block;
  color: var(--c1);
  font-size: var(--space-18);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: var(--space-10);
}

.value-card {
  background: #211f22;
  border-radius: var(--space-30);
  padding: var(--space-40) var(--space-30);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.value-card:hover {
  transform: translateY(-10px);
}
.value-card .numb {
  font-family: var(--font-secondary);
  font-size: var(--space-60);
  color: var(--c1);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-20);
}
.value-card h4 {
  margin-bottom: var(--space-10);
}
.value-card p {
  color: var(--c8);
}

.process-wrap {
  position: relative;
}
.process-step {
  position: relative;
  padding: var(--space-40) var(--space-30);
  border: 1px solid rgb(145 143 143 / 12%);
  border-radius: var(--space-30);
  height: 100%;
  transition:
    border-color 0.4s ease,
    transform 0.4s ease;
}
.process-step:hover {
  border-color: var(--c1);
  transform: translateY(-6px);
}
.process-step .step-numb {
  font-family: var(--font-secondary);
  font-size: clamp(50px, 5vw, 90px);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px rgba(166, 52, 172, 0.6);
  display: block;
  margin-bottom: var(--space-16);
}
.process-step h4 {
  color: var(--c4);
  margin-bottom: var(--space-10);
}
.process-step p {
  font-size: var(--space-16);
}
section.section-bg .process-step h4 {
  color: var(--c5);
}

.team-card {
  border-radius: var(--space-30);
  overflow: hidden;
  position: relative;
}
.team-card .img {
  overflow: hidden;
  border-radius: var(--space-30);
  aspect-ratio: 3/4;
}
.team-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-card:hover .img img {
  transform: scale(1.08) rotate(-1deg);
}
.team-card .info {
  padding-top: var(--space-20);
}
.team-card .info span {
  color: var(--c1);
  font-size: var(--space-16);
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: var(--space-50);
}
.portfolio-filters button {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--c4);
  padding: 10px 24px;
  border-radius: 40px;
  font-size: var(--space-16);
  text-transform: capitalize;
  transition: all 0.35s ease;
}
section.section-bg .portfolio-filters button {
  color: var(--c5);
  border-color: rgba(255, 255, 255, 0.2);
}
.portfolio-filters button.active,
.portfolio-filters button:hover {
  background: var(--btn);
  border-color: transparent;
  color: var(--c5);
}
.portfolio-item {
  border-radius: var(--space-30);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.portfolio-item .img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.portfolio-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.portfolio-item:hover .img img {
  transform: scale(1.1);
}
.portfolio-item .overlay-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: var(--space-30);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.45s ease;
}
.portfolio-item:hover .overlay-info {
  transform: translateY(0);
  opacity: 1;
}
.portfolio-item .overlay-info span {
  color: var(--c1);
  font-size: var(--space-16);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.portfolio-item .overlay-info h4 {
  color: var(--c5);
  margin-top: 6px;
}

.faq-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  margin-bottom: var(--space-16);
}
section.section-bg .faq-accordion .accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.faq-accordion .accordion-button {
  background: transparent;
  box-shadow: none;
  font-family: var(--font-secondary);
  font-size: clamp(20px, 1.8vw, 30px);
  color: var(--c4);
  padding: var(--space-20) 0;
  font-weight: 400;
}
section.section-bg .faq-accordion .accordion-button {
  color: var(--c5);
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--c1);
}
.faq-accordion .accordion-button::after {
  filter: none;
  background-image: none;
  content: "\002B";
  font-size: 30px;
  color: var(--c1);
  transition: transform 0.35s ease;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\2212";
  transform: rotate(180deg);
}
.faq-accordion .accordion-body {
  padding: 0 0 var(--space-30);
  color: var(--c9);
  font-size: var(--space-16);
  line-height: 1.6;
}
section.section-bg .faq-accordion .accordion-body {
  color: var(--c8);
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-16);
  background: #211f22;
  padding: 8px;
  border-radius: 50px;
}
.pricing-toggle button {
  background: transparent;
  padding: 10px 26px;
  border-radius: 50px;
  color: var(--c8);
  font-size: var(--space-16);
  transition: all 0.35s ease;
}
.pricing-toggle button.active {
  background: var(--btn);
  color: var(--c5);
}

.contact-card {
  background: var(--c8);
  border-radius: var(--space-30);
  padding: var(--space-40) var(--space-30);
  height: 100%;
  transition: transform 0.4s ease;
  box-shadow: inset -5px -4px 20px 0px #cdcdcd;
}
.contact-card:hover {
  transform: translateY(-8px);
}
.contact-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--btn);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-20);
  color: var(--c5);
  font-size: 20px;
}
.contact-card h4 {
  margin-bottom: 6px;
}
.contact-card a,
.contact-card span {
  color: var(--c4);
  font-size: var(--space-16);
}
.map-wrap {
  border-radius: var(--space-30);
  overflow: hidden;
  filter: grayscale(1) invert(0.92) contrast(0.85);
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.header_menu ul li a.active {
  color: var(--c1);
}
.header_menu ul li a.active::after {
  width: 100%;
}

.related-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  color: var(--c8);
  font-size: var(--space-16);
  margin: 0 8px 12px 0;
  transition: all 0.35s ease;
}
.related-tag:hover {
  background: var(--btn);
  color: var(--c5);
  border-color: transparent;
}

.loader-inner .img {
  opacity: 0.1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
}
.loader-inner .img img {
  animation: zoomInOut 6s ease-in-out infinite;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}
.digital-head .img {
  height: 600px;
  overflow: hidden;
  border-radius: var(--space-30);
}

.digital-head .img img {
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
li.terms-item h3 {
  font-size: var(--space-36);
  font-family: var(--font-secondary);
  margin-bottom: var(--space-20);
}
li.terms-item ul li {
  list-style: auto;
  margin-left: 30px;
  font-size: var(--space-16);
  margin-bottom: 12px;
  color: var(--c9);
}
li.terms-item p {
  margin-bottom: 12px;
}

section.combo {
    margin-bottom: 180px;
}