@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  list-style: none;
}
html {
  scroll-behavior: auto;
}
.site-logo img {
  transition: all 0.6s ease-in-out;
}
body {
  font-family: var(--site-font);
  color: var(--c4);
  background: var(--c5);
}
.wrapper {
  overflow: hidden;
}
img {
  width: 100%;
  display: block;
}
::-webkit-scrollbar {
  width: 7px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--c1);
  border-radius: 8px;
}
:root {
  --btn: linear-gradient(180deg, #f2c449 0%, #fdd57c 100%);
  --c1: #fdd57c;
  --c2: #d9d9d9;
  --c3: #454c51;
  --c4: #2e2f30;
  --c5: #fffbf3;
  --c6: #929292;
  --c7: #73747d;
  --c8: #ffffff;
  --bg: linear-gradient(152.101deg, #33404b 0%, #161f26 100%);
  --bg2: linear-gradient(171.242deg, rgba(255, 255, 255, 0%) 0%, #fbe6b2 100%);
  --f1: linear-gradient(333deg, #161f26 13%, #33404b 26%);
  --f2: linear-gradient(340deg, #161f26 69%, #33404b 80%);
  --border: #161f26;
  --site-font: "Google Sans", sans-serif;
}
.cust-gap {
  row-gap: 24px;
}
/* Responsive Spacing Classes */
.spacing-200 {
  padding: clamp(80px, 10vw, 200px) 0;
}
.spacing-150 {
  padding: clamp(70px, 8vw, 150px) 0;
}
.spacing-120 {
  padding: clamp(60px, 7vw, 120px) 0;
}
.spacing-100 {
  padding: clamp(50px, 6vw, 100px) 0;
}
.spacing-80 {
  padding: clamp(40px, 5vw, 80px) 0;
}
.spacing-60 {
  padding: clamp(30px, 4vw, 60px) 0;
}
.spacing-40 {
  padding: clamp(20px, 3vw, 40px) 0;
}
/* SITE HEADING */
h1.web-title {
  font-size: clamp(34px, 5.4vw, 80px);
  font-weight: bold;
  line-height: 1.1;
}
h2.web-title {
  font-size: clamp(28px, 4.4vw, 66px);
  font-weight: bold;
  line-height: 1.2;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
h5.web-title {
  font-size: clamp(20px, 3vw, 42px);
  font-weight: bold;
  color: var(--c5);
}
h6.web-title {
  font-size: clamp(17px, 1.6vw, 24px);
  font-weight: 500;
  margin-top: 10px;
  text-transform: capitalize;
}
p {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  color: var(--c3);
  line-height: 1.6;
  text-transform: capitalize;
}

/* SITE BTn */
.btn-text-wrap {
  display: inline-flex;
  overflow: hidden;
  align-items: center;
}

.char {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 1.2em;
  line-height: 1.2em;
  will-change: transform;
}

.char span {
  display: block;
  line-height: inherit;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.char .top {
  transform: translate3d(0, 0, 0);
}

.char .bottom {
  position: absolute;
  left: 0;
  top: 100%;
  transform: translate3d(0, 0, 0);
}

.hover-btn:hover .top {
  transform: translate3d(0, -100%, 0);
}

.hover-btn:hover .bottom {
  transform: translate3d(0, -100%, 0);
}
a.hover-btn {
  background: var(--btn);
  padding: clamp(12px, 1.6vw, 15px) clamp(24px, 3vw, 35px);
  border-radius: 30px;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--c1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition:
    color 0.4s ease,
    border-color 0.4s ease;
  perspective: 800px;
}
a.hover-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c4);
  transform: translateY(101%);
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
  border-radius: 30px;
}
a.hover-btn:hover {
  color: var(--c5);
}
a.hover-btn:hover::before {
  transform: translateY(0%);
}
a.hover-btn:hover svg path {
  fill: var(--c5);
}
a.hover-btn_2 {
  background: transparent;
  padding: clamp(12px, 1.6vw, 15px) clamp(24px, 3vw, 35px);
  border-radius: 30px;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--c3);
  transition: all 0.4s ease;
}
a.hover-btn_2:hover {
  background: var(--c4);
  color: var(--c5);
  border-color: var(--c4);
}
/* HEADER */
.header .row {
  border: 2px solid rgba(255, 255, 255, 52%);
  border-radius: 50px;
  padding: 12px 40px;
  background: rgba(255, 255, 255, 52%);
}
.header {
  position: absolute;
  left: 0;
  top: 30px;
  width: 100%;
  z-index: 999;
}
.site-logo a {
  width: 70%;
}
.header_menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.header_menu ul li a {
  font-size: clamp(15px, 1.1vw, 18px);
  text-transform: capitalize;
  position: relative;
  padding-bottom: 4px;
}
.header_menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--c4);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.header_menu ul li a:hover::after {
  width: 100%;
}
.header_menu ul li.has-dropdown {
  position: relative;
}
.header_menu ul li.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.header_menu ul li.has-dropdown > a::before {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  font-size: 13px;
  transition: transform 0.35s ease;
  position: absolute;
  right: -20px;
  top: 25%;
}
.header_menu ul li.has-dropdown:hover > a::before {
  transform: rotate(180deg);
}
.header_menu ul li .sub-menu {
  position: absolute;
  top: calc(100% + 30px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgb(255 255 255 / 78%);
  border-radius: 0px 0px 30px 40px;
  box-shadow: 0 25px 60px rgba(22, 31, 38, 0.18);
  padding: 10px 10px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s ease;
  z-index: 99;
  border: 2px solid rgba(255, 255, 255, 52%);
  gap: 20px;
  border-top: unset;
  flex-direction: column;
  flex-wrap: wrap;
  width: 700px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.header_menu ul li.has-dropdown:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.header_menu ul li .sub-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 100;
  color: var(--c4);
  transition:
    background 0.3s ease,
    padding-left 0.3s ease;
}
.header_menu ul li .sub-menu li a::after {
  display: none;
}
.header_menu ul li .sub-menu li a i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c5);
  font-size: 14px;
  font-weight: 100;
  flex-shrink: 0;
  box-shadow: 0px 0px 20px #00000021;
}
.header_menu ul li .sub-menu li a:hover {
  background: var(--c1);
  padding-left: 16px;
  color: var(--c5);
}
/* BANNER SECTION */
.banner {
  position: relative;
  height: 1100px;
  display: flex;
  align-items: center;
  z-index: 0;
}
.header_menu ul li .sub-menu li a:hover i {
  color: var(--c4);
}
.banner::after {
  content: "";
  position: absolute;
  width: 1085.81px;
  height: 885.81px;
  top: -300px;
  right: -300px;
  border-radius: 50%;
  z-index: -99;
  filter: blur(220px);
  background-color: var(--c1);
  opacity: 60%;
}
.banner::before {
  content: "";
  position: absolute;
  width: 833.3px;
  height: 833.3px;
  top: -300px;
  left: -300px;
  border-radius: 50%;
  z-index: -10;
  filter: blur(70px);
  background-color: var(--c1);
  opacity: 25%;
}
.banner-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--c1);
  opacity: 11%;
  z-index: -9;
}
.banner-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  height: auto;
  z-index: -1;
}
.banner-img img {
  height: 920px;
}
.banner-content-inner p {
  margin: 30px 0px;
}
.trusted-image {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 60px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  bottom: 100px;
}
.banner-btn {
  display: flex;
  gap: 20px;
}
.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;
}
.banner .shape {
  position: absolute;
  left: -60px;
  top: -40px;
  width: 200px;
  animation: up-down 6s infinite linear;
}

/* ABOUT */
.about-content p {
  margin-top: 30px;
}
.about-img {
  border-radius: 40px;
  overflow: hidden;
  margin: 50px 0px;
}
.about .shape {
  position: absolute;
  right: -150px;
  top: 230px;
  width: 500px;
  animation: left-right 6s infinite linear;
}
.about::after {
  content: "";
  position: absolute;
  width: 1085.81px;
  height: 90%;
  top: 60%;
  right: -300px;
  border-radius: 50%;
  z-index: -99;
  filter: blur(220px);
  background-color: var(--c1);
  opacity: 40%;
  transform: translateY(-50%);
}
/* BUILD */
.build-head p {
  margin: 20px 0px 60px;
}
.card-main-build {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.build .card-main-build .content {
  position: absolute;
  left: 50%;
  bottom: 50px;
  z-index: 999;
  transform: translateX(-50%);
  text-align: center;
  width: 95%;
}
.build .swiper-slide.swiper-slide-active .card-main-build {
  transform: scale(1.1);
  rotate: 15deg;
}

.build .swiper-slide-active .card-main-build {
  box-shadow: 0 4px 100px #0000005e;
}

/* CREATING */
.creating {
  margin-left: 20px;
  margin-right: 20px;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 50px;
}
.vertical-card-slider {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  overflow: hidden;
}
.creating_slider {
  width: 100%;
  height: 800px;
  padding: 10px 0;
  overflow: hidden;
}
.creating_slider .swiper-wrapper {
  align-items: flex-start;
}
.creating_slider .swiper-slide {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  background: #111;
}
.creating_slider .swiper-slide {
  height: 100% !important;
}
.creating-main {
  width: 100%;
  height: 100%;
}
.creating-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.swiper-cards .swiper-slide-shadow {
  display: none;
}
.creating_slider .swiper-slide:not(.swiper-slide-active) {
  filter: brightness(0.55);
}
.creating_slider .swiper-slide-active {
  filter: brightness(1);
}
.creating .shape {
  position: absolute;
  bottom: -120px;
  left: -78px;
  z-index: 9;
  width: 340px;
  animation: left-right 6s infinite linear;
}
/* COUNTER */
.counter-box {
  width: 380px;
  height: 380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  position: relative;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
.counter-box:hover h2.web-title {
  font-size: 100px;
}
.counter-box::after {
  position: absolute;
  content: "";
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  background: linear-gradient(
    171.242deg,
    rgba(255, 255, 255, 0%) 0%,
    #fbe6b2 100%
  );
  opacity: 1;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.counter-box * {
  position: relative;
  z-index: 999;
}
.counter-box:hover {
  transform: scale(1.15) !important;
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  z-index: 999;
}
.counter-box:hover::after {
  opacity: 1;
  transform: scale(1);
  background: var(--c1);
}
.counter .plus {
  margin-left: 2px;
}
.about-counter .shape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 240px;
}
.about-counter .shape {
  position: absolute;
  right: -50px;
  bottom: -130px;
  width: 240px;
  z-index: 9999;
}

/* DIFFERENT */
.svc-tab {
  position: relative;
}
.svc-tab button {
  all: unset;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 0px;
  font-size: clamp(11px, 2vw, 18px);
  font-weight: 400;
  color: var(--c4);
  transition: color 0.45s ease;
  opacity: 50%;
}
.svc-tab .idx {
  font-size: 14px;
  font-weight: 700;
  color: var(--c2);
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.svc-tab.is-active button {
  color: var(--c4);
  font-weight: 600;
  opacity: 1;
  font-size: 28px;
}
.svc-tab.is-active .idx {
  opacity: 1;
  transform: translateX(0);
}
.svc-tab-indicator {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, var(--c1), var(--c5));
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-tab.is-active .svc-tab-indicator {
  width: 100%;
}

.different-head {
  margin-bottom: 50px;
}

.svc-stage {
  position: relative;
  background: linear-gradient(169.737deg, #ffffff 0%, #fbe6b2 100%);
  border-radius: 50px;
  box-shadow: -30px -16px 30px #c1c1c130;
  padding: 20px;
}

/* --- STACKED CARDS --- */
.svc-visual {
  position: relative;
  height: 600px;
  /* overflow visible so peeking cards show above the box */
  overflow: visible;
}

.stack-card {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  will-change: transform, opacity;
  transform-origin: center bottom;
}

.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

p#svcText1 {
  margin: 30px 0px 20px;
}
div#svcPanel {
  margin-left: 30px;
}

.process {
  position: relative;
  overflow: hidden;
}
.process-head {
  text-align: center;
}
.process-orb {
  position: absolute;
  top: 200px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--c1);
  filter: blur(0px);
  opacity: 0.9;
  z-index: 0;
  animation: up-down 6s infinite linear;
}
.process-card {
  background: var(--bg);
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 30px;
  height: 220px;
  transition: all 0.6s ease-in-out;
  cursor: pointer;
}
.process-card:hover {
  z-index: 99999999999999 !important;
  position: relative;
  transform: unset !important;
  box-shadow: 0px 0px 40px #00000079;
  background: var(--c1);
}

.process-num {
  font-size: clamp(32px, 9vw, 140px);
  font-weight: bold;
  color: var(--c8);
}
.process-body .web-title {
  margin-bottom: 20px;
}
.process-card.two {
  margin-top: -90px;
  z-index: 99;
  transform: rotate(-3deg);
}
.process-card.three {
  margin-top: -70px;
  z-index: 999;
  transform: rotate(3.74deg);
}
.process-card.four {
  margin-top: -110px;
  z-index: 9999;
  transform: rotate(-5.01deg);
}
.process-card.five {
  margin-top: -50px;
  z-index: 99999;
  transform: rotate(2deg);
}
.process-card-main {
  margin-top: 50px;
}

/*TESTIMONIAL  */

.testi-img,
.testi-content {
  height: 550px;
  overflow: hidden;
  border-radius: 30px;
}
.testi-img img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.testi-head {
  margin-bottom: 70px;
}
.testi-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 50px;
  position: relative;
}
.testi-content::before {
  position: absolute;
  content: "";
  left: 30px;
  top: 10px;
  background: url(../images/shape/bg-testi.png);
  z-index: 999;
  width: 190px;
  height: 140px;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.6;
}
.testi-info .rating ul {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.testi-content .head {
  margin-top: 60px;
}

.testi-content .head .web-title {
  margin-bottom: 30px;
}
.testi-content span.username {
  font-size: 22px;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 6px;
  display: block;
}
.svc-stage .shape {
  position: absolute;
  left: -160px;
  bottom: 0;
  width: 400px;
  animation: up-down 6s infinite linear;
}

/* BLOG */
.blog-main {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 30px;
  cursor: pointer;
}
.blog-main .content {
  position: absolute;
  left: 20px;
  bottom: -21px;
  transition: all 0.6s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ctn h6.web-title {
  margin-bottom: 10px;
}
.blog-main a.web-btn {
  font-size: 20px;
  font-weight: 500;
  color: var(--c5);
}
.blog-main:hover .content {
  bottom: 20px;
}
.blog-main:hover .img img {
  transform: scale(1.1);
}
.blog-head h2.web-title {
  margin-bottom: 20px;
}
.blog-head {
  margin-bottom: 50px;
}
.blog-btn-view {
  margin-top: 20px;
}
/* FOOTER */
.fotter-top {
  margin-bottom: 100px;
}
.fot-top-head h2.web-title {
  margin-bottom: 20px;
}
.social-links ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
.site-logo p {
  margin-top: 30px;
}
.info-item span {
  font-size: 32px;
  font-weight: 500;
  color: var(--c5);
  margin-bottom: 30px;
  display: block;
}
.info-item ul li a {
  color: var(--c6);
  margin-bottom: 18px;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.info-item ul li a::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  top: 50%;
  left: -20px;
  background: var(--c1);
  border-radius: 50%;
  transition: all 0.6s ease-in-out;
}

.info-item ul li a:hover::after {
  left: 0px;
}

.info-item ul li a:hover {
  padding-left: 15px;
  color: var(--c5);
}
.footer-bottom ul {
  display: flex;
  justify-content: end;
  gap: 5px;
}

.footer-bottom ul li:first-child {
  border-right: 1px solid var(--c7);
  padding-right: 8px;
}
.footer-bottom {
  padding: 70px 0px 40px;
}
.footer-bottom span {
  font-size: 18px;
  text-transform: capitalize;
}

.creating-head {
  margin-bottom: 40px;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--c5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.custom-loader {
  width: 50px;
  height: 50px;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: var(--c1) #0000;
  animation: s6 1s infinite linear;
}
.custom-loader::before,
.custom-loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}
.custom-loader::before {
  border-color: var(--c3) #0000;
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}
.custom-loader::after {
  margin: 8px;
}

@keyframes s6 {
  100% {
    transform: rotate(1turn);
  }
}

.preloader-panel.panel-left {
  left: 0;
}
.preloader-panel.panel-right {
  right: 0;
}
body.loaded .preloader {
  pointer-events: none;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: normal;
}
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c1);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition:
    opacity 0.2s ease,
    background 0.3s ease;
}
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--c1);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    height 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.35s ease,
    border-color 0.35s ease;
}
.cursor-ring-text {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
/* hover states driven via JS adding classes to <html> or cursor el */
.custom-cursor.is-link .cursor-ring {
  width: 70px;
  height: 70px;
  background: #fdd47c54;
  border-color: var(--c1);
}
.custom-cursor.is-link .cursor-dot {
  opacity: 0;
}
.custom-cursor.is-view .cursor-ring {
  width: 90px;
  height: 90px;
  background: var(--c1);
  border-color: var(--c1);
}
.custom-cursor.is-view .cursor-ring-text {
  opacity: 1;
}
.custom-cursor.is-view .cursor-dot {
  opacity: 0;
}
.custom-cursor.is-hidden .cursor-dot,
.custom-cursor.is-hidden .cursor-ring {
  opacity: 0;
}

/* ============================================================
   MOBILE MENU TOGGLE (Hamburger)
   ============================================================ */
.mobile-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--c4);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   MOBILE MENU (Off-canvas)
   ============================================================ */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 31, 38, 0.55);
  backdrop-filter: blur(2px);
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}
.mobile-menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 86vw);
  background: var(--c5);
  z-index: 9995;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  padding: 30px 28px;
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
}
.mobile-menu.is-active {
  transform: translateX(0);
}
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mobile-menu-top .site-logo a {
  width: 130px;
  display: block;
}
.mobile-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--c2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c4);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mobile-close:hover {
  background: var(--c4);
  color: var(--c5);
  border-color: var(--c4);
  transform: rotate(90deg);
}
.mobile-menu-nav > ul > li {
  border-bottom: 1px solid rgba(46, 47, 48, 0.08);
}
.mobile-menu-nav > ul > li > a,
.mobile-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 2px;
  font-size: clamp(16px, 4vw, 19px);
  font-weight: 500;
  color: var(--c4);
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  text-transform: capitalize;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
}
.mobile-sub-toggle i {
  font-size: 20px;
  transition: transform 0.35s ease;
}
.mobile-has-sub.is-open .mobile-sub-toggle i {
  transform: rotate(45deg);
}
.mobile-sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-has-sub.is-open .mobile-sub-menu {
  max-height: 500px;
}
.mobile-sub-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 6px 12px 10px;
  font-size: 14px;
  font-weight: 100;
  color: var(--c7);
}
.mobile-sub-menu li a i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--c2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 100;
  flex-shrink: 0;
}
.mobile-menu-btn {
  margin-top: 24px;
  opacity: 0;
  transform: translateY(16px);
}
.mobile-menu-btn .hover-btn {
  width: 100%;
  justify-content: center;
}
.mobile-menu-social {
  margin-top: 30px;
  opacity: 0;
  transform: translateY(16px);
}
.mobile-menu-social ul {
  display: flex;
  gap: 16px;
}
.mobile-menu-social ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  font-size: 15px;
  text-align: center;
  background: var(--c8);
  border-radius: 50%;
  transition: all 0.4s ease;
  border: 1px solid var(--c1);
}
.mobile-menu-social ul li a i {
  color: var(--c1);
  transition: all ease 0.31s;
}

.mobile-menu-social ul li a:hover i {
  animation: toBottomFromTop 0.5s forwards;
  color: var(--c5);
}

.mobile-menu-social ul li a:hover {
  background: var(--c1);
}
@keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}

/* ============================================================
   SCROLL-REVEAL ANIMATION HOOKS (used by GSAP ScrollTrigger)
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
}
.reveal-fade {
  opacity: 0;
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
}
.footer .shape {
  position: absolute;
  right: -200px;
  width: 400px;
  animation: up-down 6s infinite linear;
  left: auto;
  bottom: auto;
}
@keyframes up-down {
  0% {
    transform: translateY(0);
  }

  33% {
    transform: translateY(20px);
  }

  60% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes left-right {
  0% {
    transform: translateX(0);
  }

  33% {
    transform: translateX(20px);
  }

  60% {
    transform: translateX(-20px);
  }

  100% {
    transform: translateX(0);
  }
}
.blog-main .img img {
  transition: all 0.5s ease-in-out;
  height: 100%;
  object-fit: cover;
}

.blog-main .img {
  height: 100%;
}

body.index footer.footer {
  border-radius:30px !important;
}
.footer {
  padding-top: 100px;
}
.con-main {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.con-main .icon {
  width: 50px;
  height: 50px;
  background: var(--c3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 15px;
  transition: all 0.6s ease-in-out;
}
.con-main .text a,
.con-main .text label {
  margin: 0;
  position: unset;
  font-size: 18px;
  color: var(--c6);
}
.con-main:hover .icon {
  background: var(--c4);
}

section.inner-banner.banner {
  height: 700px;
}

.inner-banner .banner-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.form-control:focus {
  background: transparent !important;
  color: var(--c3);
  border-color: var(--c1) !important;
  outline: unset;
}
.form-control::placeholder {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.25);
}
/* Interest */
.interest-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.interest-item {
  position: relative;
  margin: 0;
}
.interest-item input {
  display: none;
}
.interest-item span {
  display: block;
  padding: 15px 20px;
  background: transparent;
  border: 1px solid var(--c1);
  border-radius: 40px;
  font-size: 16px;
  color: var(--c4);
  transition: 0.4s ease;
  cursor: pointer;
}
.interest-item input:checked + span {
  background: var(--c1);
  color: #fff;
  border-color: var(--c1);
}
/* Message */
textarea.form-control {
  resize: none;
  min-height: 120px;
}
/* Submit */
.submit-wrap {
  display: flex;
  justify-content: flex-end;
}
.hover-btn {
  border: none;
  background: var(--c1);
  color: var(--c5);
  transition: all 0.6s ease-in-out;
  opacity: 1 !important;
  padding: 10px 30px;
  font-size: 18px;
  border-radius: 40px;
}
.submit-btn .icon {
  background: linear-gradient(180deg, #57449a 0%, #2a3b8e 100%);
  padding: 25px;
  border-radius: 50%;
  border: 1px solid #ffffff5c;
  position: relative;
  overflow: hidden;
}
.form-group label,
.interest-wrap > label {
  display: block;
  font-size: 26px;
  color: var(--c4);
  margin-bottom: 15px;
  font-weight: 500;
}

label svg {
  width: 1.1rem;
}

.video {
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
  opacity: 0.2;
}

video.custom-video {
  object-fit: cover;
}

.have-btn {
  margin-top: 50px;
}

.aw-hero-title {
  overflow: hidden;
}

.aw-hero-title .aw-word {
  display: inline-block;
  overflow: hidden;
}

.aw-hero-title .aw-word span {
  display: inline-block;
  transform: translateY(110%);
}

/* ---------- Marquee ribbon (signature element) ---------- */
.aw-marquee-wrap {
  background: var(--c1);
  padding: 16px 0px;
  transform: rotate(-1.4deg) scale(1.03);
  margin: 64px -4px 0;
}

.aw-marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.aw-marquee-track span {
  font-weight: 600;
  font-size: clamp(22px, 3.4vw, 40px);
  letter-spacing: 0.02em;
  color: var(--c5);
  padding: 0 28px;
  text-transform: uppercase;
}

.aw-marquee-track span::after {
  content: "\f005";
  margin-left: 28px;
  color: var(--aw-ink);
  opacity: 0.5;
  font-family: "Font Awesome 5 Pro";
}

/* ---------- Filters ---------- */
.aw-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 50px 0 44px;
}

.aw-filter-btn {
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--c4);
  background: transparent;
  border: 1px solid #c1c1c1;
  border-radius: 999px;
  padding: 10px 30px;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.aw-filter-btn:hover {
  color: var(--c1);
  border-color: var(--c1);
}

.aw-filter-btn.is-active {
  color: var(--c5);
  background: var(--c1);
  border-color: var(--c1);
  box-shadow: 0px 10px 50px #fdd57c;
}

/* ---------- Asymmetric project grid ---------- */
.aw-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 14px;
  gap: 20px;
}

.aw-card {
  position: relative;
  grid-column: span 3;
  grid-row: span 24;
  border-radius: var(--aw-radius);
  overflow: hidden;
  background: var(--aw-ink-2);
  cursor: pointer;
  opacity: 0;
}

.aw-card.is-tall {
  grid-row: span 20;
}

.aw-card.is-wide {
  grid-column: span 3;
}

.aw-card.is-narrow {
  grid-column: span 2;
}

.aw-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.6s ease;
  filter: grayscale(45%) brightness(0.75);
}

.aw-card:hover img {
  transform: scale(1);
  filter: grayscale(0%) brightness(0.9);
}

.aw-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background: linear-gradient(
    180deg,
    rgba(18, 19, 26, 0) 40%,
    rgba(18, 19, 26, 0.92) 100%
  );
  color: var(--c5);
}

.aw-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
}

.aw-card-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(244, 243, 238, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s ease;
  flex-shrink: 0;
}

.aw-card:hover .aw-card-arrow {
  transform: rotate(0deg);
  background: var(--c1);
  border-color: var(--c1);
}

/* ---- Intro ---- */
.services-intro-section h2.web-title,
.services-process-section h2.web-title,
.services-faq-section h2.web-title {
  color: var(--c4);
}

/* ---- Grid ---- */
.service-card {
  position: relative;
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.service-card-index {
  font-size: 115px;
  font-weight: 600;
  color: var(--c1);
  opacity: 0.1;
  position: absolute;
  right: 10px;
  top: 10px;
}

.service-card-tag {
  color: var(--c1);
  padding: 6px 14px;
  border: 1px solid rgba(253, 213, 124, 0.35);
  border-radius: 30px;
  font-size: 14px !important;
}

.service-card-desc {
  color: var(--c6);
  margin: 20px 0px;
  flex-grow: 1;
}
.service-card-points {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.service-card-points li {
  position: relative;
  padding-left: 24px;
  color: var(--c2);
  font-size: 15px;
  line-height: 1.9;
  text-transform: none;
}

.service-card-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--btn);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--c1);
  width: fit-content;
}

.service-card-link-arrow {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--c1);
  border-right: 2px solid var(--c1);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.service-card-link:hover .service-card-link-arrow {
  transform: rotate(45deg) translate(3px, -3px);
}

/* ---- Process ---- */

.process-step {
  padding-top: 6px;
}

.process-step-num {
  font-size: 60px;
  font-weight: 700;
  color: var(--c8);
  background: var(--btn);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ---- Section heading colour ---- */
.wd-projects-section h2.web-title,
.wd-why-section h2.web-title,
.services-process-section h2.web-title,
.services-faq-section h2.web-title {
  color: var(--c4);
}

.wd-project-card {
  position: relative;
  display: block;
  border-radius: 15px;
  overflow: hidden;
  background-color: var(--c4);
  background-size: cover;
  background-position: center;
  aspect-ratio: 16 / 12;
}

.wd-project-card--feature {
  aspect-ratio: 25 / 18;
}

.wd-project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(22, 31, 38, 0) 40%,
    rgba(22, 31, 38, 0.92) 100%
  );
  transition: opacity 0.4s ease;
}

.wd-project-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 26px 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.wd-project-cat {
  margin: 0 0 6px;
  color: var(--c1);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.9;
}

.wd-project-title {
  margin: 0;
  color: var(--c8);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wd-project-arrow {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  transition:
    background 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease;
}

.wd-project-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -6px 0 0 -7px;
  border-top: 2px solid var(--c8);
  border-right: 2px solid var(--c8);
  transform: rotate(45deg);
  transition: border-color 0.35s ease;
}

.wd-project-card:hover .wd-project-arrow {
  background: var(--btn);
  border-color: transparent;
  transform: scale(1.08) rotate(45deg);
}

.wd-project-card:hover .wd-project-arrow::before {
  border-color: var(--c4);
}

.wd-project-card:hover .wd-project-title {
  transform: translateY(-4px);
}

/* ---- Why section ---- */
.wd-why-media {
  position: relative;
  margin-right: 30px;
}

.wd-why-media-img {
  width: 100%;
  aspect-ratio: 4 / 4;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  transform-origin: bottom center;
}

.wd-why-badge {
  position: absolute;
  right: -40px;
  bottom: -45px;
  background: var(--c1);
  border-radius: 18px;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  min-width: 170px;
}

.wd-why-badge-num {
  font-size: 46px;
  font-weight: bold;
  color: var(--c5);
  line-height: 1;
  margin-bottom: 10px;
}

.wd-why-badge-label {
  color: var(--c5);
  text-transform: none;
  line-height: 1.4;
}

.wd-why-list {
  margin: 20px 0 30px;
}

.wd-why-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--c2);
}

.wd-why-list li:first-child {
  border-top: none;
}

.wd-why-list-icon {
  flex: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--c5);
  background: var(--c1);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wd-why-list h6.web-title {
  margin: 0 0 4px;
}

.wd-why-list p {
  text-transform: none;
}

/* ===== Terms & Conditions â€“ uses existing :root variables only ===== */

.inner-banner .banner-desc {
  max-width: 780px;
}

.terms-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.terms-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--c5);
  border: 1px solid transparent;
  border-left: 4px solid var(--c1);
  border-radius: 16px;
  padding: 22px 26px;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  will-change: transform;
  box-shadow: 0px 0px 30px #1c1c1c14;
}

.terms-item:hover {
  transform: translateY(-6px);
  border-color: var(--c1);
  box-shadow: 0 20px 40px -20px rgba(22, 31, 38, 0.35);
}

.terms-num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--btn);
  color: var(--c5);
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terms-body h3 {
  font-family: var(--site-font);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--c4);
  margin: 0 0 8px;
}

.terms-body p {
  color: var(--c7);
  font-size: 16px;
  line-height: 1.7;
  text-transform: none;
  margin: 0;
}

a.service-card-link:hover {
  color: var(--c5);
}

.wb-badge {
  position: absolute;
  right: 6vw;
  bottom: 6vh;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c4);
}

@keyframes wbPulse {
  0% {
    box-shadow: 0 0 0 0 var(--c1);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(127, 226, 192, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(127, 226, 192, 0);
  }
}

.wb-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c1);
  box-shadow: 0 0 0 0 rgba(127, 226, 192, 0.6);
  animation: wbPulse 2s infinite;
}
.wb-info-card {
  background: var(--c5);
  border: 1px solid var(--c5);
  border-radius: 15px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
  box-shadow: 0px 0px 50px #d7d7d74d;
}
.wb-info-list {
  display: grid;
  gap: 20px;
}
.wb-info-card:hover {
  border-color: var(--c1);
  transform: translateY(-4px);
}
.wb-info-card .wb-label {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c4);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.wb-info-card .wb-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c4);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c4);
}
.wb-info-card .wb-value a,
.wb-info-card .wb-value {
  font-size: 18px;
  color: var(--c4);
  transition: all 0.6s ease-in-out;
}
.wb-info-card .wb-ring svg {
  width: 24px;
  height: 24px;
}
.wb-info-card .wb-value a:hover {
  color: var(--c1);
}
.contact-form-wrapper {
  padding: 36px;
}

.form-group.file label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--c4);
  border: 1px dashed var(--c4);
  color: var(--c5);
  cursor: pointer;
  font-size: 13px;
  position: absolute;
  z-index: -1;
}
.form-group.file label svg path {
  fill: var(--c1);
}

.form-group.file input[type="file"] {
  opacity: 0;
  width: 140px !important;
}
.hover-btn:hover {
  transform: translateY(-2px);
}
.form-group.file {
  padding-top: 40px;
}
