@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&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 {
  background: var(--bg-body);
  font-family: var(--font-two);
  color: var(--c5);
}
.wrapper {
  overflow: hidden;
  opacity: 0;
}
img {
  width: 100%;
  display: block;
}
a:hover {
  color: var(--c5);
}
::-webkit-scrollbar {
  width: 10px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--c1);
  border-radius: 3px;
}
:root {
  --btn: linear-gradient(117deg, #2a3b8e, #4f69b2);
  --btn-border: #ffffff3d;
  --bg-body: #030303;
  --c1: linear-gradient(117deg, #2a3b8e, #4f69b2);
  --c2: linear-gradient(117deg, #2a3b8e, #4f69b2);
  --c3: #3a4e9d;
  --c4: #000000;
  --c5: #ffffff;
  --c6: #4962ac;
  --c7: #73747d;
  --c8: #5358a7;
  --bg: #030303;
  --card-bg: rgba(10, 10, 10, 0.4);
  --text: #e0e0e0;
  --accent: #ff003c;
  /* Cyber Red */
  --accent-2: #00f3ff;
  /* Cyber Cyan */
  --border: rgba(255, 255, 255, 0.1);
}
p.web-color {
  color: var(--c7);
}
.cust-gap {
  row-gap: 24px;
}
h2.web-title {
  font-size: 54px;
  line-height: 1.4;
  opacity: 1;
}
.about-content h2 {
  line-height: 1;
}
h6.web-title {
  font-size: 44px;
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 600;
}
h5.web-title {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Responsive Spacing Classes */

.spacing-200 {
  padding: clamp(80px, 10vw, 200px) 0;
}

.spacing-150 {
  padding: clamp(70px, 8vw, 150px) 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;
}
/* MENU HOVER EFFECT */
.menu_hover {
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 9999;
  font-size: 15px;
  text-transform: capitalize;
}
.menu-hover-top span,
.menu-hover-bottom span {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1);
  transition-delay: calc(var(--i) * 0.03s);
}
.menu-hover-bottom {
  position: absolute;
  top: 0;
  left: 0;
}
.menu-hover-bottom span {
  transform: translateY(100%);
}
.menu_hover:hover .menu-hover-top span {
  transform: translateY(-100%);
  color: var(--c5) !important;
}
.menu_hover:hover .menu-hover-bottom span {
  transform: translateY(0%);
  color: var(--c5) !important;
}

/* HOVER BUTTON START */
.hover-btn {
  display: inline-flex;
  gap: 10px;
  padding: 12px 30px;
  border-radius: 15px;
  background: var(--btn);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--btn-border);
  font-size: 16px;
  font-weight: 500;
}
.btn-text-wrap {
  position: relative;
  overflow: hidden;
}
.btn-text {
  display: block;
  transition: 0.4s ease;
}
.btn-text.bottom {
  position: absolute;
  left: 0;
  top: 100%;
}
.hover-btn:hover .top {
  transform: translateY(-100%);
}
.hover-btn:hover .bottom {
  transform: translateY(-100%);
}
.btn-icon i {
  font-family: "Font Awesome 5 Pro";
  transition: all 0.4s ease-in-out;
  transform: rotate(-45deg);
  font-size: 14px;
}
.hover-btn:hover .btn-icon i {
  transform: translateX(0px) rotate(0deg);
}
.hover-btn::after {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 50px 30px #fff;
  transform: skewX(-20deg);
}
.hover-btn:hover::after {
  animation: sh02 0.5s 0s linear;
}
@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

/* HEADER START  */
.site-logo a {
  width: 50%;
}
.site-logo a:hover img {
  filter: drop-shadow(0 0px 30px var(--c3));
}
.header {
  position: absolute;
  left: 0;
  top: 60px;
  width: 100%;
  z-index: 999999;
}
.header_menu ul {
  display: flex;
  gap: 40px;
  border-radius: 30px;
  position: relative;
  background: #010d46;
  margin: 1px 1px 1px 1px;
  justify-content: center;
}
.header_menu {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
}
.header_menu::after {
  position: absolute;
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #57449a, #ffffff00);
  content: "";
  border-radius: 30px;
  z-index: -1;
}
.header_menu::before {
  content: "";
  bottom: 0;
  background: #5069b2;
  position: absolute;
  width: 10%;
  height: 100%;
  top: 11px;
  right: -7px;
  border-radius: 22px;
  z-index: 1;
  filter: blur(50px);
}
.header_menu ul li a::before,
.header_menu ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -10px;
  left: 0;
  border-radius: 50%;
  z-index: 0;
  filter: blur(30px);
  background: #5069b2b5;
  overflow: hidden;
  opacity: 0;
  transition: all 0.6s ease-in-out;
  z-index: 0;
}
.header_menu ul::before {
  background: #57459a;
}
.header_menu ul::after {
  background: #5069b2;
}

/* BANNER START */
.banner-img {
  height: 950px;
  overflow: hidden;
}
.banner-img img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.banner {
  position: relative;
}
.banner-content {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 99;
  color: var(--c5);
  width: 100%;
}
.banner-content-inner h1 {
  font-size: 80px;
}
.banner-btn {
  margin-top: 30px;
  margin-bottom: 100px;
}
.banner-content-text {
  text-align: left;
  color: var(--c5);
  font-size: 16px;
}
.wiew-project .content span {
  font-size: 32px;
}
.wiew-project .icon {
  width: 120px;
  height: 120px;
  border: 1px solid var(--c3);
  color: var(--c3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
}
.box-content {
  text-align: center;
  position: relative;
  width: 100%;
  font-size: 30px;
  padding: 12px 16px;
  color: var(--c5);
}
.box-content .box {
  padding: 2px;
  background: white;
  border-radius: 1px;
  border: 2px solid #0c86e0;
}
span.box.one {
  position: absolute;
  left: -4px;
  top: -4px;
}
span.box.two {
  position: absolute;
  right: -4px;
  top: -4px;
}
span.box.three {
  position: absolute;
  left: -4px;
  bottom: -4px;
}
span.box.four {
  position: absolute;
  right: -4px;
  bottom: -4px;
}
.banner-content-box {
  position: absolute;
  left: 70px;
  bottom: 40%;
  transform: translateY(-50%);
  rotate: -20deg;
  border: 1px solid #0c86e0;
  width: 260px;
}
.banner-content-box-2 h6 {
  font-size: 30px;
  font-family: var(--font-one);
  font-weight: 400;
  color: #4c65af;
  transform: rotate(7deg);
}

/* section-marquee */
.marquee-slider .marquee {
  overflow: hidden;
  position: relative;
  height: 75px;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.marquee-slider .marquee--inner {
  display: flex;
  width: max-content;
  will-change: transform;
}
.track {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  align-items: end;
}

.track .img {
  flex-shrink: 0;
}
.marquee-slider .slider-left-right {
  transition: all 0.7s;
  position: relative;
  z-index: 2;
}
.marquee-slider .marquee span {
  color: var(--c2);
  transition: all 0.7s;
  font-size: 50px;
  text-transform: capitalize;
  position: relative;
  margin: 0 20px;
  word-spacing: 5px;
  font-weight: 500;
}
.marquee--inner > span div span:after {
  position: absolute;
  top: 50%;
  left: -30px;
  content: "";
  width: 10px;
  height: 10px;
  background: var(--c1);
  border-radius: 50%;
  transform: translateY(-50%);
}
@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@keyframes marquee-right {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}
.marquee.image-marquee {
  height: 400px;
}
.marquee.image-marquee .marquee--inner {
  align-items: end;
  gap: 24px;
}
.marquee-slider {
  position: relative;
}
.marquee-slider::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 60%;
  top: 50%;
  left: 50%;
  border-radius: 40%;
  z-index: 0;
  filter: blur(130px);
  background-color: #525ba991;
  transform: translate(-50%, -50%);
}

/* TRUSTED */
.trusted-image {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 50px;
  margin-top: 80px;
}
.trusted-content p {
  max-width: 700px;
  margin: 0 auto;
}
.trusted-content {
  text-align: center;
}
.trusted-image .img {
  transition: all 0.4s ease;
  cursor: pointer;
  will-change: transform, opacity;
}
.trusted-image .img:hover {
  transform: translateY(-8px) scale(1.05);
  filter: brightness(1.2);
}
/* ABOUT  */
.about-image {
  margin-top: 50px;
  border-radius: 40px;
  position: relative;
}
.about-image::after {
  position: absolute;
  left: 15px;
  top: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #00000000, #6666661a);
  content: "";
  border-radius: 40px;
  z-index: -1;
}
.about-image img {
  border-radius: 40px;
  height: 700px;
  object-fit: cover;
}

.about-image a.icon {
  position: absolute;
  right: -30px;
  bottom: -20px;
  width: 120px;
  height: 120px;
  background: var(--c8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: all 0.6s ease-in-out;
}
.about-image a.icon:hover {
  background: unset;
  border-color: var(--c5);
}

.about-image a.icon:hover img {
  transform: rotate(45deg);
}
a.icon img {
  border: unset;
  width: 50px;
  height: 80px;
  transition: all 0.6s ease-in-out;
  object-fit: contain;
}

/* TEAM */
.teams-content h2.web-title {
  font-size: 120px;
}

.teams-content.one h2.web-title:nth-child(1) {
  margin-left: -320px;
  color: var(--c7);
  opacity: 0.6;
}

.teams-content.one h2.web-title:nth-child(2) {
  margin-left: 200px;
  margin-top: 40px;
}

.team-img.one {
  position: absolute;
  right: 0;
  top: 0;
  filter: drop-shadow(0px -86px 214px #57449a);
  z-index: 9;
}
.teams-content.two h2.web-title:nth-child(1) {
  color: var(--c7);
  width: 100%;
  opacity: 0.8;
  margin-top: 80px;
}

.team-img.two {
  position: absolute;
  left: 60px;
  bottom: 0;
  filter: drop-shadow(0px 180px 194px #506bb3);
}
.teams-content.two h2.web-title:nth-child(2) {
  position: absolute;
  bottom: -200px;
  right: -250px;
  color: var(--c7);
  opacity: 0.8;
}

.teams-content.two {
  position: relative;
}

/* FINISH */
.discover-box {
  position: relative;
  background: linear-gradient(139deg, #4a8dca 10%, #57449a 80%);
  padding: 60px;
  border-radius: 30px;
  height: max-content;
}
.anitmation .discover-box:nth-child(even) {
  margin-top: 500px;
  margin-bottom: 100px;
}
.finish .count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 0;
}
.finish .count span {
  font-size: 64px;
  color: var(--c5);
  opacity: 0.1;
  font-weight: 600;
}
.finish .discover-box p strong {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
  text-transform: capitalize;
}
.finish .row:nth-child(2) .anitmation .discover-box:nth-child(odd)::before {
  content: "";
  position: absolute;
  right: -350px;
  top: 50%;
  width: 350px;
  height: 350px;
  background: url(../images/landing/Vector1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.finish .row:nth-child(2) .anitmation .discover-box:nth-child(even)::before {
  content: "";
  position: absolute;
  left: -370px;
  top: 50%;
  width: 370px;
  height: 373px;
  background: url(../images/landing/Vector2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.finish .row:nth-child(2) .anitmation .discover-box:last-child::before {
  position: unset;
}
/* DIFFERENT */
.different .row:last-child .col-lg-4:nth-child(odd) .different-box {
  height: 500px;
}
.different-heading p {
  max-width: 700px;
  margin-top: 20px;
}
.different .img {
  margin-top: -180px;
  transition: all 0.8s ease-in-out;
  transform: translateY(0px);
  animation: up-down 3s infinite linear;
  position: relative;
}
.different .img::after {
  content: "";
  position: absolute;
  width: 150px;
  bottom: -80px;
  border-radius: 50%;
  filter: blur(90px);
  background-color: #7e93ff;
  height: 200px;
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
  transform: rotateX(245deg);
  left: 30%;
}
.different-box:hover .img {
  margin-top: -220px;
  animation: unset;
}
.different-box.margin-minus {
  margin-top: -150px;
  height: 590px !important;
  background: linear-gradient(180deg, #57449a 0%, #2a3b8e 100%);
}
.different-box p {
  color: #afafaf;
}
.different-box:hover .content::after {
  opacity: 1;
}
@keyframes up-down {
  0% {
    transform: translateY(0);
  }

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

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

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

.different-box .content::after {
  content: "";
  position: absolute;
  width: 400px;
  bottom: -450px;
  right: -370px;
  border-radius: 50%;
  filter: blur(90px);
  background-color: #7e93ff;
  transform: translate(-50%, -50%);
  height: 400px;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
}
.different-box:hover::after {
  opacity: 1;
}
.different-box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #57449a 0%, #2a3b8e 100%);
  opacity: 0;
  border-radius: 20px;
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
}
a.icon {
  position: relative;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: end;
}
.different-box {
  padding: 50px;
  background: #060b22;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.6s ease,
    border-color 0.6s ease;
}

.different-box::before {
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(84, 78, 160, 1) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.different-box > * {
  position: relative;
  z-index: 1;
}

.different-box:hover {
  transform: translateY(-8px);
}
.different-box.margin-minus .content::after {
  opacity: 1;
}
.different::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  z-index: -1;
  filter: blur(380px);
  background-color: #57449a59;
  transform: translate(-50%, -50%);
}

/* BLOG */
.blog-main::before {
  z-index: 9;
  content: "";
  display: block;
  width: 0;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #ffffff33;
  box-shadow: 0 0 150px 130px #ffffff73;
  transform: skewX(-20deg);
}

.blog-main:hover::before {
  animation: sh02 0.5s 0s linear;
}

.blog-main:hover .img img {
  transform: scale(1.1);
}

.blog-main .img {
  height: 500px;
  overflow: hidden;
  border-radius: 30px;
}

.blog-main .img img {
  height: 100%;
  transition: all 0.7s ease-in-out;
}
.blog-head p {
  max-width: 660px;
  margin: 0 auto 80px;
}
.blog-main {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}
.blog-main .content {
  position: absolute;
  left: 15px;
  bottom: 15px;
  z-index: 999;
}
.blog-main::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0%) 0%,
    rgba(0, 0, 0, 90%) 100%
  );
  z-index: 0;
}
.blog-main .content h5.web-title {
  margin-bottom: 15px;
}

.blog-main a.blog-card.menu_hover {
  margin-top: 20px;
  border-bottom: 1px solid #6476d9;
  color: #6476d9;
  font-size: 24px;
}
.blog-main a.blog-card.menu_hover:hover span {
  color: #6476d9 !important;
  border-color: #6476d9 !important;
}

/* FORM */
.form::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  top: 70%;
  left: 50%;
  border-radius: 50%;
  z-index: -1;
  filter: blur(180px);
  background-color: #57449a59;
  transform: translate(-50%, -50%);
}
.contact-form-wrapper {
  position: relative;
  padding: 70px 60px;
  background: #060b22;
  border-radius: 35px;
  overflow: hidden;
  margin-bottom: 80px;
}
/* Gradient Border */
.contact-form-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 35px;

  background: linear-gradient(
    180deg,
    rgba(84, 78, 160, 1) 60%,
    rgba(255, 255, 255, 0) 100%
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}
/* Label */
.form-group label,
.interest-wrap > label {
  display: block;
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}
.form-control:focus {
  background: transparent !important;
  color: #fff;
  border-color: #7862c7 !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: rgba(87, 68, 154, 0.15);
  border: 1px solid #ffffff;
  border-radius: 40px;
  font-size: 16px;
  color: #7862c7;
  transition: 0.4s ease;
  cursor: pointer;
}
.interest-item input:checked + span {
  background: #7862c7;
  color: #fff;
  border-color: #7862c7;
}
/* Message */
textarea.form-control {
  resize: none;
  min-height: 120px;
}
/* Submit */
.submit-wrap {
  display: flex;
  justify-content: flex-end;
}
.submit-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  border: none;
  background: none;
  color: #fff;
  font-size: 32px;
  transition: all 0.6s ease-in-out;
  opacity: 1 !important;
}
.submit-btn .icon {
  background: linear-gradient(180deg, #57449a 0%, #2a3b8e 100%);
  padding: 25px;
  border-radius: 50%;
  border: 1px solid #ffffff5c;
  position: relative;
  overflow: hidden;
}
button.submit-btn:hover {
  color: var(--c6);
}

.submit-btn .icon::after {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 50px 30px #fff;
  transform: skewX(-20deg);
}

.submit-btn:hover .icon::after {
  animation: sh02 0.5s 0s linear;
}
.submit-btn .icon img {
  width: 30px;
  height: 30px;
}
.contact-box {
  position: relative;
  background: #060b22;
  border-radius: 20px;
  padding: 30px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  overflow: hidden;
  transition: all 0.7s ease-in-out;
}
.contact-box::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(84, 78, 160, 1) 65%,
    rgba(255, 255, 255, 0) 102%
  );
  -webkit-mask:
    linear-gradient(#ffffff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.contact-box .icon {
  background: #57449a36;
  padding: 15px;
  border-radius: 50%;
  overflow: hidden;
}
.contact-box .icon::after {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 50px 30px #fff;
  transform: skewX(-20deg);
}

.contact-box:hover .icon::after {
  animation: sh02 0.5s 0s linear;
}
.contact-box .conten {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 20px;
}

.idea h2.web-title {
  font-size: 38px;
  margin-bottom: 30px;
}
.site-logo p {
  margin-top: 30px;
}
.social-links ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.info-item span {
  font-size: 32px;
  margin-bottom: 30px !important;
  display: block;
  font-weight: 600;
}

.idea {
  margin-bottom: 70px;
}

.info-item ul li a {
  color: #73747d;
  font-size: 18px;
  margin-bottom: 15px;
  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: 20px;
}

.footer-bottom ul li:first-child {
  border-right: 1px solid var(--c7);
  padding-right: 20px;
}
.footer-bottom {
  padding: 60px 0px 30px;
}
.bg-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -2;
}
.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-radius: 50%;
  z-index: -1;
  filter: blur(90px);
  background-color: #57449a59;
  width: 1520px;
  height: 280px;
  transform: translateX(-50%);
}
.loader-wrap {
  position: fixed;
  inset: 0;
  background: var(--bg-body);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(73, 98, 172, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 98, 172, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    rgba(0, 0, 0, 1) 30%,
    transparent 80%
  );
  pointer-events: none;
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(123, 148, 255, 0.6);
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-20px) scale(1);
    opacity: 0;
  }
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(73, 98, 172, 0.18);
  top: -100px;
  left: -100px;
}
.glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(95, 61, 196, 0.15);
  bottom: -80px;
  right: -80px;
}
.glow-3 {
  width: 300px;
  height: 300px;
  background: rgba(139, 165, 255, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader-wrap .content {
  position: relative;
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.orbit {
  width: 160px;
  height: 160px;
  position: relative;
  margin-bottom: 36px;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(123, 148, 255, 0.12);
}
.ring-2 {
  inset: 20px;
  border-color: rgba(123, 148, 255, 0.08);
}
.ring-3 {
  inset: 40px;
  border-color: rgba(123, 148, 255, 0.06);
}

.ring-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7b94ff;
  top: -2.5px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow:
    0 0 8px #7b94ff,
    0 0 16px rgba(123, 148, 255, 0.5);
}
.ring-2 .ring-dot {
  background: #9bb0ff;
  box-shadow: 0 0 6px #9bb0ff;
}
.ring-3 .ring-dot {
  background: #4962ac;
  box-shadow: 0 0 5px #4962ac;
}

.core {
  position: absolute;
  inset: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4962ac, #8ba5ff);
  animation: corePulse 2s ease-in-out infinite;
}

@keyframes corePulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(73, 98, 172, 0.7),
      0 0 40px rgba(73, 98, 172, 0.3);
  }
  50% {
    box-shadow:
      0 0 0 16px rgba(73, 98, 172, 0),
      0 0 80px rgba(73, 98, 172, 0.5);
  }
}

.logo {
  font-family: "Syncopate", sans-serif;
  color: var(--c5);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 8px;
  line-height: 1;
  margin-bottom: 12px;
  overflow: hidden;
}

.logo-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
}
.logo em {
  color: #7b94ff;
  font-style: normal;
}

.tagline {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 5px;
  color: rgba(123, 148, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
}

.status {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--c3);
  text-transform: uppercase;
  min-height: 20px;
  margin-bottom: 28px;
}

.waves {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 60px;
}

.bar {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, #8ba5ff, #4962ac);
  transform: scaleY(0);
  transform-origin: center;
  animation: barWave 1.4s ease-in-out infinite;
}

@keyframes barWave {
  0%,
  100% {
    transform: scaleY(0.08);
    opacity: 0.3;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(139, 165, 255, 0.6));
  }
}

.bar:nth-child(1) {
  height: 28px;
  animation-delay: 0s;
}
.bar:nth-child(2) {
  height: 38px;
  animation-delay: 0.1s;
}
.bar:nth-child(3) {
  height: 50px;
  animation-delay: 0.2s;
}
.bar:nth-child(4) {
  height: 58px;
  animation-delay: 0.3s;
}
.bar:nth-child(5) {
  height: 60px;
  animation-delay: 0.4s;
}
.bar:nth-child(6) {
  height: 60px;
  animation-delay: 0.5s;
}
.bar:nth-child(7) {
  height: 58px;
  animation-delay: 0.6s;
}
.bar:nth-child(8) {
  height: 50px;
  animation-delay: 0.7s;
}
.bar:nth-child(9) {
  height: 38px;
  animation-delay: 0.8s;
}
.bar:nth-child(10) {
  height: 28px;
  animation-delay: 0.9s;
}
.bar:nth-child(11) {
  height: 20px;
  animation-delay: 1s;
}
.bar:nth-child(12) {
  height: 14px;
  animation-delay: 1.1s;
}

.scanline {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  z-index: 6;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.back-to-top i {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--c3);
  font-size: 15px;
  transition: all 0.35s ease;
}

.back-to-top:hover i {
  background: var(--c6);
  color: #fff;
  transform: scale(1.08);
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.15),
    0 0 40px rgba(255, 255, 255, 0.08);
}

.progress-ring {
  position: absolute;
  transform: rotate(-90deg);
}

.progress-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 3;
}

.progress-circle {
  fill: none;
  stroke: var(--c6);
  stroke-width: 3;
  stroke-linecap: round;

  stroke-dasharray: 163.36;
  stroke-dashoffset: 163.36;

  transition: stroke-dashoffset 0.15s linear;
  filter: drop-shadow(0 0 8px var(--c6));
}

.cursor1 {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid var(--c5);
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.15s;
  transition: 0.15s;
  z-index: 9999999999;
  mix-blend-mode: difference;
}
.cursor2 {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--c1);
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 999999999;
  mix-blend-mode: difference;
}

.anitmation-wrapper {
  position: relative;
}

.anitmation {
  height: 800px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-top: 80px;
  margin-bottom: 100px;
  padding: 80px 300px 0px;
  overflow-y: auto;
}

.form-control {
  transition: all 0.3s ease;
}

.form-control:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(73, 98, 172, 0.15);
}
.submit-btn:hover {
  transform: translateY(-4px);
}

.services-pk {
  position: relative;
  overflow: hidden;
}

.svc-grid-bg {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
}
.svc-grid-line {
  flex: 1;
  border-right: 1px solid #fff;
}
.svc-grid-line:last-child {
  border-right: none;
}

.svc-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.svc-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(73, 98, 172, 0.35) 0%,
    transparent 70%
  );
  top: -100px;
  left: -150px;
}
.svc-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(120, 60, 200, 0.2) 0%,
    transparent 70%
  );
  bottom: -80px;
  right: -100px;
}

.svc-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c6, #4962ac);
  border: 1px solid rgba(73, 98, 172, 0.4);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  position: relative;
}
.svc-eyebrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(73, 98, 172, 0.08);
}

.svc-cards-row {
  position: relative;
  z-index: 1;
}
.svc-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgb(18 18 18 / 7%);
  border-radius: 16px;
  padding: 36px 30px 32px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.35s ease,
    background 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(73, 98, 172, 0.12) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
}
.svc-card:hover::before {
  opacity: 1;
}
.svc-card:hover {
  border-color: rgba(73, 98, 172, 0.5);
  background: rgba(73, 98, 172, 0.06);
}

.svc-card-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(73, 98, 172, 0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c6, #4962ac);
  flex-shrink: 0;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.3s ease;
}
.svc-card-icon svg {
  width: 26px;
  height: 26px;
}
.svc-card:hover .svc-card-icon {
  transform: scale(1.1) rotate(-5deg);
  border-color: var(--c6, #4962ac);
}

.svc-card-content h3 {
  font-size: 33px;
  color: var(--c5);
  margin: 0 0 20px;
  line-height: 1.3;
  font-weight: 600;
}

.svc-card-arrow {
  margin-top: auto;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 20px;
  margin-top: 20px;
}
.svc-card:hover .svc-card-arrow {
  background: var(--c6, #4962ac);
  color: #fff;
  border-color: var(--c6, #4962ac);
  transform: rotate(-45deg);
}

.svc-card-num {
  position: absolute;
  bottom: 18px;
  right: 22px;
  font-size: 48px;
  font-weight: 800;
  color: var(--c5);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s ease;
  font-style: italic;
  opacity: .1;
}
.svc-card:hover .svc-card-num {
  color: var(--c5);
  opacity: .2;
}

.svc-bottom-strip {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px 36px;
  background: rgba(255, 255, 255, 0.02);
  gap: 20px;
  flex-wrap: wrap;
}
.svc-strip-text {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.svc-card-col {
  opacity: 0;
  transform: translateY(60px);
}

@media (max-width: 768px) {
  .svc-bottom-strip {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .svc-main-title {
    font-size: 32px;
  }
  .svc-strip-text {
    font-size: 16px;
  }
}
.svc-prev,
.svc-next {
  width: 50px !important;
  height: 50px !important;
  border-radius: 10px;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  left: auto !important;
  top: 40px !important;
}
.svc-header {
  margin-bottom: -80px;
}
.svc-prev:hover,
.svc-next:hover {
  background: var(--c1);
  border-color: var(--c7);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(73, 98, 172, 0.3);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px !important;
  color: var(--c5) !important;
}

.swiper-button-prev {
  right: 100px !important;
}
.swiper-button-next {
  right: 40px !important;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: var(--c5) !important;
}
.swiper.svc-slider {
  padding-top: 100px;
}
span.btn-icon .icon img {
  width: 30px;
  height: 20px;
  transition: all 0.6s ease-in-out;
}
.hover-btn:hover span.btn-icon img {
  transform: rotate(45deg);
}
.header_menu ul li a {
  font-size: 16px;
  padding: 20px 0px;
  transition: all 0.6s ease-in-out;
  position: relative;
  z-index: 999;
}
.header_menu ul li a:hover::before,
.header_menu ul li a:hover::after {
  opacity: 1;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10000000;
  position: relative;
}

.ham-line {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.3s ease,
    width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.line-1 {
  width: 28px;
}
.line-2 {
  width: 20px;
}
.line-3 {
  width: 24px;
}

/* Active (X) state */
.hamburger.is-active .line-1 {
  width: 28px;
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active .line-2 {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-active .line-3 {
  width: 28px;
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999998;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

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

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 90vw;
  height: 100dvh;
  background: #060b22;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-left: 1px solid rgba(84, 78, 160, 0.4);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(73, 98, 172, 0.25) 0%,
    transparent 70%
  );
  bottom: -80px;
  right: -80px;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.mobile-logo a {
  display: block;
  width: 120px;
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  flex-shrink: 0;
}
.mobile-nav-close:hover {
  background: rgba(73, 98, 172, 0.4);
  transform: rotate(90deg);
}

.mobile-nav-links {
  list-style: none;
  padding: 16px 0;
  margin: 0;
  flex: 1;
  overflow-y: auto;
  position: relative;
  z-index: 1;

  /* Custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(73, 98, 172, 0.4) transparent;
}
.mobile-nav-links::-webkit-scrollbar {
  width: 4px;
}
.mobile-nav-links::-webkit-scrollbar-thumb {
  background: rgba(73, 98, 172, 0.4);
  border-radius: 4px;
}

.mobile-nav-item {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  transition-delay: calc(var(--i) * 0.06s);
}

.mobile-nav.is-open .mobile-nav-item {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease,
    background 0.3s ease;
  overflow: hidden;
}

.mobile-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #4962ac, #57449a);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
  transform: scaleY(1);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #ffffff;
  padding-left: 36px;
  background: rgba(73, 98, 172, 0.06);
}

.nav-num {
  font-size: 11px;
  color: rgba(73, 98, 172, 0.7);
  font-weight: 600;
  letter-spacing: 1px;
  min-width: 20px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover .nav-num {
  color: #4962ac;
}

.nav-text {
  flex: 1;
}

.nav-arrow {
  font-size: 13px;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.mobile-nav-link:hover .nav-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #4962ac;
}

.mobile-nav-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;

  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease 0.5s,
    transform 0.4s ease 0.5s;
}

.mobile-nav.is-open .mobile-nav-footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cta {
  width: 100%;
  justify-content: center;
}

.mobile-socials {
  display: flex;
  gap: 16px;
  align-items: center;
}

.mobile-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}
.mobile-socials a:hover {
  background: rgba(73, 98, 172, 0.3);
  border-color: rgba(73, 98, 172, 0.5);
  transform: translateY(-3px);
}
.mobile-socials a img {
  width: 16px;
  height: 16px;
}
body.nav-open {
  overflow: hidden;
}

@media (min-width: 992px) {
  .mobile-nav,
  .mobile-nav-overlay,
  .hamburger {
    display: none !important;
  }
}

@media (max-width: 375px) {
  .mobile-nav {
    width: 100vw;
    max-width: 100vw;
    border-left: none;
  }
  .mobile-nav-link {
    font-size: 16px;
    padding: 14px 20px;
  }
  .mobile-nav-header {
    padding: 20px;
  }
  .mobile-nav-footer {
    padding: 20px;
  }
}
.banner-content-text p {
  font-size: 22px;
}
.discover-box p span {
  font-size: 20px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.contact-form-wrapper form {
  margin-top: 20px;
}
.footer .site-logo {
  padding-right: 100px;
}
.inner-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-radius: 50%;
  z-index: -1;
  filter: blur(90px);
  background-color: #57449a59;
  width: 1520px;
  height: 280px;
  transform: translateX(-50%);
}
.inner-banner {
  height: 550px;
}
.inner-banner .banner-content {
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  margin-top: 80px;
}
/* SECTION COUNTER */

.counter {
  position: relative;
}

.counter-item h2 {
  font-weight: 800;
  font-size: 80px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-stroke: 1px var(--c5);
  margin-bottom: 20px;
}

.counter-item {
  text-align: center;
  position: relative;
}

.counter-item h3 {
  font-weight: 400;
  font-size: 26px;
  color: var(--c5);
}

.counter-item::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgb(255 255 255 / 11%);
  height: 120%;
  right: -10px;
}

.counter .row .col-lg-3:last-child .counter-item::before {
  visibility: hidden;
  opacity: 0;
}

.counter-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation: left-right 5s infinite linear;
}
@keyframes left-right {
  0% {
    transform: translateX(0);
  }

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

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

  100% {
    transform: translateX(0);
  }
}
.services-btn {
  margin-top: 40px;
}
.ready-content p.web-color {
  max-width: 400px;
  margin: 10px auto 0pc;
}
.ready::after {
  content: "";
  position: absolute;
  bottom: 50%;
  left: 50%;
  border-radius: 50%;
  z-index: -1;
  filter: blur(90px);
  background-color: #57449a59;
  width: 1820px;
  height: 280px;
  transform: translateX(-50%);
}
.cursor-shade::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: -1;
  filter: blur(70px);
  background-color: #57449a2b;
  width: 680px;
  height: 680px;
  transform: translate(-50%, -50%); /* center rakho */
  pointer-events: none;
}
.banner-content-inner h6.web-title {
  font-size: 24px;
}

.terms-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 50px;
}

.terms-wrapper > p {
  margin: 24px 0 40px;
  line-height: 1.8;
}

.terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 9999999999999999999;
}

.terms-list li {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terms-list li:last-child {
  border-bottom: 0;
}

.terms-list h3 {
  color: var(--c6);
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.terms-list p {
  color: var(--web-color);
  line-height: 1.9;
  margin: 0;
}

@media (max-width: 768px) {
  .terms-wrapper {
    padding: 30px 20px;
  }

  .terms-list h3 {
    font-size: 20px;
  }
}
.terms::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -200px;
  border-radius: 50%;
  z-index: 0;
  filter: blur(80px);
  background-color: #57449a59;
  width: 920px;
  height: 70%;
  transform: translateX(50%);
}
.terms::before {
  content: "";
  position: absolute;
  top: 0%;
  left: -200px;
  border-radius: 50%;
  z-index: 0;
  filter: blur(90px);
  background-color: #57449a59;
  width: 720px;
  height: 30%;
  transform: translateX(-50%);
}
body.about .about-content span.d-block {
  font-size: 24px;
  margin: 10px 0px;
}
body.about .about-content p {
  margin-bottom: 10px;
}
.discover-box * {
    color: white;
}
.footer-bottom ul li a {
    color: var(--c5);
}
section.finish {
    position: relative;
}

section.finish::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 300px;
    top: 0;
    left: 50%;
    border-radius: 40%;
    z-index: -1;
    filter: blur(130px);
    background-color: #525ba9;
    transform: translateX(-50%);
}