html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: "DM Sans", sans-serif;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
}

h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.hero-heading {
  font-family: "DM Sans", serif;
}

article,
details,
footer,
main,
menu,
nav,
section,
summary {
  display: block;
}

a {
  background-color: var(--transparent);
}

b,
strong {
  font-weight: bold;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"] {
  cursor: pointer;
}

input {
  line-height: normal;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  color: var(--tertiary-800);
  background-color: var(--white);
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
}

img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}

.hero-v1-title-wrap {
  flex: 1 1 320px;
  min-width: 240px;
}

@media (max-width: 600px) {
  .h1.hero-heading {
    font-size: 28px !important;
    line-height: 1.15 !important;
  }
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 10px;
  font-weight: bold;
}

h1 {
  margin-top: 20px;
  font-size: 38px;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  font-size: 32px;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 24px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}

button,
[type="button"],
[type="reset"] {
  cursor: pointer;
  border: 0;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}

@media screen and (max-width: 767px) {
  .w-nav-brand {
    padding-left: 10px;
  }
}

.w-nav {
  z-index: 1000;
  position: relative;
}

.w-nav:before,
.w-nav:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-nav:after {
  clear: both;
}

.w-nav-brand {
  float: left;
  color: var(--tertiary-800);
  text-decoration: none;
  position: relative;
}

.w-nav-menu {
  float: right;
  position: relative;
}

.mobile-menu-header {
  display: none;
}

.w-nav-button {
  float: right;
  cursor: pointer;
  -webkit-tap-highlight-color: var(--transparent);
  -webkit-user-select: none;
  user-select: none;
  padding: 18px;
  font-size: 24px;
  display: none;
  position: relative;
}

@media screen and (max-width: 991px) {
  .w-nav[data-collapse="medium"] .w-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 300px;
    height: 100vh;
    background-color: #044bab;
    z-index: 9999;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    padding: 20px 30px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
    visibility: visible;
  }

  .w-nav[data-collapse="medium"].w--open .w-nav-menu {
    transform: translateX(0);
    visibility: visible;
  }

  .w-nav[data-collapse="medium"].w--open .mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 100%;
  }

  .mobile-menu-header {
    display: none;
  }

  .mobile-menu-close {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
  }

  .mobile-menu-close:hover {
    opacity: 0.7;
  }

  .w-nav[data-collapse="medium"] .w-nav-button {
    display: block !important;
  }

  .w-nav[data-collapse="medium"] .menu-button {
    display: flex !important;
    float: none !important;
  }
}

@media screen and (max-width: 767px) {
  .w-nav[data-collapse="small"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="small"] .w-nav-button {
    display: block;
  }

  .w-nav-brand {
    padding-left: 10px;
  }
}

:root {
  --primary-900: #044bab;
  --primary-800: #2d69ba;
  --primary-700: #5787c7;
  --primary-600: #82a5d5;
  --primary-500: #acc4e3;
  --primary-400: #d4e1f0;
  --primary-300: #ffffff;

  --secondary-900: #fa731b;
  --secondary-800: #f6893f;
  --secondary-700: #f99e62;
  --secondary-600: #fcfcfc;
  --secondary-500: #fdcba7;
  --secondary-400: #fee4cf;
  --secondary-300: #ffffff;

  --tertiary-900: #000000;
  --tertiary-800: #515152;
  --tertiary-700: #747577;
  --tertiary-600: #949598;
  --tertiary-500: #b6b7b9;
  --tertiary-400: #f2f2f2;
  --tertiary-300: #ffffff;

  --black: var(--tertiary-900);
  --white: var(--tertiary-300);
  --primary: var(--primary-900);
  --secondary: var(--secondary-900);
  --text-primary: var(--tertiary-300);
  --text-secondary: var(--tertiary-500);
  --bg-primary: var(--tertiary-900);
  --bg-secondary: var(--tertiary-800);
  --border-color: var(--tertiary-500);

  --2: -0.02em;
  --1: -0.01em;
  --100: 100%;
  --2px: -0.125em;
  --_responsive---margin-160-px: 160px;
  --_responsive---padding-140-px: 140px;
  --_responsive---margin-80-px: 80px;
  --_responsive---padding-211-px: 211px;

  --transparent: transparent;
}

body {
  background-color: var(--white);
  color: var(--black);
  --_responsive---margin-160-px: 160px;
  --_responsive---padding-140-px: 140px;
  --_responsive---margin-80-px: 80px;
  --_responsive---padding-211-px: 211px;
  font-family: "DM Sans", "DM Sans Placeholder", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

h1 {
  letter-spacing: var(--2);
  margin-top: 0;
  margin-bottom: 0;
  font-family: "DM Sans", "DM Sans Placeholder", sans-serif;
  font-size: 62px;
  font-weight: 500;
  line-height: 120%;
}

h2 {
  letter-spacing: var(--2);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  font-weight: 500;
  line-height: 120%;
}

h3 {
  letter-spacing: var(--2);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 140%;
}

h4 {
  letter-spacing: var(--2);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 120%;
}

p {
  margin-top: 16px;
  margin-bottom: 0;
  font-family: "DM Sans", "DM Sans Placeholder", sans-serif;
  font-weight: 400;
  line-height: 24px;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 30px;
}

li {
  margin-top: 16px;
  margin-bottom: 10px;
  padding-left: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
}

.page-wrapper {
  color: var(--white);
  position: relative;
}

.container {
  max-width: 1266px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 13px;
  padding-right: 13px;
}

.h1 {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
}

.h2 {
  letter-spacing: var(--2);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  font-weight: 500;
  line-height: 120%;
}

.p-text-01 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "DM Sans", "DM Sans Placeholder", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 30px;
  color: var(--tertiary-900);
}

.p-text-01.text-white-70 {
  color: var(--tertiary-900);
}

.p-text-01.text-white-60 {
  color: var(--tertiary-900);
}

.p-text-02 {
  letter-spacing: var(--1);
  margin-top: 0;
  margin-bottom: 0;
  font-family: "DM Sans", "DM Sans Placeholder", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  color: var(--tertiary-900);
}

.p-text-02.image {
  z-index: 1;
  position: relative;
}

.p-text-03 {
  letter-spacing: var(--1);
  margin-top: 0;
  margin-bottom: 0;
  font-family: "DM Sans", "DM Sans Placeholder", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: var(--tertiary-900);
}

.p-text-03.text-white-60 {
  opacity: 0.6;
}

.p-text-03.text-white-60.faq-answer {
  margin-top: 16px;
  color: var(--primary-900);
}

.main-hero {
  background-image: url("../assets/images/back.webp");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  position: relative;
}

.heading-wrap {
  text-align: center;
}

.heading-wrap.hero-v1-heading {
  text-align: left;
}

.heading-wrap.faq-heading {
  text-align: center;
  margin-top: 20px;
  line-height: 1;
}

.heading-wrap i {
  font-style: italic;
  font-weight: normal;
  font-size: 86px;
  font-family: "Playfair Display", serif;
}

.fit-cover {
  width: var(--100);
  height: var(--100);
  object-fit: cover;
  object-position: 50% 50%;
}

.nav-link {
  color: var(--primary-900);
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: none;
  transition: color 0.3s;
}
.navbar.sticky .nav-link {
  color: var(--tertiary-900);
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link-text {
  position: relative;
  display: inline-block;
}

.nav-link:hover .nav-link-text {
  color: var(--secondary-700);
}

.nav-link.w--current .nav-link-text {
  color: var(--secondary-900);
  font-weight: 700;

  background: rgba(255, 255, 255, 0.95);
  padding: 10px 22px;
  border-radius: 999px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition: all 0.3s ease;
}

@media (max-width: 600px) {
  .nav-link-text::after {
    bottom: -4px;
    height: 2px;
  }
}

.navbar-right {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.nav-item {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

.navbar-brand {
  width: 200px;
}

.navbar-brand .logo-desktop {
  display: block;
  width: 100%;
  height: auto;
}

.navbar-brand .logo-mobile {
  display: none;
  width: 60px;
  height: 60px;
}

.nav-link-text {
  letter-spacing: var(--1);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.nav-link-text:hover {
  color: var(--primary);
}

.navbar-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 14px;
  align-items: center;
  justify-content: space-between;
  display: flex;
  width: 100%;
  max-width: 100%;
}

.navbar-center {
  flex: 1;
  display: flex;
  justify-content: start;
  align-items: center;
}

.navbar-left {
  flex-shrink: 0;
}

.navbar-right {
  flex-shrink: 0;
}

.nav-menu {
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 5px;
  display: flex;
}

.nav-wrap {
  padding-top: 32px;
}

/* Sticky navbar: fixed at top with white background when user scrolls */
.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2000;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-radius: 0;
  padding: 10px 20px;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

/* Placeholder element to preserve layout when navbar becomes fixed */
.nav-placeholder {
  display: block;
  width: 100%;
  height: 0;
  pointer-events: none;
}

/* Keep inner navbar wrapper centered when navbar becomes sticky */
.navbar.sticky .navbar-wrapper {
  max-width: 1266px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.navbar.sticky .nav-link.w--current .nav-link-text {
  color: var(--tertiary-300);
  font-weight: 700;

  background: var(--primary-900);
  padding: 10px 22px;
  border-radius: 999px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition: all 0.3s ease;
}

.navbar.sticky .navbar-left {
  margin-right: 18px;
}

.footer {
  background-image: url("../assets/images/back.webp");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 40px;
  padding-bottom: 10px;
}

.footer-top {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  display: flex;
}

.footer-bottom {
  margin-top: 80px;
}

.footer-top-left {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  width: 452px;
  max-width: 100%;
  display: flex;
}

.footer-logo {
  width: 180px;
  height: 70px;
}

.footer-logo-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-logo-details {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.footer-right-link-wrap {
  grid-column-gap: 90px;
  grid-row-gap: 90px;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.footer-link-list {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-flow: column;
  align-items: flex-start;
  margin-top: 12px;
  display: flex;
}

.footer-link {
  color: var(--tertiary-900);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  overflow: hidden;
}

.footer-link.w--current {
  color: var(--primary);
}

.footer-link-text {
  z-index: 99;
  letter-spacing: var(--1);
  justify-content: center;
  align-items: center;
  padding-bottom: 2px;
  font-family: "DM Sans", "DM Sans Placeholder", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  display: flex;
  position: relative;
  transform: perspective(725px);
}

.vertical-divider {
  opacity: 0.12;
  background-image: linear-gradient(
    var(--black) 4%,
    var(--white) 48%,
    var(--black)
  );
  width: 100%;
  height: 1px;
}

.footer-bottom-wrap {
  justify-content: space-between;
  margin-top: 20px;
  display: flex;
}

.home-hero-v1 {
  padding-top: 120px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.home-hero-v1-wrap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-v1-content {
  width: 100%;
}

.hero-v1-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.hero-main-title {
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--primary-900);
  margin: 0;
  text-align: center;
  background: var(--tertiary-900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subheadline {
  font-size: clamp(1rem, 2.5vw, 22px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--tertiary-900);
  margin: 0;
  max-width: 1500px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-cta-wrap {
  margin-top: 8px;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
  display: flex;
  justify-content: center;
}

/* Portfolio loading placeholder shown while items are being fetched */
.portfolio-loader {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.portfolio-loader .loader-text {
  font-weight: 600;
  font-size: 16px;
  color: var(--tertiary-900);
}

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(
    135deg,
    var(--primary-900) 0%,
    var(--primary-400) 100%
  );
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  box-shadow:
    0 4px 20px var(--primary-400),
    0 0 40px var(--primary-400);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 30px var(--primary-400),
    0 0 20px var(--primary-800);
}

.hero-cta-button:hover::before {
  opacity: 1;
}

.hero-cta-button:active {
  transform: translateY(-1px);
}

.cta-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.hero-cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s ease-out 0.1s forwards;
  opacity: 0;
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.trust-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--primary-900);
  object-fit: cover;
  margin-left: -12px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.trust-avatar:first-child {
  margin-left: 0;
}

.trust-avatar:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 100, 13, 0.4);
  z-index: 10;
  position: relative;
}

.trust-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--primary-900);
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-number {
  color: var(--secondary-900);
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
}

.hero-brands-section {
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-brands-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

.brands-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.brands-carousel {
  display: flex;
  gap: 60px;
  animation: scroll-infinite 30s linear infinite;
  will-change: transform;
}

.brands-carousel:hover {
  animation-play-state: paused;
}

@keyframes scroll-infinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.brand-logo-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.brand-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transition: all 0.3s ease;
}

.brand-logo-slide:hover .brand-logo-img {
  opacity: 0.9;
  transform: scale(1.05);
}

.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 80px;
  padding: 32px 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 4px 24px var(--primary-500);
  position: relative;
  overflow: hidden;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.stat-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 200;
  line-height: 1;
  background: var(--primary-900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.stat-suffix {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--secondary-900);
  line-height: 1;
}

.stat-label {
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 500;
  color: var(--tertiary-900);
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 100%
  );
  flex-shrink: 0;
}

.main-hero > *:not(.animated-fog) {
  position: relative;
}

@media screen and (max-width: 991px) {
  .home-hero-v1 {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .hero-stats-row {
    padding: 28px 32px;
    gap: 16px;
    margin-top: 60px;
  }

  .stat-divider {
    height: 40px;
  }
}

@media screen and (max-width: 767px) {
  .home-hero-v1 {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .hero-v1-title-wrap {
    gap: 24px;
  }

  .hero-trust-badge {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
  }

  .trust-avatar {
    width: 40px;
    height: 40px;
    border-width: 2px;
    margin-left: -10px;
  }

  .trust-text {
    font-size: 12px;
    text-align: center;
  }

  .trust-number {
    font-size: 13px;
  }

  .hero-cta-button {
    padding: 14px 28px;
    font-size: 16px;
  }

  .hero-stats-row {
    flex-wrap: wrap;
    padding: 24px 20px;
    gap: 24px 12px;
    margin-top: 50px;
  }

  .hero-stat-item {
    flex: 1 1 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }

  .stat-divider {
    display: none;
  }

  .stat-number {
    font-size: clamp(28px, 8vw, 36px);
  }

  .stat-suffix {
    font-size: clamp(20px, 6vw, 28px);
  }

  .stat-label {
    font-size: 12px;
  }

  .hero-brands-section {
    margin-top: 60px;
    padding: 40px 0;
  }

  .brands-carousel {
    gap: 40px;
  }

  .brand-logo-slide {
    padding: 0 10px;
  }

  .brand-logo-img {
    height: px;
    max-width: 120px;
  }
}

@media screen and (max-width: 479px) {
  .nav-link.w--current .nav-link-text {
    color: var(--secondary-900);
    font-weight: 700;
    background: none;
    padding: 0px 0px;
    transition: all 0.3s ease;
  }

  .home-hero-v1 {
    padding-top: 60px;
    padding-bottom: 50px;
  }

  .hero-v1-title-wrap {
    gap: 20px;
  }

  .hero-cta-button {
    padding: 14px 24px;
  }

  .hero-stats-row {
    padding: 20px 16px;
    gap: 20px 8px;
  }

  .hero-stat-item {
    flex: 1 1 calc(50% - 8px);
    min-width: calc(50% - 8px);
  }
}

.text-linear {
  color: var(--primary-900);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2rem, 6vw, 5rem);
}

.testimonials-01-client {
  width: 56px;
  height: 56px;
}

.client-name-wrap {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.faq-wrap {
  padding: 100px 20px 0px;
  align-items: center;
  margin-bottom: 30px;
}

.faq-right {
  width: 100%;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-columns: repeat(1, 1fr);
  flex-flow: column;
  display: grid;
  padding: 100px;
}

.faq-answer-wrap {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    padding 0.3s ease;
  padding-top: 0;
}

.faq-list.active .faq-answer-wrap {
  max-height: 1000px;
  opacity: 1;
  padding-top: 16px;
}

.faq-list {
  cursor: pointer;
  background-color: rgba(18, 82, 174, 0.08);
  border-radius: 16px;
  padding: 24px 16px 24px 24px;
}

.faq-question-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.faq-icon {
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.faq-icon._01 {
  opacity: 0;
  position: absolute;
  inset: 0%;
  transition: opacity 0.3s ease;
}

.faq-list.active .faq-icon._01 {
  opacity: 1;
}

.faq-list.active .faq-icon:not(._01) {
  opacity: 0;
}

.faq-icon-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 24px;
  height: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.navbar {
  margin: auto;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 50px;
  padding: 7px 10px 7px 24px;
  overflow: visible;
  position: relative;
  z-index: 100;
}

.nav-bar-wrap {
  margin: auto;
  align-items: center;
  position: relative;
  max-width: 1320px;
  width: 100%;
  overflow: visible;
}

@media screen and (max-width: 991px) {
  body {
    --_responsive---margin-160-px: 100px;
    --_responsive---padding-140-px: 100px;
    --_responsive---margin-80-px: 70px;
    --_responsive---padding-211-px: 140px;
  }

  h2 {
    font-size: 44px;
  }

  h3 {
    font-size: 38px;
  }

  li {
    font-size: 16px;
    line-height: 28px;
  }

  .h1 {
    font-size: 52px;
  }

  .h2 {
    font-size: 46px;
  }

  .h3 {
    font-size: 38px;
  }

  .h4 {
    font-size: 27px;
  }

  .button-02 {
    padding: 12px 30px 12px 26px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .heading-wrap.faq-heading {
    text-align: center;
  }

  .fit-cover._01 {
    object-position: 50% 0%;
  }

  .nav-link {
    padding: 0;
    color: var(--white);
  }

  .navbar-right {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    display: flex !important;
    align-items: center;
  }

  .hamburger-menu {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hamburger-icon {
    width: 24px;
    height: 24px;
    color: var(--secondary-900);
    display: block;
  }

  .menu-button {
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex !important;
    cursor: pointer;
    position: relative;
    z-index: 1000;
    float: none !important;
  }

  .menu-button.w--open {
    color: var(--white);
    background-color: rgba(200, 200, 200, 0);
  }

  .navbar-brand {
    width: var(--100);
  }

  .navbar-brand .logo-desktop {
    display: none;
  }

  .navbar-brand .logo-mobile {
    display: block;
    max-width: 500px;
  }

  .nav-menu {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .nav-wrap {
    padding: 10px;
  }

  .navbar-wrapper {
    justify-content: space-between;
  }

  .menu-button {
    margin-left: auto;
  }

  .footer {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .footer-top {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
  }

  .footer-bottom {
    margin-top: 40px;
  }

  .footer-right-link-wrap {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    flex-flow: wrap;
    justify-content: flex-start;
  }

  .home-hero-v1 {
    padding-bottom: 100px;
  }

  .home-hero-v1-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: row;
    align-items: center;
  }

  .hero-v1-title-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .success-rate-bottom {
    grid-row-gap: 40px;
    flex-flow: wrap;
    justify-content: center;
  }

  .counter-number {
    font-size: 38px;
  }

  .priceing-01 {
    margin-bottom: 100px;
  }

  .priceing-01-top {
    grid-column-gap: 22px;
    grid-row-gap: 22px;
  }

  .faq-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .faq-right {
    width: var(--100);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .faq-list {
    border-radius: 12px;
    padding: 20px;
  }

  .cta-button {
    padding: 12px 30px 12px 26px;
  }

  .form {
    height: 60px;
  }

  .form-submit-button {
    padding-top: 0;
    padding-bottom: 0;
  }

  .integration {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .solutions {
    padding-top: 80px;
  }

  .positions {
    margin-top: 80px;
  }

  .benefits {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .list {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .contact {
    margin-top: 100px;
    margin-bottom: 80px;
  }

  .contact-bottom {
    width: var(--100);
  }

  .navbar,
  .nav-bar-wrap {
    max-width: var(--100);
  }
}

@media screen and (max-width: 767px) {
  .navbar-right {
    display: flex !important;
    margin-left: auto;

    position: relative;
    z-index: 1002;
  }

  .navbar-wrapper {
    justify-content: space-between;
    grid-column-gap: 10px;
  }
}

@media screen and (max-width: 767px) {
  body {
    --_responsive---margin-160-px: 80px;
    --_responsive---padding-140-px: 80px;
    --_responsive---margin-80-px: 60px;
    --_responsive---padding-211-px: 100px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 30px;
  }

  li {
    margin-top: 12px;
    margin-bottom: 4px;
  }

  .h1 {
    font-size: 44px;
  }

  .h1.hero-heading {
    font-size: 48px;
  }

  .h2 {
    font-size: 40px;
  }

  .h3 {
    font-size: 34px;
  }

  .h4 {
    font-size: 26px;
  }

  .p-text-01 {
    font-size: 17px;
    line-height: 28px;
  }

  .p-text-02 {
    font-size: 16px;
  }

  .p-text-03 {
    font-size: 14px;
  }

  .hero {
    padding-top: 80px;
    padding-bottom: 70px;
  }

  .heading-wrap.hero-v1-heading {
    text-align: center;
  }

  .navbar-right {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .footer {
    padding-top: 40px;
  }

  .footer-top-left {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .footer-logo-details {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .footer-right-link-wrap {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    justify-content: flex-start;
  }

  .home-hero-v1 {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .home-hero-v1-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .hero-v1-title-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .success-rate-bottom {
    grid-column-gap: 20px;
    margin-top: 35px;
  }

  .counter-number {
    font-size: 34px;
  }

  .testimonials-01-client {
    width: 50px;
    height: 50px;
  }

  .priceing-01 {
    margin-bottom: 80px;
  }

  .priceing-01-top {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .faq-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .faq-list {
    border-radius: 10px;
    padding: 18px;
  }

  .form {
    flex-flow: row;
    justify-content: center;
    width: 100%;
    height: auto;
  }

  .form-submit-button {
    padding: 12px 34px;
  }

  .trusted {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .integration {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .event {
    margin-top: 80px;
  }

  .solutions {
    padding-top: 60px;
  }

  .positions {
    margin-top: 60px;
  }

  .benefits {
    padding-top: 20px;
    padding-bottom: 60px;
  }

  .list {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .contact {
    margin-top: 80px;
    margin-bottom: 60px;
  }

  .mission {
    margin-top: 70px;
  }

  .navbar {
    padding-left: 20px;
  }
}

@media screen and (max-width: 479px) {
  body {
    --_responsive---margin-160-px: 60px;
    --_responsive---padding-140-px: 60px;
    --_responsive---margin-80-px: 40px;
    --_responsive---padding-211-px: 80px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  li {
    margin-top: 10px;
    padding-left: 5px;
    font-size: 14px;
  }

  .h1 {
    font-size: 38px;
  }

  .h2 {
    font-size: 36px;
    line-height: 140%;
  }

  .h3 {
    font-size: 30px;
  }

  .h4 {
    font-size: 24px;
  }

  .p-text-01 {
    font-size: 15px;
    line-height: 1.5;
    text-align: justify;
  }

  .p-text-02 {
    font-size: 15px;
  }

  .p-text-03.text-white-60 {
    text-align: left;
    font-size: 16px;
  }

  .button-02 {
    padding: 10px 18px;
  }

  .navbar-right {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .menu-button {
    width: 50px;
    height: 50px;
    display: flex !important;
    float: none !important;
  }

  .hamburger-icon {
    width: 20px;
    height: 20px;
    display: block !important;
  }

  .hamburger-icon path {
    stroke: var(--secondary-900);
  }

  .hamburger-icon {
    width: 25px;
    height: 25px;
    display: block !important;
  }

  .navbar-brand {
    width: 35px;
  }

  .nav-link-text {
    font-size: 16px;
    line-height: 28px;
  }

  .nav-menu {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .footer {
    padding-top: 30px;
    padding-bottom: 0;
  }

  .footer-bottom {
    margin-top: 30px;
  }

  .footer-top-left {
    grid-column-gap: 33px;
    grid-row-gap: 33px;
  }

  .footer-logo-wrap {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .footer-logo-details {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    text-align: left;
  }

  .footer-right-link-wrap {
    grid-column-gap: 60px;
    grid-row-gap: 30px;
  }

  .footer-link-list {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .footer-bottom-wrap {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: wrap;
    justify-content: center;
    margin-top: 18px;
  }

  .hero-v1-title-wrap {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
  }

  .success-rate-bottom {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    justify-content: center;
    margin-top: 26px;
  }

  .counter-number {
    font-size: 30px;
  }

  .testimonials-01-client {
    width: 40px;
    height: 40px;
  }

  .client-name-wrap {
    grid-column-gap: 1px;
    grid-row-gap: 1px;
  }

  .priceing-01 {
    margin-bottom: 60px;
  }

  .priceing-01-top {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
  }

  .faq-wrap {
    grid-column-gap: 26px;
    grid-row-gap: 26px;
  }

  .faq-right {
    width: 100%;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 1fr);
    flex-flow: column;
    display: grid;
    padding: 70px 0px 80px 0px;
  }

  .faq-list {
    padding: 16px;
  }

  .cta-button {
    padding: 10px 26px 10px 21px;
  }

  .form {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .form-submit-button {
    padding: 8px 26px;
  }

  .trusted {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .integration {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .event {
    margin-top: 60px;
  }

  .solutions {
    padding-top: 30px;
  }

  .positions {
    margin-top: 30px;
  }

  .benefits {
    margin-top: 10px;
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .contact {
    margin-top: 60px;
    margin-bottom: 50px;
  }

  .contact-form-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .text-field-v5 {
    height: 45px;
  }

  .text-field-v5._01 {
    height: 120px;
  }

  .mission {
    margin-top: 60px;
  }

  .navbar {
    padding-left: 14px;
  }
}

@keyframes blurFadeIn {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes spin-clockwise {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes counter-spin-clockwise {
  0% {
    transform: rotate(0deg);
  }

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

.footer-link {
  position: relative;

  overflow: hidden;

  display: block;
}

.footer-link .footer-link-text {
  display: block;
  padding-bottom: 2px;
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.footer-link:hover .footer-link-text {
  transform: translateY(10%);
}

@media screen and (max-width: 767px) {
  .home-hero-v1-wrap {
    flex-direction: column-reverse;

    gap: 40px;

    text-align: center;
  }

  .hero-v1-title-wrap {
    align-items: center;
  }

  .heading-wrap.hero-v1-heading {
    text-align: center;
  }

  .success-rate-bottom {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .tech-stack-top {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-bottom: 40px;
  }

  .tech-stack-top {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-bottom: 40px;
  }

  .logo-scroller {
    overflow: hidden;
    position: relative;

    padding: 10px 0;
  }

  .logo-scroller::before,
  .logo-scroller::after {
    content: "";
    position: absolute;
    top: 0;
    width: 10%;

    height: 100%;
    z-index: 10;
    pointer-events: none;
  }

  .logo-scroller::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
  }

  .logo-scroller::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
  }

  .logo-scroller-inner {
    display: flex;
    width: max-content;

    animation: scroll 60s linear infinite;

    align-items: center;
  }

  .logo-scroller-inner .logo-item {
    padding: 0 30px;

    flex-shrink: 0;
  }

  .logo-scroller[data-direction="right"] .logo-scroller-inner {
    animation-direction: reverse;
  }

  .logo-scroller:hover .logo-scroller-inner {
    animation-play-state: paused;
  }

  .logo-scroller-inner img {
    height: 50px;

    max-width: 180px;

    object-fit: contain;

    filter: grayscale(1) brightness(1.2);

    transition: filter 0.3s ease;
    vertical-align: middle;
  }

  .logo-scroller-inner img:hover {
    filter: grayscale(0) brightness(1);
  }

  @keyframes scroll {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  @media screen and (max-width: 767px) {
    .logo-scroller-inner img {
      height: 40px;
    }

    .logo-scroller-inner .logo-item {
      padding: 0 20px;
    }

    .logo-scroller-inner {
      animation-duration: 40s;
    }
  }

  .faq-wrap {
    flex-direction: column;
    gap: 40px;
  }

  .heading-wrap.faq-heading {
    text-align: center;
  }

  .faq-right {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .footer-top-left {
    align-items: center;
  }

  .footer-right-link-wrap {
    width: 100%;
    justify-content: space-around;
    text-align: center;
  }

  .footer-link-list {
    align-items: center;
  }
}

@media screen and (max-width: 991px) {
  .navbar,
  .nav-bar-wrap {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 991px) {
  .faq-wrap {
    flex-flow: column;
    gap: 40px;
  }

  .footer-top {
    flex-flow: column;
    gap: 50px;
  }

  .footer-right-link-wrap {
    flex-flow: wrap;
    justify-content: flex-start;
    gap: 60px;
  }
}

@media screen and (max-width: 479px) {
  .footer-top {
    align-items: center;
    text-align: center;
  }

  .footer-top-left {
    align-items: center;
  }

  .footer-right-link-wrap {
    justify-content: center;
    gap: 30px;
  }

  .footer-link-list {
    align-items: center;
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.tech-stack-top {
  margin-bottom: 100px;
  margin-top: 0px;
}

.tech-carousel-container {
  height: 500px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 2500px;
  margin-top: -250px;
}

.tech-carousel {
  position: relative;
  width: 260px;
  height: 160px;
  transform-style: preserve-3d;
  animation: rotate-carousel 35s linear infinite;
}

.tech-carousel:has(.logo-item:hover) {
  animation-play-state: paused !important;
}

.logo-item {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    var(--primary-600)
  );
  border-radius: 16px;
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

.logo-item img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1) grayscale(1) opacity(0.9);
  transition: filter 0.3s ease;
}

.logo-item:nth-child(1) {
  transform: rotateY(0deg) translateZ(700px);
  z-index: 14;
}

.logo-item:nth-child(2) {
  transform: rotateY(25.714deg) translateZ(700px);
  z-index: 13;
}

.logo-item:nth-child(3) {
  transform: rotateY(51.428deg) translateZ(700px);
  z-index: 12;
}

.logo-item:nth-child(4) {
  transform: rotateY(77.142deg) translateZ(700px);
  z-index: 11;
}

.logo-item:nth-child(5) {
  transform: rotateY(102.856deg) translateZ(700px);
  z-index: 10;
}

.logo-item:nth-child(6) {
  transform: rotateY(128.57deg) translateZ(700px);
  z-index: 9;
}

.logo-item:nth-child(7) {
  transform: rotateY(154.284deg) translateZ(700px);
  z-index: 8;
}

.logo-item:nth-child(8) {
  transform: rotateY(179.998deg) translateZ(700px);
  z-index: 7;
}

.logo-item:nth-child(9) {
  transform: rotateY(205.712deg) translateZ(700px);
  z-index: 6;
}

.logo-item:nth-child(10) {
  transform: rotateY(231.426deg) translateZ(700px);
  z-index: 5;
}

.logo-item:nth-child(11) {
  transform: rotateY(257.14deg) translateZ(700px);
  z-index: 4;
}

.logo-item:nth-child(12) {
  transform: rotateY(282.854deg) translateZ(700px);
  z-index: 3;
}

.logo-item:nth-child(13) {
  transform: rotateY(308.568deg) translateZ(700px);
  z-index: 2;
}

.logo-item:nth-child(14) {
  transform: rotateY(334.282deg) translateZ(700px);
  z-index: 1;
}

@keyframes rotate-carousel {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(400deg);
  }
}

@media (max-width: 991px) {
  .tech-carousel-container {
    height: 400px;
  }

  .tech-carousel {
    width: 180px;
    height: 180px;
  }

  .logo-item:nth-child(1) {
    transform: rotateY(0deg) translateZ(350px);
    z-index: 24;
  }

  .logo-item:nth-child(2) {
    transform: rotateY(25deg) translateZ(350px);
    z-index: 23;
  }

  .logo-item:nth-child(3) {
    transform: rotateY(50deg) translateZ(350px);
    z-index: 22;
  }

  .logo-item:nth-child(4) {
    transform: rotateY(75deg) translateZ(350px);
    z-index: 21;
  }

  .logo-item:nth-child(5) {
    transform: rotateY(100deg) translateZ(350px);
    z-index: 20;
  }

  .logo-item:nth-child(6) {
    transform: rotateY(125deg) translateZ(350px);
    z-index: 19;
  }

  .logo-item:nth-child(7) {
    transform: rotateY(150deg) translateZ(350px);
    z-index: 18;
  }

  .logo-item:nth-child(8) {
    transform: rotateY(175deg) translateZ(350px);
    z-index: 17;
  }

  .logo-item:nth-child(9) {
    transform: rotateY(200deg) translateZ(350px);
    z-index: 16;
  }

  .logo-item:nth-child(10) {
    transform: rotateY(225deg) translateZ(350px);
    z-index: 15;
  }

  .logo-item:nth-child(11) {
    transform: rotateY(250deg) translateZ(350px);
    z-index: 14;
  }

  .logo-item:nth-child(12) {
    transform: rotateY(275deg) translateZ(350px);
    z-index: 13;
  }

  .logo-item:nth-child(13) {
    transform: rotateY(300deg) translateZ(350px);
    z-index: 12;
  }

  .logo-item:nth-child(14) {
    transform: rotateY(325deg) translateZ(350px);
    z-index: 11;
  }

  .logo-item:nth-child(15) {
    transform: rotateY(350deg) translateZ(350px);
    z-index: 10;
  }

  .logo-item:nth-child(16) {
    transform: rotateY(225deg) translateZ(350px);
    z-index: 9;
  }

  .logo-item:nth-child(17) {
    transform: rotateY(240deg) translateZ(350px);
    z-index: 8;
  }

  .logo-item:nth-child(18) {
    transform: rotateY(255deg) translateZ(350px);
    z-index: 7;
  }

  .logo-item:nth-child(19) {
    transform: rotateY(270deg) translateZ(350px);
    z-index: 6;
  }

  .logo-item:nth-child(20) {
    transform: rotateY(285deg) translateZ(350px);
    z-index: 5;
  }

  .logo-item:nth-child(21) {
    transform: rotateY(300deg) translateZ(350px);
    z-index: 4;
  }

  .logo-item:nth-child(22) {
    transform: rotateY(315deg) translateZ(350px);
    z-index: 3;
  }

  .logo-item:nth-child(23) {
    transform: rotateY(330deg) translateZ(350px);
    z-index: 2;
  }

  .logo-item:nth-child(24) {
    transform: rotateY(345deg) translateZ(350px);
    z-index: 1;
  }

  .logo-item:nth-child(10) {
    transform: rotateY(190.8deg) translateZ(350px);
    z-index: 8;
  }

  .logo-item:nth-child(11) {
    transform: rotateY(212deg) translateZ(350px);
    z-index: 7;
  }

  .logo-item:nth-child(12) {
    transform: rotateY(233.2deg) translateZ(350px);
    z-index: 6;
  }

  .logo-item:nth-child(13) {
    transform: rotateY(254.4deg) translateZ(350px);
    z-index: 5;
  }

  .logo-item:nth-child(14) {
    transform: rotateY(275.6deg) translateZ(350px);
    z-index: 4;
  }

  .logo-item:nth-child(15) {
    transform: rotateY(296.8deg) translateZ(350px);
    z-index: 3;
  }

  .logo-item:nth-child(16) {
    transform: rotateY(318deg) translateZ(350px);
    z-index: 2;
  }

  .logo-item:nth-child(17) {
    transform: rotateY(339.2deg) translateZ(350px);
    z-index: 1;
  }

  .tech-carousel {
    width: 140px;
    height: 140px;
  }

  .logo-item img {
    height: 55px;
    width: 55px;
  }
}

@media (max-width: 767px) {
  .tech-stack-top {
    margin-bottom: 80px;
  }

  .tech-carousel-container {
    height: 350px;
  }

  .logo-item:nth-child(1) {
    transform: rotateY(0deg) translateZ(280px);
    z-index: 17;
  }

  .logo-item:nth-child(2) {
    transform: rotateY(21.2deg) translateZ(280px);
    z-index: 16;
  }

  .logo-item:nth-child(3) {
    transform: rotateY(42.4deg) translateZ(280px);
    z-index: 15;
  }

  .logo-item:nth-child(4) {
    transform: rotateY(63.6deg) translateZ(280px);
    z-index: 14;
  }

  .logo-item:nth-child(5) {
    transform: rotateY(84.8deg) translateZ(280px);
    z-index: 13;
  }

  .logo-item:nth-child(6) {
    transform: rotateY(106deg) translateZ(280px);
    z-index: 12;
  }

  .logo-item:nth-child(7) {
    transform: rotateY(127.2deg) translateZ(280px);
    z-index: 11;
  }

  .logo-item:nth-child(8) {
    transform: rotateY(148.4deg) translateZ(280px);
    z-index: 10;
  }

  .logo-item:nth-child(9) {
    transform: rotateY(169.6deg) translateZ(280px);
    z-index: 9;
  }

  .logo-item:nth-child(10) {
    transform: rotateY(190.8deg) translateZ(280px);
    z-index: 8;
  }

  .logo-item:nth-child(11) {
    transform: rotateY(212deg) translateZ(280px);
    z-index: 7;
  }

  .logo-item:nth-child(12) {
    transform: rotateY(233.2deg) translateZ(280px);
    z-index: 6;
  }

  .logo-item:nth-child(13) {
    transform: rotateY(254.4deg) translateZ(280px);
    z-index: 5;
  }

  .logo-item:nth-child(14) {
    transform: rotateY(275.6deg) translateZ(280px);
    z-index: 4;
  }

  .logo-item:nth-child(15) {
    transform: rotateY(296.8deg) translateZ(280px);
    z-index: 3;
  }

  .logo-item:nth-child(16) {
    transform: rotateY(318deg) translateZ(280px);
    z-index: 2;
  }

  .logo-item:nth-child(17) {
    transform: rotateY(339.2deg) translateZ(280px);
    z-index: 1;
  }

  .tech-carousel {
    width: 110px;
    height: 110px;
  }

  .logo-item img {
    height: 45px;
    width: 45px;
  }

  .logo-item:hover {
    transform: scale(1.25) translateY(-35px) !important;
  }
}

.testimonials-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-heading {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-heading h2 {
  margin-bottom: 16px;
}

.testimonials-heading p {
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}

.testimonials-carousel {
  flex: 1;
  overflow: hidden;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (max-width: 991px) {
  .testimonials-wrap {
    max-width: 100%;
    padding: 0 20px;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.skeleton-loader {
  height: 200px;
  background: linear-gradient(
    90deg,
    rgba(40, 40, 40, 0.3) 25%,
    rgba(60, 60, 60, 0.3) 50%,
    rgba(40, 40, 40, 0.3) 75%
  );
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-star {
  width: 25px;
  height: 25px;
  fill: var(--secondary-900);
}

.testimonial-message {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 80px;
  font-style: italic;
}

.testimonial-author {
  position: absolute;
  width: calc(100% - 40px);
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
  flex: 1;
}

.author-name {
  color: var(--primary-900);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.author-brand {
  color: var(--primary-700);
  font-size: 14px;
  margin: 0 0 8px 0;
}

.service-badge {
  display: inline-block;
  background: var(--secondary-900);
  color: var(--white);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--white);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--secondary-900);
  width: 32px;
  border-radius: 6px;
}

.footer-bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.review-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.review-modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-title {
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px 0;
  background: var(--secondary-900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin: 0 0 32px 0;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-700);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
}

.modal-stars {
  display: flex;
  gap: 8px;
}

.modal-star {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.modal-star:hover {
  transform: scale(1.2);
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.btn-primary,
.btn-secondary {
  flex: 1;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--secondary-900);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.form-message {
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  display: none;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--success-color, #22c55e);
  display: block;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--error-color, #ef4444);
  display: block;
}

@media (max-width: 991px) {
  .tech-stack-top {
    margin-bottom: 40px;
  }

  .tech-stack-top .h2 {
    font-size: 48px;
  }

  .footer {
    padding-top: 60px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-top-left {
    width: 100%;
  }

  .footer-right-link-wrap {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 40px;
    width: 100%;
  }

  .footer-bottom-wrap {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .icon-gradient {
    font-size: 22px;
  }

  .tech-stack-top {
    margin-bottom: 28px;
    text-align: center;
  }

  .tech-stack-top .h2 {
    font-size: 28px;
  }

  .tech-stack-top p {
    font-size: 14px;
  }

  .tech-carousel-container {
    height: 280px;
  }

  .footer {
    padding-top: 50px;
    padding-bottom: 20px;
  }

  .footer-top {
    gap: 40px;
  }

  .footer-logo-wrap {
    gap: 16px;
  }

  .footer-logo {
    width: 36px;
    height: 36px;
  }

  .footer-logo-wrap .p-text-01 {
    font-size: 18px;
  }

  .footer-logo-details {
    gap: 16px;
  }

  .footer-logo-details .p-text-03 {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-right-link-wrap {
    gap: 30px;
  }

  .footer-link-wrap {
    min-width: 0;
  }

  .footer-link-wrap .p-text-01 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-link-list {
    gap: 10px;
  }

  .footer-link-text {
    font-size: 14px;
  }

  .footer-bottom {
    margin-top: 40px;
  }

  .footer-bottom-wrap {
    gap: 16px;
  }

  .footer-bottom-wrap .p-text-03 {
    font-size: 13px;
  }

  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-heading {
    margin-bottom: 40px;
  }

  .testimonials-heading h2 {
    font-size: 32px;
  }

  .testimonial-card {
    min-width: 100%;
    padding: 24px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .review-modal-content {
    padding: 30px 20px;
  }

  .modal-title {
    font-size: 24px;
  }

  .footer-bottom-wrap {
    justify-content: center;
    text-align: center;
  }

  .form-actions {
    flex-direction: column;
  }

  .modal-star {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .icon-gradient {
    font-size: 20px;
  }

  .tech-stack-top {
    margin-bottom: 24px;
  }

  .tech-stack-top .h2 {
    font-size: 26px;
  }

  .tech-stack-top p {
    font-size: 13px;
  }

  .tech-carousel-container {
    height: 240px;
    margin: auto;
  }

  .tech-carousel {
    width: 96px;
    height: 96px;
  }

  .logo-item img {
    height: 40px;
    width: 40px;
  }

  .logo-item:hover {
    transform: scale(1.2) translateY(-30px) !important;
  }

  .footer {
    padding-top: 40px;
  }

  .footer-top {
    gap: 30px;
  }

  .footer-logo {
    width: 180px;
    height: 70px;
  }

  .footer-logo-wrap .p-text-01 {
    font-size: 16px;
  }

  .footer-logo-details {
    gap: 14px;
  }

  .footer-logo-details .p-text-03 {
    font-size: 13px;
  }

  .footer-right-link-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .footer-link-wrap .p-text-01 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-link-list {
    gap: 8px;
  }

  .footer-link-text {
    font-size: 13px;
  }

  .footer-bottom {
    margin-top: 30px;
  }

  .footer-bottom-wrap {
    gap: 12px;
  }

  .footer-bottom-wrap .p-text-03 {
    font-size: 12px;
  }

  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-heading {
    margin-bottom: 30px;
  }

  .testimonials-heading h2 {
    font-size: 28px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-message {
    font-size: 14px;
    min-height: 60px;
  }

  .author-name {
    font-size: 16px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
  }

  .review-modal-content {
    padding: 25px 16px;
    max-width: 95%;
  }

  .modal-title {
    font-size: 22px;
  }

  .form-group label {
    font-size: 14px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 14px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .testimonial-card {
    min-width: calc(50% - 12px);
  }
}

.announcement-bar {
  background: linear-gradient(90deg, var(--primary-900));
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
  color: white;
  padding: 12px 0;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  z-index: 1000;
  overflow: hidden;
}

.announcement-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scroll-announcement 30s linear infinite;
}

.announcement-content span {
  display: inline-block;
  padding: 0 50px;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes scroll-announcement {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .announcement-bar {
    font-size: 12px;
    padding: 10px 0;
  }

  .announcement-content span {
    padding: 0 30px;
  }
}

[data-nav-menu-open] {
  text-align: center;
  background: var(--black);
  min-width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: visible;
  display: block !important;
}

.w--nav-link-open {
  display: block;
  position: relative;
}

.w-nav-overlay {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-nav-overlay [data-nav-menu-open] {
  top: 0;
}

.w-nav[data-animation="over-left"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-left"] .w-nav-overlay,
.w-nav[data-animation="over-left"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  right: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay,
.w-nav[data-animation="over-right"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  left: auto;
}

.w--nav-dropdown-open,
.w--nav-dropdown-toggle-open {
  display: block;
}

.w--nav-dropdown-list-open {
  position: static;
}

.choose-container {
  flex-direction: row;
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  margin-top: 20px;
}

.outer {
  width: 300px;
  height: 400px;
  border-radius: 10px;
  padding: 1px;
  background: radial-gradient(
    circle 230px at 0% 0%,
    #ffffff,
    var(--primary-900)
  );
  position: relative;
}

@keyframes moveDot {
  0%,
  100% {
    top: 10%;
    right: 10%;
  }

  25% {
    top: 10%;
    right: calc(100% - 35px);
  }

  50% {
    top: calc(100% - 30px);
    right: calc(100% - 35px);
  }

  75% {
    top: calc(100% - 30px);
    right: 10%;
  }
}

.card {
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 9px;
  border: solid 1px var(--white);
  background-size: 20px 20px;
  background: radial-gradient(
    circle 280px at 0% 0%,
    var(--white),
    var(--primary-500)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  color: var(--white);
}

.card .text {
  font-weight: bolder;
  font-size: 1.5rem;
  background: linear-gradient(
    45deg,
    var(--primary-900) 4%,
    var(--white),
    var(--primary-900)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
  text-align: center;
  width: 70%;
}

.card p {
  font-weight: bolder;
  font-size: 1rem;
  background: linear-gradient(
    45deg,
    var(--primary-900) 4%,
    var(--white),
    var(--primary-900)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
  text-align: center;
  padding: auto;
}

.line {
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: var(--primary-800);
}

.process-step:hover {
  transform: scale(1.06) rotate(6deg);
}

@media (max-width: 768px) {
  .choose-container {
    flex-direction: column;
    align-items: center;
    padding: 16px;
    gap: 16px;
  }

  .outer {
    width: 100%;
    max-width: 320px;
    height: 380px;
  }

  .card {
    padding: 20px;
  }

  .card .text {
    font-size: 1.25rem;
    width: 100%;
  }

  .card p {
    font-size: 0.95rem;
  }
}

:root {
  --gutter: 16px;
  --gap: 16px;
  --site-max-width: 1200px;
  --type-scale-base: 14px;
  --type-scale-ratio: 1.18;
  --radius: 6px;
  --transition: 220ms ease;
}

html,
body {
  overflow-x: hidden;
}

h1 {
  font-size: clamp(24px, calc(1.35rem + 1.2vw), 48px);
}

h2 {
  font-size: clamp(20px, calc(1.15rem + 1vw), 36px);
}

h3 {
  font-size: clamp(18px, calc(1rem + 0.6vw), 28px);
}

p,
li,
button {
  font-size: clamp(13px, calc(0.95rem + 0.2vw), 16px);
}

.container {
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 calc(var(--gutter));
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  align-items: flex-start;
}

.card {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

.w-button {
  padding: 12px 18px;
  border-radius: 6px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

* {
  transition: var(--transition);
}

@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --gutter: 20px;
    --gap: 20px;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  :root {
    --gutter: 28px;
    --gap: 28px;
  }

  .container {
    padding: 0 calc(var(--gutter) * 0.75);
  }
}

@media (min-width: 1440px) {
  :root {
    --gutter: 42px;
    --gap: 32px;
    --site-max-width: 1440px;
  }

  .container {
    padding: 0 calc(var(--gutter));
  }
}

@media (max-width: 480px) {
  .choose-container {
    flex-direction: column;
    align-items: center;
    padding: 16px;
    gap: 16px;
  }

  .outer {
    max-width: 280px;
    height: 340px;
  }

  .card {
    padding: 16px;
  }

  .card .text {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.9rem;
  }
}

.service-content {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin: 0 auto;
}

.service-content.reverse {
  direction: rtl;
}

@media (max-width: 1200px) {
  .service-content {
    gap: 60px;
    padding: 0 20px;
  }
}

@media (max-width: 968px) {
  .service-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-content.reverse {
    direction: ltr;
  }

  .service-description {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .service-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

.nav-item.has-dropdown {
  position: relative;
}

.nav-link.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  display: inline-block;
  margin-left: 4px;
}

.nav-item.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10000;
  padding: 8px 0;
  margin-top: 8px;
}

.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  position: relative;
  display: block;
  padding: 12px 20px;
  color: var(--primary-900);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  z-index: 1;
}

.dropdown-item:hover {
  background: rgba(0, 0, 0, 0.05);
  padding-left: 24px;
  z-index: 2;
}

.dropdown-item.has-subdropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-item.has-subdropdown:hover {
  z-index: 1002;
}

.subdropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.subdropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(0);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  z-index: 1003;
  padding: 8px 0;
  margin-left: 2px;
  pointer-events: none;
}

.dropdown-item.has-subdropdown:hover .subdropdown-menu,
.dropdown-item.has-subdropdown:focus-within .subdropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0.1s;
}

.subdropdown-item {
  display: block;
  padding: 10px 16px;
  color: var(--primary-900);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.subdropdown-item:hover {
  background: rgba(0, 0, 0, 0.05);
  padding-left: 20px;
}

@media (max-width: 991px) {
  .nav-item.has-dropdown {
    position: relative;
  }

  .nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
  }

  .dropdown-menu {
    position: default;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 8px;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.3s ease,
      padding 0.3s ease;
    padding: 0;
  }

  .nav-item.has-dropdown.active .dropdown-menu {
    max-height: 1000px;
    padding: 8px 0;
  }

  .nav-item.has-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }

  .subdropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.03);
    margin: 4px 0 4px 16px;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.3s ease,
      padding 0.3s ease;
    padding: 0;
  }

  .dropdown-item.has-subdropdown.active .subdropdown-menu {
    max-height: 1000px;
    padding: 8px 0;
  }

  .dropdown-item.has-subdropdown.active .subdropdown-arrow {
    transform: rotate(90deg);
  }
}

.services-wrap {
  gap: 60px;
  padding: 0 100px;
  align-items: flex-start;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 80px;
}

.service-item {
  background: rgba(5, 75, 171, 0.08);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  border: 2px solid transparent;
}

.service-item:hover {
  background: rgba(5, 75, 171, 0.15);
  transform: translateY(-5px);
  border-color: rgba(5, 75, 171, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item i {
  font-size: 36px;
  color: var(--primary-900);
}

.service-caption {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  color: var(--primary-900);
  line-height: 1.3;
}

.service-description {
  font-size: 14px;
  color: var(--tertiary-700);
  line-height: 1.5;
  opacity: 0.9;
  text-align: justify;
}

@media (max-width: 991px) {
  .services-wrap {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-wrap {
    padding: 0 20px;
  }
}

@media (min-width: 2000px) {
  .services-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .service-description {
    font-size: 13px;
  }
}

.tech-carousel-dual-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}

.tech-carousel-section {
  width: 100%;
}

.tech-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.tech-carousel .logo-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo-caption {
  color: var(--primary-800);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .tech-carousel-dual-container {
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonials-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonials-carousel {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s ease;
  will-change: transform;
  align-items: stretch;
  padding: auto;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 10.666px);
  max-width: 33.333%;
  padding: 18px;
  background: rgba(5, 75, 171, 0.08);
  border-radius: 10px;
  min-width: 0;
  padding-bottom: 10rem;
}

.testimonial-message {
  font-size: 15px;
  line-height: 1.6;
  margin: 12px 0;
  color: var(--primary-900);
  word-break: break-word;
}

.testimonial-author .author-name {
  font-weight: 700;
  margin-top: 6px;
  color: var(--primary-900);
}

.carousel-btn {
  background: var(--primary-900);
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-indicators {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.indicator.active {
  background: rgba(255, 255, 255, 0.9);
}

.review-modal {
  display: none;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  padding: 20px;
  overflow: auto;
}

.review-modal-content {
  background: #000;
  color: #fff;
  padding: 24px;
  border-radius: 12px;
  max-width: 720px;
  width: 100%;
  box-sizing: border-box;
  max-height: calc(100vh - 48px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-title {
  margin: 0 0 8px 0;
  font-size: 22px;
}

.modal-subtitle {
  margin: 0 0 16px 0;
  color: #555;
}

.review-form .form-group {
  margin-bottom: 14px;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form select,
.review-form textarea {
  width: 100%;
  display: block;
}

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  .testimonial-card {
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media (max-width: 640px) {
  .testimonial-card {
    flex-basis: 100%;
    max-width: 100%;
  }

  .testimonials-carousel-wrap {
    padding: 0 12px;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-indicators {
    margin-top: 12px;
  }

  .review-modal-content {
    padding: 16px;
    border-radius: 10px;
  }

  .form-actions {
    flex-direction: column-reverse;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

.tech-stack-showcase {
  padding: 100px 0;
  background: white;
  overflow: hidden;
}

.tech-stack-header {
  text-align: center;
  margin-bottom: 20px;
}

.tech-stack-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--primary-900);
  margin-bottom: 16px;
  line-height: 1.2;
}

.tech-stack-header p {
  font-size: 1.125rem;
  color: var(--tertiary-900);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.tech-logos-container {
  margin-top: 60px;
  position: relative;
}

.tech-logos-row {
  display: flex;
  gap: 40px;
  animation: slideLogos 30s linear infinite;
  width: max-content;
}

.tech-logos-row:hover {
  animation-play-state: paused;
}

.tech-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 24px;
  background: rgba(2, 76, 172, 0.111);
  border-radius: 16px;
  border: 1px solid rgba(4, 75, 171, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech-logo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(4, 75, 171, 0.15);
  border-color: var(--primary-900);
}

.tech-logo-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 12px;
}

.tech-logo-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-900);
  text-align: center;
}

@keyframes slideLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideLogosReverse {
  0% {
    transform: translateX(-50%);
  }

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

.tech-logos-row-reverse {
  animation: slideLogosReverse 30s linear infinite !important;
}

@media (max-width: 768px) {
  .tech-stack-showcase {
    padding: 60px 0;
  }

  .tech-logos-row {
    gap: 24px;
  }

  .tech-logo-item {
    min-width: 100px;
    padding: 16px;
  }

  .tech-logo-item img {
    width: 48px;
    height: 48px;
  }

  .tech-logo-item span {
    font-size: 12px;
  }

  .heading-wrap i {
    font-size: 35px;
    margin-right: 3px;
  }
}
/* --- Portfolio Works Section Styles --- */
.portfolio-works {
  padding: 60px 0;
  background-color: #ffffff;
}

.portfolio-works .container {
  max-width: 1900px;
  margin: 0 auto;
  padding: 0 15px;
}

.filter-tags {
  text-align: center;
  margin-bottom: 40px;
}

.filter-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #fff;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
  margin: 0 8px;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: #eee;
}

.filter-btn.active {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-gap: 25px;
}

.grid-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-5px);
}

.grid-item img {
  width: 100%;
  height: auto;
  display: block;
}

.grid-item h3 {
  padding: 20px 20px 8px;
  margin: 0;
  font-size: 1.3em;
  color: #2c3e50;
  font-weight: 700;
}

.grid-item p {
  padding: 0 20px 20px;
  margin: 0;
  font-size: 1em;
  color: #7f8c8d;
  line-height: 1.6;
} /* ===== LOADER ===== */

.loader {
  position: relative;
  width: 80px;
  height: 80px;
}

.loader::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid #044bab;
  border-right: 4px solid #044bab;
  animation: spin 1s linear infinite;
}

.logo {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
