/* =========================================================
   STAPLE LOGIC — one-page site
   Tokens matched to Net Solutions' actual palette: white
   surface, near-black headline ink, vivid royal-blue primary
   and banded dark sections, light footer. Signature motif:
   the literal staple bracket, used as a clip on the hero
   headline and as a recurring eyebrow mark throughout.
========================================================= */

:root {
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #F3F6FC;
  --ink: #0A0A0C;
  --ink-soft: #5E5F66;
  --ink-faint: #9A9BA1;
  --line: #E4E4E2;

  --primary: #1450F5;
  --primary-dark: #0E3ACC;
  --primary-soft: #E8EEFF;

  --indigo: #1149F0;
  --indigo-2: #0D3AC4;
  --indigo-line: rgba(255, 255, 255, .16);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-s: 8px;
  --radius-m: 12px;
  --radius-l: 20px;

  --ease: cubic-bezier(.16, .8, .24, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.hl {
  color: var(--primary);
}

.hl--light {
  color: #fff;
}

/* subtle grain overlay for texture */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================================================
   Staple mark — the signature motif
========================================================= */
.staple-mini {
  display: inline-flex;
  width: 16px;
  height: 10px;
  color: var(--primary);
}

.staple-mini svg {
  width: 100%;
  height: 100%;
}

.staple-mini--light {
  color: var(--primary);
}

/* =========================================================
   Buttons
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s ease, border-color .25s ease;
  white-space: nowrap;
}

.btn svg {
  transition: transform .3s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(99, 99, 99, 0.26);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -6px #0000006b;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: var(--indigo-line);
}

.btn-outline:hover {
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 18px;
  font-size: .85rem;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 1rem;
}

/* =========================================================
   Header
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(15px);
  padding: 20px 0;
  transition:
    background .35s ease,
    padding .35s ease,
    box-shadow .35s ease;
}


/* When page scrolls */

.site-header.scrolled {
  padding: 14px 0;
  background: rgba(247, 247, 243, .85);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}

.logo-mark {
  color: var(--primary);
  display: inline-flex;
}

.logo-thin {
  font-weight: 400;
  color: var(--ink-soft);
}

.logo--light {
  color: #fff;
}

.logo--light .logo-thin {
  color: rgba(255, 255, 255, .6);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 18px;
  font-weight: 400;
  /* color: var(--ink-soft); */
  position: relative;
  padding: 4px 0;
  transition: color .25s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  transition: width .3s var(--ease);
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--primary) !important;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:focus::after {
  width: 100% !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s ease;
}

/* =========================================================
   Reveal-on-scroll
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Hero
========================================================= */
/* .hero {
  position: relative;
  padding: 150px 0 120px;
  overflow: hidden;
} */

/* .hero-grid {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 140%;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 30%, black, transparent 75%);
  mask-image: radial-gradient(ellipse 60% 55% at 50% 30%, black, transparent 75%);
  opacity: .8;
} */

.hero-inner {
  position: relative;
  text-align: center;
}

.hero-inner--split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}

.hero-copy {
  max-width: 600px;
}

.hero-title--left {
  text-align: left;
  margin-bottom: 24px;
}

.hero-title--left .staple-line {
  justify-content: flex-start;
}

.hero-title--left .staple-clip {
  left: 18%;
}

.hero-sub--left {
  margin: 0 0 36px;
  max-width: 520px;
}

.hero-cta--left {
  justify-content: flex-start;
  margin-bottom: 0;
}

.hero-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ring-shape {
  position: relative;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(20, 20, 30, .35);
}

.ring-seg {
  position: absolute;
}

.ring-seg--1 {
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: var(--primary);
}

.ring-seg--2 {
  top: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: var(--ink);
}

.ring-seg--3 {
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: var(--surface-2);
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.ring-seg--4 {
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: var(--primary-dark);
}

.ring-seg--5 {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
}

.ring-seg--6 {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--primary), var(--indigo-2), var(--primary));
  opacity: .9;
}

.trusted-band {
  background: var(--surface-2);
  padding: 40px 0;
}

@media (max-width: 980px) {
  .hero-inner--split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-title--left,
  .hero-sub--left {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title--left .staple-line {
    justify-content: center;
  }

  .hero-cta--left {
    justify-content: center;
  }

  .hero-ring {
    margin-top: 32px;
  }

  .hero-ring-shape {
    width: 260px;
    height: 260px;
  }
}

.eyebrow--light {
  color: #5e5f66;
  border-color: var(--indigo-line);
  background: rgba(255, 255, 255, .04);
}

.eyebrow.center {
  display: inline-flex;
}

.section .eyebrow.center,
.section-head-row .eyebrow {
  display: inline-flex;
}

.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 4.4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.hero-title .dot {
  color: var(--primary);
}

.staple-line {
  position: relative;
  display: inline-flex !important;
  gap: 0 .28em;
  align-items: center;
  justify-content: center;
}

.staple-word {
  display: inline-block;
}

.staple-word:first-child {
  color: var(--primary);
}

.staple-clip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, -40px) scale(.7);
  opacity: 0;
  color: var(--ink);
  animation: dropStaple 1s var(--ease) 1.1s forwards;
}

@keyframes dropStaple {
  0% {
    transform: translate(-50%, -46px) scale(.6) rotate(-6deg);
    opacity: 0;
  }

  60% {
    transform: translate(-50%, -6px) scale(1.05) rotate(2deg);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -2px) scale(1) rotate(0deg);
    opacity: 1;
  }
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 1.13rem;
  color: var(--ink-soft);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.trusted-label {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 18px;
  text-align: center;
}

.trusted-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink-faint);
}

.trusted-row span {
  transition: color .3s ease;
  cursor: default;
}

.trusted-row span:hover {
  color: var(--ink);
}

/* =========================================================
   Stats strip
========================================================= */

.case-media img {
  width: 100%;

}


/* =========================================================
   Section basics
========================================================= */
.section {
  padding: 128px 0;
}

.section.alt {
  background: var(--surface-2);
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 700;
  margin: 10px 0 18px;
  line-height: 1.12;
}

.section-title.light {
  color: #fff;
}

.section-sub {
  font-size: 1.06rem;
  color: var(--ink-soft);
  max-width: 560px;
}

.section-sub.light {
  color: rgba(255, 255, 255, .72);
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section>.wrap>.section-title.center,
.section>.wrap>.section-sub.center {
  max-width: 640px;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.link-arrow {
  font-weight: 600;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
}

.link-arrow span {
  transition: transform .3s var(--ease);
  display: inline-block;
}

.link-arrow:hover span {
  transform: translateX(4px);
  color: var(--primary);
}

.section>.wrap>.eyebrow.center,
.section>.wrap>.section-title.center,
.section>.wrap>.section-sub.center {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section>.wrap {
  text-align: left;
}

.section>.wrap>.eyebrow.center {
  display: inline-flex;
}

/* fix centered blocks wrapper */
.section>.wrap:has(.eyebrow.center) {
  text-align: center;
}

/* =========================================================
   Services grid
========================================================= */

.service-card:hover {
  background: var(--primary-soft);
  transform: translateY(-4px);
}


.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}


/* =========================================================
   Practices (detailed rows, Net Solutions style)
========================================================= */
.practice-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.practice-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  transition: background .3s ease;
}

.practice-row:hover {
  background: var(--surface-2);
}

.practice-num {
  font-family: var(--font-mono);
  font-size: .95rem;
  color: var(--primary);
  font-weight: 600;
}

.practice-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.practice-body p {
  font-size: .98rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 14px;
}

.practice-row .link-arrow {
  white-space: nowrap;
}

.engage-block {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.engage-label {
  font-family: var(--font-mono);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-faint);
  margin-bottom: 24px;
}

.engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.engage-col h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.engage-col p {
  font-size: .93rem;
  color: var(--ink-soft);
}

/* =========================================================
   Case study cards (Proven success stories)
========================================================= */

.case-card {
  display: grid;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(20, 20, 30, .22);
}

.case-media {
  position: relative;
  overflow: hidden;
  background: #17181C;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-media::before {
  content: attr(data-initial);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.4rem;
  color: rgba(255, 255, 255, .14);
}

.case-media::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--primary);
}

.case-media--1::before,
.case-media--2::before,
.case-media--3::before,
.case-media--4::before {
  color: rgba(255, 255, 255, .14);
}

.case-body {
  padding: 26px 26px 28px;
}

.case-tag {
  font-family: var(--font-mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.case-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.case-body p {
  font-size: .92rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.case-stat {
  font-size: .88rem;
  color: var(--ink-soft);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.case-stat strong {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.05rem;
  margin-right: 6px;
}

/* =========================================================
   Awards strip
========================================================= */
.awards-strip {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.awards-strip span {
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--ink-soft);
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* =========================================================
   Insights grid
========================================================= */
.insight-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px 26px;
  transition: transform .35s var(--ease), border-color .3s ease;
}

.insight-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.insight-meta {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.insight-card h3 {
  font-size: 1.08rem;
  margin: 14px 0 10px;
  line-height: 1.3;
}

.insight-card p {
  font-size: .9rem;
  color: var(--ink-soft);
}

/* =========================================================
   Locations
========================================================= */
.locations-band {
  background: var(--indigo);
  padding: 88px 0;
}

.locations-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  padding: 0;
  border-top: 1px solid var(--indigo-line);
  padding-top: 24px;
}

.location-card h4 {
  font-size: 1.02rem;
  margin-bottom: 12px;
  color: #fff;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 500;
}

.location-card p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .62);
  line-height: 1.7;
  margin-bottom: 14px;
}

.location-card a {
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
}

.location-card a:hover {
  text-decoration: underline;
}

/* =========================================================
   Work grid
========================================================= */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.work-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(20, 20, 30, .25);
}

.work-media {
  height: 190px;
  position: relative;
  overflow: hidden;
  background: #17181C;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-media::before {
  content: attr(data-initial);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  color: rgba(255, 255, 255, .14);
}

.work-media::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--primary);
}

.work-body {
  padding: 26px 26px 30px;
}

.work-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.work-body p {
  font-size: .92rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}


/* =========================================================
   Industries
========================================================= */


/* =========================================================
   Dark panel (Not just a vendor)
========================================================= */
.dark-panel {
  background: var(--indigo);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.dark-panel::before {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 31, .14), transparent 70%);
  top: -180px;
  right: -160px;
  pointer-events: none;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.panel-copy .section-sub {
  color: rgba(255, 255, 255, .68);
  max-width: 480px;
  margin-bottom: 32px;
}

.panel-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.panel-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--indigo-line);
  border-radius: var(--radius-m);
  padding: 26px 22px;
  transition: background .3s ease, transform .3s var(--ease), border-color .3s ease;
}

.panel-card:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, .5);
}

.panel-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--primary);
  border: 1px solid rgba(255, 90, 31, .4);
  border-radius: 50%;
  margin-bottom: 16px;
}

.panel-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.panel-card p {
  font-size: .87rem;
  color: rgba(255, 255, 255, .6);
}

/* =========================================================
   Tech marquee
========================================================= */
.stack-marquee {
  margin-top: 52px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.stack-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollX 28s linear infinite;
}

.stack-track span {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
  padding: 14px 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  transition: color .3s ease, border-color .3s ease;
}

.stack-marquee:hover .stack-track {
  animation-play-state: paused;
}

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

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

/* =========================================================
   Process rail
========================================================= */

.process-rail::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}

.process-step h4 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: .87rem;
  color: var(--ink-soft);
}

/* =========================================================
   Testimonials
========================================================= */
.testimonial-band {
  background: var(--indigo);
  position: relative;
  overflow: hidden;
}

.testimonial-band::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 70%);
  top: -200px;
  right: -140px;
  pointer-events: none;
}

.testimonial-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 30px 28px;
  margin: 0;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(20, 20, 30, .2);
}

.stars {
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-size: 25px;
}

.testimonial-card p {
  font-size: .98rem;
  color: var(--ink);
  margin-bottom: 22px;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  font-size: .85rem;
}

.testimonial-card footer strong {
  font-family: var(--font-display);
}

.testimonial-card footer span {
  color: var(--ink-faint);
}

.awards-section {
  padding-top: 96px;
}

/* =========================================================
   CTA band
========================================================= */
.cta-band {
  background: var(--indigo);
  color: #fff;
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(255, 90, 31, .16), transparent 70%);
}

.cta-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-title {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 700;
  margin: 12px 0 20px;
  line-height: 1.1;
}

.cta-sub {
  max-width: 520px;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 34px;
}

.cta-notes {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
}

/* =========================================================
   Footer
========================================================= */

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.footer-col h5 {
  color: var(--ink);
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-bottom: 18px;
}

.footer-col a,
.footer-col span.footer-plain {
  display: block;
  font-size: .92rem;
  margin-bottom: 12px;
  color: var(--ink-soft);
  transition: color .25s ease;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: .82rem;
  color: var(--ink-faint);
  border-top: 1px solid var(--line);
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a:hover {
  color: var(--ink);
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 980px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 32px 20px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat:nth-child(4),
  .stat:nth-child(5) {
    grid-column: span 1;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel-grid {
    grid-template-columns: 1fr;
  }

  .process-rail {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }

  .process-rail::before {
    display: none;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .practice-row {
    grid-template-columns: 48px 1fr;
    row-gap: 14px;
  }

  .practice-row .link-arrow {
    grid-column: 2;
  }

  .engage-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-card {
    grid-template-columns: 1fr;
  }

  .case-media {
    height: 350px;
  }

  .insight-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .awards-strip {
    gap: 16px;
  }
  .stack-track span {
    font-size: 16px !important;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 70px 0 70px;
  }

  .hero p {
    font-size: 16px !important;
    line-height: 1.4 !important;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .panel-cards {
    grid-template-columns: 1fr;
  }

  .process-rail {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .wrap {
    padding: 0 20px;
  }

  .practice-row {
    grid-template-columns: 1fr;
  }

  .practice-num {
    margin-bottom: 6px;
  }
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact a,
.footer-contact .footer-plain {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  line-height: 1.7;
  font-size: 14px;
}

.footer-contact svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #0010ec;
  margin-top: 3px;
}

.footer-contact a:hover {
  color: #0010ec;
}

.bannerimg {
  border-radius: 8px;
}

/* 4th aug 2026 */

.btn-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  transition: color .35s ease, border-color .35s ease;
  border-color: #1450f5 !important;
}

/* Background Fill */
.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1450f5;
  /* Change to your color */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
  z-index: -1;
}

/* Hover */
.btn-ghost:hover::before {
  transform: scaleX(1);
}

.btn-ghost:hover {
  color: #fff;
  border-color: #1450f5;
}

/* hero section */

.staple-word {
  color: #1450f5;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  transition: .35s;
   font-family: var(--font-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow:
    0 0 0 5px rgba(34, 197, 94, .18);
}

.pipe {
  width: 1px;
  height: 14px;
  background: #D8D8D8;
}

.eyebrow:hover {
  transform: translateY(-4px);
  box-shadow:
    0 15px 35px rgba(37, 88, 246, .12);
}

.eyebrow span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5f6678;
}

/* trusted-band */

.trusted-band {
  padding: 100px 0;
}

.wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.trusted-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 55px;
}

.trusted-head span {
  width: 140px;
  height: 1px;
  background: #1450f5;
}

.trusted-head p {
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--ink);
  font-weight: 600;
}

.trusted-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

.tech-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 150px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #ECECEC;
  transition: .45s;
  cursor: pointer;
}

/* Blue Fill */

.tech-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2558F6, #4B8BFF);
  transform: translateY(100%);
  transition: .45s;
}

.tech-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -120%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .45),
      transparent);
  transform: rotate(20deg);
  transition: .8s;
}

.tech-card:hover::before {
  transform: translateY(0);
}

.tech-card:hover::after {
  left: 170%;
}

.tech-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  transition: .4s;
  position: relative;
  z-index: 2;
}

.tech-card h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  transition: .35s;
  position: relative;
  z-index: 2;
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(37, 88, 246, .18);
}

.tech-card:hover svg {
  transform: translateY(-6px) scale(1.15) rotate(-5deg);
}

.tech-card:hover h4 {
  color: #fff;
}

.tech-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition: .4s ease;
}

.tech-card:hover img {
  transform: translateY(-6px) scale(1.12);
}

/* Responsive */

@media(max-width:992px) {

  .trusted-row {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media(max-width:768px) {

  .trusted-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .trusted-band {
    padding: 80px 0;
  }

}

@media(max-width:480px) {

  .trusted-row {
    grid-template-columns: 1fr 1fr;
  }

  .tech-card {
    height: 120px;
  }

  .tech-card img {
    width: 35px !important;
    height: 35px !important;
  }

  img.vercel-icon {
    width: 60px !important;
    height: 60px !important;
  }


}

/* what we do section css */

/*=====================================================
SERVICES
=====================================================*/

.services-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* Background Glow */

.services-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, #2563eb10, transparent 70%);
  top: -250px;
  right: -250px;
}

.services-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, #4f46e510, transparent 70%);
  bottom: -200px;
  left: -200px;
}

.services-section .container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}


/*======================
Heading
======================*/

.services-header {
  text-align: center;
  max-width: 760px;
  margin: auto auto 40px;

}

.section-badge {
  font-family: var(--font-mono);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ECECEC;
  font-size: 14px;
  font-weight: 500;
  transition: .35s;
}

span.section-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(37, 88, 246, .12);
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 15px #2563eb;
}

.services-header h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 700;
  margin: 10px 0 18px;
  line-height: 1.12;
}

.services-header h2 span {
  color: #1450f5;
}

.services-header p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 560px;
  margin-inline: auto;
}


/*======================
GRID
======================*/

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  background-color: transparent !important;
  border: none !important;
  padding: 20px;
  margin-top: 56px;
  background: var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}


/*======================
CARD
======================*/

.service-card {
  position: relative;
  overflow: hidden;
  padding: 45px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #ECECEC;
  transition: .45s;
  min-height: 390px;
  text-align: left;
}


/* Gradient Border */

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 30px;
  background: linear-gradient(135deg,
      transparent,
      #2563eb,
      transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: .45s;
  z-index: -1;

}


/* Background Fill */

.service-card::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #2563eb20, transparent 65%);
  top: -450px;
  right: -450px;
  transition: .6s;
}


/*======================
NUMBER
======================*/

.service-number {
  position: absolute;
  top: 35px;
  right: 35px;
  font-size: 72px;
  font-weight: 900;
  color: #f4f6fb;
  transition: .45s;
}


/*======================
ICON
======================*/

.service-icon {
  width: 75px;
  height: 75px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8faff;
  font-size: 34px;
  margin-bottom: 20px;
  transition: .45s;
  color: var(--primary);
}


/*======================
TEXT
======================*/

.service-card h3 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 20px;
}


/*======================
TAGS
======================*/

.service-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-tags span {
  padding: 8px 18px;
  border-radius: 100px;
  background: #f4f6fb;
  font-size: 15px;
  font-weight: 700;
  transition: .35s;
}


/*======================
BUTTON
======================*/

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
  text-decoration: none;
  font-weight: 700;
  color: #111827;
  z-index: 1;
  position: relative;
}

.service-card a span {
    transition: .35s;
    font-size: 32px;
    line-height: normal;
    margin-top: -7px;
}


/*======================
HOVER
======================*/

.service-card:hover {
  transform: translateY(-12px);
  /* box-shadow:0 30px 70px rgba(37,99,235,.12); */
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  transform: scale(1.4);
}

.service-card:hover .service-number {
  color: #dbeafe;
  transform: translateY(-8px);
}

.service-card:hover .service-icon {
  transform: translateY(-8px) rotate(-8deg) scale(1.08);
  background: #1450f5;
  color: #fff;
  box-shadow: 0 12px 26px -6px rgba(255, 90, 31, .6);

}

.service-card:hover .service-tags span {
  background: #2563eb;
  color: #fff;
}

.service-card:hover a span {
  transform: translateX(8px);
}

/*=========================
Tablet
=========================*/

@media(max-width:992px) {

  .services-section {
    padding: 90px 20px;
  }

  .services-header h2 {
    font-size: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-card {
    min-height: auto;
  }
}


/*=========================
Mobile
=========================*/

@media(max-width:768px) {

  .services-header {
    text-align: center;
  }

  .services-header h2 {
    font-size: 38px;
  }

  .services-header p {
    font-size: 16px;
    line-height: 1.4;
  }

  .service-card {
    padding: 30px;
  }

  .service-number {
    font-size: 52px;
    top: 20px;
    right: 20px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .service-tags {
    gap: 8px;

  }

  .service-tags span {
    padding: 8px 14px;
    font-size: 13px;
  }

}


/*=========================
Small Mobile
=========================*/

@media(max-width:480px) {

  .services-header h2 {
    font-size: 30px;
  }

  .service-card {
    padding: 18px;
    border-radius: 22px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .service-card h3 {
    font-size: 22px;

  }

  .service-card p {
    font-size: 15px;
    line-height: 1.4;
  }

}


/* milestone css */


/* trusted partaners */

/* new banner css */

.site-header {
  background: #fff;
}

/* .hero {

  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #050816;
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;

  background:
    url("./assets/images/latest-bg.png") center center/cover no-repeat;

  isolation: isolate;
} */

.hero h1 {
  color: #fff;
  font-size: clamp(42px, 8vw, 80px);
  line-height: .92;
  font-weight: 800;
  letter-spacing: -3px;
  margin-bottom: 30px;
}

.start-btn {
  padding: 14px 50px;
  border-radius: 60px;
  background: #2D7CFF;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: .4s;
}

.start-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(45, 124, 255, .45);
}

.btn-secondary:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .09);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, #2447ff55, transparent 35%),
    radial-gradient(circle at 80% 30%, #00c8ff33, transparent 35%),
    radial-gradient(circle at 50% 90%, #8b5cf655, transparent 40%);
  filter: blur(40px);
  animation: bgMove 12s infinite alternate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: .35;
}

.hero-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  opacity: .3;
  filter: drop-shadow(0 40px 100px rgba(0, 0, 0, .6));
  animation: float 8s ease-in-out infinite;
}

.glass-card {
  position: absolute;
  z-index: 20;
  padding: 20px 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  animation: cardFloat 5s ease-in-out infinite;
}

.glass-card h3 {
  font-size: 34px;
  margin-bottom: 6px;
}

.glass-card span {
  color: #C8D2E3;
}

.glass-1 {
  top: 30%;
  left: 18%;
}

.glass-2 {
  top: 25%;
  right: 22%;
  animation-delay: 2s;
}

.glass-3 {
  bottom: 10%;
  left: 18%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {

    transform: translateY(0);
  }

  50% {

    transform: translateY(-25px);
  }

}

@keyframes cardFloat {

  0%,
  100% {

    transform: translateY(0);
  }

  50% {

    transform: translateY(-12px);
  }

}

@keyframes bgMove {

  from {

    transform: scale(1);
  }

  to {

    transform: scale(1.2);
  }

}

/* mile stone css */

/*==============================
    PREMIUM STATS SECTION
==============================*/

.stats-strip {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(52, 119, 255, .18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(0, 255, 255, .12), transparent 35%),
    linear-gradient(180deg, #050816 0%, #0A1224 100%);
}

/* Animated Background Glow */

.stats-strip::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  left: -250px;
  top: -250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 119, 255, .18), transparent 70%);
  filter: blur(80px);
  animation: moveGlow 12s ease-in-out infinite alternate;
}

.stats-strip::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -250px;
  bottom: -250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 204, .12), transparent 70%);
  filter: blur(80px);
  animation: moveGlow2 14s ease-in-out infinite alternate;
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}


/*==============================
        CARD
==============================*/

.stat {
  position: relative;
  padding: 38px 20px;
  text-align: center;
  border-radius: 26px;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, .08),
      rgba(255, 255, 255, .03));

  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  transition: .45s ease;
  cursor: pointer;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

/* Top Gradient */

.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,
      #3477FF,
      #7C5CFF,
      #00D9FF);

  transform: scaleX(0);
  transform-origin: left;
  transition: .45s;
}

/* Glow */

.stat::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -120px;
  top: -120px;
  background: rgba(52, 119, 255, .20);
  filter: blur(60px);
  transition: .45s;
}

/* Hover */

.stat:hover {
  transform:
    translateY(-12px) scale(1.03);
  border-color: rgba(52, 119, 255, .4);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, .35);
}

.stat:hover::before {
  transform: scaleX(1);
}

.stat:hover::after {
  transform: scale(1.4);
}

/* Shine */

.stat:hover .stat-num {
  background:
    linear-gradient(90deg,
      #ffffff,
      #74B7FF);
  -webkit-background-clip: text;
  color: transparent;
}


/*==============================
        NUMBER
==============================*/

.stat-num {
  display: block;
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 18px;
  color: #fff;
  transition: .4s;
  font-family: var(--font-display);
}


/*==============================
        LABEL
==============================*/

.stat-label {
  display: block;
  color: #B8C2D9;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: .3px;
  max-width: 150px;
  margin: auto;
}


/*==============================
    STAGGER EFFECT
==============================*/

.stat:nth-child(2) {
  margin-top: 28px;
}

.stat:nth-child(4) {
  margin-top: 28px;
}


/*==============================
    BORDER GLOW
==============================*/

.stat:hover {

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, .12),
      rgba(255, 255, 255, .04));
}


/*==============================
        ANIMATION
==============================*/

@keyframes moveGlow {

  from {

    transform:
      translate(0, 0) scale(1);
  }

  to {

    transform:
      translate(120px, 80px) scale(1.25);
  }

}

@keyframes moveGlow2 {

  from {

    transform:
      translate(0, 0) scale(1);
  }

  to {

    transform:
      translate(-120px, -80px) scale(1.25);
  }

}


/*==============================
        RESPONSIVE
==============================*/

@media(max-width:1200px) {

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat:nth-child(2),
  .stat:nth-child(4) {
    margin-top: 0;
  }

}


@media(max-width:768px) {

  .stats-strip {
    padding: 60px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .stat {
    min-height: 180px;
    padding: 30px 20px;
  }

  .stat-num {
    font-size: 44px;
  }

  .award-item {
    flex-direction: column;
  }

}


@media(max-width:576px) {

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    min-height: 160px;
  }

  .stat-num {
    font-size: 34px;
    margin-bottom: 10px;
  }

  .stat-label {
    line-height: 1.4;
    letter-spacing: unset;
  }

}

/* trusted clients section css */

p.eyebrow.eyebrow--light.center.reveal.in-view {
  color: var(--ink-soft);
}

/*==========================
        AWARDS STRIP
===========================*/

.awards-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 80px;
  position: relative;
  z-index: 5;
}

/*==========================
        CARD
===========================*/

.award-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, .08),
      rgba(255, 255, 255, .03));
  backdrop-filter: blur(20px);
  border: 1px solid rgb(0 0 0 / 12%);
  overflow: hidden;
  transition: .45s;
}

/* Glow */

.award-item::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  top: -80px;
  right: -80px;
  background: rgba(52, 119, 255, .18);
  filter: blur(45px);
  transition: .45s;
}

/* Shine */

.award-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: translateX(-140%);
  transition: .8s;
}

.award-item:hover {
  transform: translateY(-10px);
  border-color: #3C84FF;
  box-shadow: 0px 10px 16px rgb(0 0 0 / 18%);
}

.award-item:hover::after {
  transform: translateX(140%);
}

.award-item:hover::before {
  transform: scale(1.5);
}

/*==========================
        ICON
===========================*/

.award-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: linear-gradient(135deg, #2F80FF, #5B6DFF);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 12px 35px rgba(47, 128, 255, .35);
}

/*==========================
        TEXT
===========================*/

.award-content {
  display: flex;
  flex-direction: column;
}

.award-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.award-content small {
  color: var(--ink-soft);
  font-size: 15px;
}

/*==========================
        RESPONSIVE
===========================*/

@media(max-width:1200px) {

  .awards-strip {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:768px) {

  .awards-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .award-item {
    padding: 20px;
  }

  .award-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 22px !important;
  }
}

.panel-card-icon {
  color: #ffffff !important;
}

/* industry css  */

.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  padding-top: 30px;
  margin-top: 56px;
}

.process-path {
  position: absolute;
  left: 0;
  top: 18px;
  width: 95%;
  height: 120px;
  z-index: 0;
  overflow: visible;
  padding-block: 10px 20px;
}

.process-path path {
  fill: none;
  stroke: #1149f0;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 6 6;
  opacity: .3;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: #fff;
  color: #1149f0;
  font-weight: 700;
  border: 2px solid #1149f0;
  box-shadow: 0 10px 30px rgba(17, 73, 240, .12);
  position: relative;
  transition: .35s;
  font-family: var(--font-mono);
}

.process-step:hover .process-num {
  background: #1149f0;
  color: #fff;
  transform: translateY(-8px);
}

.process-rail::before {
  display: none;
}

.tech-card.stripe-logo:hover img,
.tech-card.wp-logo:hover img {
  mix-blend-mode: color-burn;
}

/* tech stacks */

.stack-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stack-track span i {
  font-size: 20px;
  line-height: 1;
}

.devicon-nextjs-original,
.devicon-amazonwebservices-original {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .process-rail {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
  }

  .process-path {
    display: none !important;
  }
}

@media screen and (max-width: 1400px) {
  .hero-image img {
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (min-width: 901px) and (max-width: 1024px) {
  .glass-3 {
    bottom: 6%;
    left: 4% !important;
  }

  .glass-1 {
    top: 30% !important;
    left: 2% !important;
  }

  .glass-2 {
    top: 22%;
    right: 5%;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .glass-1 {
    top: 25% !important;
    left: 10% !important;
  }

  .glass-2 {
    top: 25% !important;
    right: 10% !important;
  }

  .glass-3 {
    bottom: 3% !important;
    left: 2% !important;
  }

  .glass-card {
    padding: 10px 30px !important;
  }

  .glass-card h3 {
    font-size: 26px !important;
    margin-bottom: 0px !important;
  }

  .trusted-head span {
    width: 110px !important;
  }
}

@media screen and (max-width: 768px) {
  .glass-card {
    display: none !important;
  }
}

@media screen and (min-width: 576px) and (max-width: 768px) {
  .hero {
    padding: 80px 0 80px !important;
  }
}


/* New top bar css */
.top-bar {
  position: relative;
  z-index: 10;
  height: 42px;
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.top-bar-inner {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 500;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .5);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.top-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-right a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #cbd5e1;
  transition: .3s;
}

.top-right a:hover {
  color: #fff;
  background: #1149f0;
  transform: translateY(-2px);
}

@media(max-width:768px) {
  .top-bar {
    display: none;
  }
}

/* new footer css */

/*=====================================
            FOOTER
======================================*/

.site-footer {
  background: #0f172a;
  color: #fff;
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

/* Background Glow */

.site-footer::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #1149f025 0%, transparent 70%);
  top: -250px;
  right: -200px;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #2563eb15 0%, transparent 70%);
  bottom: -220px;
  left: -120px;
}


/*=====================================
            MAIN
======================================*/

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 70px;
  padding: 0 0 70px;
  z-index: 9;
  position: relative;
}

.footer-brand img {
  margin-bottom: 28px;
  filter: brightness(20);
}

.footer-brand p {
  color: #94a3b8;
  line-height: 1.5;
  max-width: 380px;
  margin-top: 16px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .footer-brand p {
  font-size: 14px;
}
}


/*=====================================
            SOCIAL
======================================*/

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 35px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .10);
  color: #cbd5e1;
  transition: .35s;
}

.footer-social a:hover {
  background: #1149f0;
  color: #fff;
  border-color: #1149f0;
  transform: translateY(-6px);
}


/*=====================================
            LINKS
======================================*/

.footer-column h4 {
  margin-bottom: 28px;
  font-size: 18px;
  color: #fff;
}

.footer-column a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 16px;
  transition: .3s;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(8px);
}


/*=====================================
            CONTACT
======================================*/

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 0px;
  color: #94a3b8;
  line-height: 1.7;
}

.footer-contact-item span {
  flex: 1;
}


/*=====================================
            BOTTOM
======================================*/

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.footer-bottom p {
  color: #94a3b8;
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
  transition: .3s;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #475569;
}

/*==================================================
            1400px
==================================================*/

@media (max-width:1400px) {

  .footer-cta {
    max-width: 95%;
  }

}


/*==================================================
            1200px
==================================================*/

@media (max-width:1200px) {

  .footer-main {
    grid-template-columns: 1.7fr 1fr 1fr;
    gap: 50px;
  }

  .footer-column:last-child {
    grid-column: 1/-1;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 40px;
  }

  .footer-cta h2 {
    font-size: 46px;
  }

}


/*==================================================
            992px
==================================================*/

@media (max-width:992px) {

  .site-footer {
    padding-top: 140px;
  }

  .footer-cta {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    margin-bottom: 70px;
  }

  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 35px;
    padding: 50px;
  }

  .footer-cta h2 {
    font-size: 40px;
  }

  .footer-cta p {
    max-width: 100%;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding-top: 0;
  }

  .footer-brand {
    grid-column: 1/-1;
  }

}


/*==================================================
            768px
==================================================*/

@media (max-width:768px) {

  .site-footer {
    padding-top: 60px !important;
    padding-inline: 20px !important;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 40px !important;

  }

  .footer-column {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .footer-brand {
    padding-bottom: 20px;
  }

  .footer-brand p {
    max-width: 380px;
  }

  .footer-social {
    margin-top: 28px;
  }

  .footer-social a {
    width: 44px;
    height: 44px;

  }

  .footer-cta-inner {
    padding: 40px 30px;
    border-radius: 24px;
  }

  .footer-tag {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .footer-cta h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .footer-cta p {
    font-size: 15px;
    line-height: 1.8;
  }

  .footer-cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

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

}


/*==================================================
            576px
==================================================*/

@media (max-width:576px) {

  .footer-cta-inner {
    padding: 35px 25px;
  }

  .footer-cta h2 {
    font-size: 28px;
  }

  .footer-brand img {
    width: 150px;
  }

  .footer-column h4 {
    margin-bottom: 18px;
    font-size: 17px;
  }

  .footer-column a {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .footer-contact-item {
    font-size: 15px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

}


/*==================================================
            420px
==================================================*/

@media (max-width:420px) {

  .footer-cta-inner {
    padding: 30px 20px;
  }

  .footer-cta h2 {
    font-size: 24px;
  }

  .footer-tag {
    font-size: 10px;
  }

  .footer-social {
    gap: 10px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    font-size: 14px;
  }

}

/* lets talk btn css */

.talk-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 8px 8px 8px 22px;
  border-radius: 60px;
  background: #fff;
  /* color: #111827; */
  color: var(--primary);
  border: 1px solid rgba(17, 73, 240, .15);
  font-weight: 600;
  transition: .45s cubic-bezier(.22, .61, .36, 1);
  z-index: 1;
  font-size: 15px;
}

/* Fill Animation */

.talk-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1149f0;
  transform: scaleX(0);
  transform-origin: left;
  transition: .45s;
  z-index: -1;
}

.talk-btn:hover::before {
  transform: scaleX(1);
}

.talk-btn span:first-child {
  transition: .35s;
}

.talk-btn:hover {
  color: #fff;
  border-color: #1149f0;
}

.talk-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  flex-shrink: 0;
  /* transition:background .4s ease,color .4s ease; */
}

.talk-icon svg {
  transition: transform .4s cubic-bezier(.22, .61, .36, 1);
  transform-origin: center;
  /* will-change:transform; */
}

.talk-btn:hover .talk-icon {
  background: #fff;
  color: #1149f0;
}

.talk-btn:hover .talk-icon svg {
  transform: rotate(45deg) translate(1px, -1px);
}

@media screen and (max-width: 576px) {
  .talk-btn {
    display: none;
  }
}


/*=============================
        INDUSTRIES
==============================*/

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 55px;
}

.industry-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: #fff;
  border: 1px solid #e8eef9;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  transition: all .35s cubic-bezier(.22, .61, .36, 1);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 25px rgba(15, 23, 42, .05);
}

.industry-pill::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #1149f0;
  transition: .45s;
  z-index: 0;
}

.industry-pill>* {
  position: relative;
  z-index: 2;
}

.industry-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef4ff;
  font-size: 20px;
  transition: .35s;
}

.industry-pill:hover {
  color: #fff;
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(17, 73, 240, .18);
}

.industry-pill:hover::before {
  width: 100%;
}

.industry-pill:hover .industry-icon {
  background: #fff;
  transform: rotate(12deg) scale(1.08);
}


/*=========================
        RESPONSIVE
==========================*/

@media(max-width:992px) {

  .industry-grid {
    gap: 15px;
  }

  .industry-pill {
    padding: 15px 20px;
  }

}


@media(max-width:768px) {

  .industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .industry-pill {
    width: 100%;
    justify-content: flex-start;
  }

  .wrap {
    width: 100% !important;
  }

  .trusted-head span {
    width: 60px !important;
  }

  .trusted-head p {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .trusted-head {
    margin-bottom: 30px;
  }

  .services-section {
    padding: 80px 20px;
  }

  .section {
    padding: 80px 0;
  }

  .cta-band {
    padding: 80px 0px !important;
  }
}


@media(max-width:520px) {

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-pill {
    padding: 12px;
    font-size: 14px;
    gap: 8px;
  }

  .industry-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .hero-tag {
    font-size: 13px;
  }

  .start-btn {
    padding: 10px 20px !important;
    font-size: 14px;
  }

  .view-btn {
    padding: 10px 20px !important;
    font-size: 14px;
  }

  span.logo-mark img {
    width: 150px !important;
  }

  .trusted-band {
    padding: 60px 0 !important;
  }

  .trusted-head span {
    display: none;
  }

  .services-section {
    padding: 60px 20px !important;
  }

  .services-grid {
    padding: 0 !important;
  }

  .service-card:hover .service-icon {
    transform: translateY(-0px) rotate(-8deg) scale(1.04) !important;
  }

  .service-card a {
    margin-top: 26px;
    font-size: 14px;
  }

  .section {
    padding: 60px 0 !important;
  }

  .section-sub {
    line-height: 1.4 !important;
  }

  .stats-strip {
    padding: 50px 0;
  }

  .process-step p {
    font-size: 13px !important;
    line-height: 1.4;
  }

  .process-rail {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .cta-band {
    padding: 60px 0px !important;
  }

  .send-project {
    padding: 10px 24px !important;
    font-size: 14px !important;
  }

}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .hero h1 {
    font-size: 70px !important;
  }

  .glass-1 {
    top: 30%;
    left: 6% !important;
  }

  .glass-2 {
    top: 20% !important;
    right: 12% !important;
  }

  .glass-3 {
    bottom: 6% !important;
    left: 6% !important;
  }
}

.tel-number a:first-of-type {
  margin-bottom: 0px;
}

/* 6th Aug 2026 */

.hero {
  position: relative;
  height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 120px 0px 120px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  /* Adjust darkness */
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  text-align: left;
}

.hero h1 {
  color: #0A0A0C;
  font-weight: 400;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, #7900ff, #1450f5, #1450f5);
  -webkit-background-clip: text;
  color: transparent;
  line-height: normal;
  font-weight: 600;
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-content p {
  width: 48%;
  max-width: unset;
  margin-inline: 0;
  color: #3b3b3b;
  line-height: 1.5;
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  justify-content: left;
  gap: 18px;
  margin-top: 45px;
}

.hero-tag {
  display: inline-flex;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgb(255 255 255 / 20%);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #363636;
  margin-bottom: 35px;
  backdrop-filter: blur(15px);
}

.view-btn {
  border: 1px solid rgb(0 0 0 / 25%);
  background: rgba(255, 255, 255, .2);
  color: #0a0a0c;
  padding: 14px 34px;
  border-radius: 60px;
  backdrop-filter: blur(15px);
  text-decoration: none;
  transition: .4s;
}


.view-btn:hover {
  border-color: var(--primary);
}

.start-btn {
  background: var(--primary);
}

.wrap.hero-content {
  opacity: 0;
  transform: translate3d(-100px, 0, 0) scale(.98);
  filter: blur(8px);
  animation: heroReveal 1.2s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes heroReveal {
  0% {
    opacity: 0;
    transform: translate3d(-100px, 0, 0) scale(.98);
    filter: blur(8px);
  }

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


.reveal {
  opacity: 0;
  transform: translateY(80px);
  transition: all .8s cubic-bezier(.22, 1, .36, 1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .hero-content p {
    width: 100%;
  }

  .hero {
    position: relative;
    height: 530px;
    padding: 60px 0px 60px;
  }

  .hero h1 {
    margin-bottom: 20px;
  }

  .hero-buttons {
    margin-top: 30px;
  }

  .hero-tag {
    padding: 5px 22px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-content p {
    width: 75%;
  }

  .hero h1 {
    font-size: 6vw;
  }
}

.case-body {
  padding: 26px 26px 28px;
  width: 100%;
}

section#work .wrap {
  max-width: unset;
}

section#work .section-head-row {
  max-width: 1200px;
  margin-inline: auto;
}


.case-media {
  position: relative;
  overflow: hidden;
}

.case-media::before {
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(255, 255, 255, .35),
      transparent 70%);

  top: 50%;
  left: 50%;
  transform:
    translate(-50%, -50%) scale(0);
  transition: .6s;
  pointer-events: none;
}

.case-media:hover::before {
  transform:
    translate(-50%, -50%) scale(1);
}

.case-media img {
  transition: .8s;
  height: 400px;
  object-fit: cover;
}

.case-body {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  color: #fff;
  transform: translateY(60px);
  opacity: 0;
  transition: .6s;
}

.case-media:hover img {
  transform: scale(1.08);
  filter: brightness(.2);
}

.case-media:hover .case-body {
  opacity: 1;
  transform: none;
}

.case-body p {
  color: #fff;
}

.wrap.footer-bottom {
    z-index: 9;
    position: relative;
}