@charset "utf-8";

:root {
  color-scheme: dark;
  --theme-color: #00002c;
  --other-gradient: linear-gradient(135deg, #545fff 0%, #7329fd 100%);
  --hero-title-color: #f0f0ff;
  --text-color: #f9f9f9;
  --text-color-light: #dfdfdf;
  --text-description: #e9e9e9;
  --anchor-color: #7797ff;
  --section-bg: rgba(36, 36, 75, 0.65);
  --card-bg:
    linear-gradient(
        135deg,
        rgba(28, 28, 78, 0.7),
        rgba(28, 28, 78, 0.5),
        rgba(28, 28, 78, 0.3),
        rgba(28, 28, 78, 0.9)
      )
      padding-box,
    linear-gradient(135deg, rgba(249, 249, 249, 0.3), transparent) border-box;
  --card-bg-alternate:
    linear-gradient(120deg, rgba(59, 59, 118, 1), rgba(59, 59, 118, 0.65))
      border-box,
    linear-gradient(rgb(208, 208, 228), transparent) padding-box;
  --whoweareBG:
    linear-gradient(
        30deg,
        rgba(0, 13, 57, 1),
        rgba(0, 13, 57, 0.7),
        rgba(0, 0, 44, 0.7),
        rgba(0, 0, 44, 0.3),
        rgba(0, 0, 44, 1)
      )
      padding-box,
    linear-gradient(
        135deg,
        rgba(25, 62, 183, 0.7),
        rgba(25, 62, 183, 0),
        transparent
      )
      border-box;
  --text-blue-light: #0c23a4;
}

/* ─── Static Components ──────────────────────────────────────────────────── */
.progress-bar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 999999;
  background: rgb(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #003cff, #00c6ff);
  border-radius: 12px;
  transform-origin: left;
  animation: progress-bar linear;
  animation-timeline: scroll();
}

@keyframes progress-bar {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* ─── Lottie-player ──────────────────────────────────────────────────────── */

lottie-player {
  overflow: hidden;
}

/* ─── Section Headers ────────────────────────────────────────────────────── */

.section-header {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 0.5em;
  font-weight: 700;
  background: linear-gradient(135deg, rgb(5, 194, 207), rgb(160, 233, 2));
  color: transparent;
  background-clip: text;
  max-width: 900px;
  line-height: normal;
}

.section-subtitle {
  font-size: clamp(1.85rem, 2vw, 2.2rem);
  margin-bottom: 2em;
  max-width: 1024px;
}

/* ─── Cta Button ─────────────────────────────────────────────────────────── */

.cta-button {
  display: inline-flex;
  font-size: 1.85rem;
  height: 40px;
  background:
    linear-gradient(rgba(24, 28, 37, 0.75), rgba(24, 28, 37, 0.95)) padding-box,
    linear-gradient(135deg, #4285f4, #9b72cb, #977753, #dfc4a5, #d96570)
      border-box;
  color: #fff;
  justify-content: center;
  align-items: center;
  padding: 0.3em 0.5em;
  border-radius: 16px;
  gap: 0.4em;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.cta-button:hover {
  background: #f4f2f2;
  color: var(--text-blue-light);
  box-shadow: rgba(0, 60, 255, 0.7) 2px 2px 10px;
}

.cta-button:hover svg {
  color: rgb(138, 91, 247);
}

.cta-button svg {
  align-self: center;
  height: 24px;
  width: 24px;
  transform: translateX(0px);
  transition: transform 0.5s;
}

.cta-button:hover svg {
  transform: translateX(5px);
}

/* ─── Cta Card ───────────────────────────────────────────────────────────── */

.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row wrap;
  width: 100%;
  background: var(--card-bg);
  padding: 2em 3em;
  gap: 0.5em;
  border-radius: 16px;
}

.cta-card h6 {
  font-size: 2.25rem;
}

.cta-card p {
  font-size: 1.85rem;
}

.cta-card .cta-button {
  margin-top: 1em;
}

/* ─── Navbar ─────────────────────────────────────────────────────────────── */

.navbar {
  position: fixed;
  top: 5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 16px;
  z-index: 999999;
  transition:
    background 0.3s linear,
    backdrop-filter 0.3s linear;
  padding: 1em 2em;
  max-width: 1280px;
  width: 100%;
  display: block;

  @media (width <=1024px) {
    display: none;
  }
}

.nav-scroll {
  background: rgba(36, 49, 75, 0.75);
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  border-radius: 16px;
  z-index: -1;
}

.nav-container {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
}

.nav-logo {
  display: block;
  max-width: 10em;
  flex: 1;
}

.nav-logo img {
  height: auto;
  width: 100%;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5em;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.nav-link {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 3em;
  background: transparent;
}

.nav-link::after {
  content: "";
  left: 0;
  position: absolute;
  bottom: -1px;
  height: 1.5px;
  width: 0%;
  background: linear-gradient(90deg, #977753, #dfc4a5);
  transition: width 0.25s linear;
  z-index: 2;
}

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

.nav-link svg {
  position: absolute;
  top: 3.125em;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.005s linear;
  display: flex;
  justify-content: center;
}

.nav-link:hover svg {
  opacity: 0.95;
  visibility: visible;
  display: block;
  pointer-events: auto;
}

.nav-link a {
  font-size: 1.65rem;
  text-decoration: none;
  color: var(--text-description);
  letter-spacing: 0.5px;
  opacity: 0.85;
}

.nav-items {
  position: absolute;
  font-size: 1.65rem;
  top: 2.75em;
  background: rgb(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  overflow: hidden;
  color: #373737;
  border-radius: 16px;
  padding: 1em 1.5em;
  gap: 1em;
  min-width: 45em;
  max-width: 70em;
  min-height: 200px;
  opacity: 0;
  transform: translate(0%, 0);
  visibility: hidden;
  z-index: 100;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.05s ease;
}

.nav-link:hover .nav-items,
.nav-link:focus-within .nav-items {
  opacity: 1;
  transform: translate(-5%, 0);
  visibility: visible;
  pointer-events: auto;
}

.nav-items h6 {
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
  margin-left: -0.5em;
  background: linear-gradient(90deg, rgb(205, 203, 244, 0.75), transparent);
  border-radius: 12px;
  padding-left: 0.5rem;
  letter-spacing: 0.5px;
}

.nav-items p {
  display: inline-block;
  width: 80%;
  margin-top: 0.2em;
  font-size: 1.65rem;
  border-bottom: 2px solid rgba(94 92 92 / 0.15);
  font-weight: 600;
  opacity: 0.75;
}

.nav-items ul {
  list-style: none;
  display: flex;
  flex-flow: column wrap;
  gap: 0.35em;
  position: relative;
}

.nav-items ul:not(:last-of-type)::after {
  position: absolute;
  content: "";
  display: block;
  clear: both;
  width: 2px;
  height: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.15), transparent);
  top: 0;
  right: 0;
}

.nav-items .nav-sublink {
  color: #1f1e1e;
  font-size: clamp(1.45rem, 1vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.05px;
  background: transparent;
  transition: all 0.2s ease;
  border-radius: 6px;
  margin-top: 0.2em;
}

.nav-items .nav-sublink:hover {
  background: linear-gradient(90deg, rgba(0, 0, 120, 0.1), transparent);
  padding-left: 0.25em;
}

.nav-inline-image {
  position: absolute;
  max-width: 350px;
  justify-self: end;
  right: -70px;
  bottom: -50px;
  z-index: -1;
  opacity: 0.75;
  filter: saturate(0);
}

.nav-inline-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: contain;
}

.navbar-work-card {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  max-height: 300px;
  border-radius: 16px;
  background: linear-gradient();
  border: 3px solid rgba(219, 214, 214, 0.45);
  padding: 0.7em;
  gap: 1em;
  backdrop-filter: blur(15px);
  opacity: 1;
  overflow: hidden;
  margin-top: 0.5em;
}

.NB-W-card-image {
  display: block;
  border-radius: 12px;
  width: 100px;
  height: 100px;
  margin-bottom: 0.35em;
}

.NB-W-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.navbar-work-card h6,
.navbar-work-card p {
  border: none;
  background: transparent;
  font-weight: normal;
  letter-spacing: normal;
  margin: 0;
  padding: 0;
}

.navbar-work-card h6 {
  color: #353535;
  font-size: 1.85rem;
}

.navbar-work-card p {
  color: #2c2c2e;
  font-size: 1.45rem;
}

/* ─── Hero Section ───────────────────────────────────────────────────────── */

.hero-section {
  width: 100%;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-container {
  position: relative;
  margin: 0 auto;
  padding-left: 10em;
  padding-right: 10em;
  width: 100%;
  min-height: 100vh;
  gap: 5em;
  place-items: center;
  place-content: center;
  z-index: 1;
  overflow: hidden;
  background: radial-gradient(
    circle at top right,
    rgba(255, 180, 120, 0.18),
    transparent 30%
  );

  @media (width < 699px) {
    padding-left: 1.5em !important;
    padding-right: 1.5em !important;
    padding-top: 7em !important;
    gap: 2em;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 28% 40%,
      rgba(0, 0, 20, 0.15) 0%,
      rgba(0, 0, 35, 0.75) 45%,
      rgba(0, 0, 44, 0.96) 70%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 44, 0.92) 0%,
      rgba(0, 0, 44, 0.7) 35%,
      rgba(0, 0, 44, 0.15) 65%,
      rgba(0, 0, 44, 0) 100%
    );

  z-index: 0;
}

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

.hero-image {
  position: absolute;
  right: 0;
  opacity: 0.95;
  mask-image:
    linear-gradient(90deg, transparent 0%, black 60%, transparent 100%),
    linear-gradient(0deg, transparent 0%, black 40%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
  object-fit: cover;
}

.brush-container {
  position: relative;
  display: inline-block;
}

.brush-container.impact {
  font-weight: 700;
  background: linear-gradient(135deg, #977753, #dfc4a5);
  color: transparent;
  background-clip: text;
}

.brush-underline {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: auto;
  z-index: -1;
}

.hero-tag {
  display: inline-flex;
  font-size: clamp(1.65rem, 2vw, 1.75rem);
  font-weight: 500;
  color: #8a8ae7;
  letter-spacing: 0.15rem;
}

.hero-tag span img {
  opacity: 0.35;
}

.hero-title {
  font-size: clamp(3.75rem, 5vw, 5rem);
  color: var(--hero-title-color);
  letter-spacing: 0.2px;
  margin-bottom: 0.5em;
  font-weight: 400;
  line-height: normal;
}

.hero-description {
  font-size: clamp(1.85rem, 2vw, 2rem);
  color: var(--text-color);
  margin-bottom: 1.45em;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
}

.cta-hero {
  padding: 1.2em;
}

.hero-clients {
  margin: 2em auto;
  padding: 0;
  z-index: 99;
  position: absolute;
  width: 100%;
  bottom: 1em;
  text-align: center;
  color: var(--text-description);
}

.hero-clients p {
  font-size: 1.65rem;
  letter-spacing: 4px;
  opacity: 0.75;
  margin-bottom: 0.7em;
}

.hero-clients .flex {
  gap: 4em;
}

.client-logo {
  display: flex;
  flex-direction: row;
  gap: 0.75em;
  align-items: flex-end;
}

.client-logo p {
  font-size: 1.35rem;
  letter-spacing: normal;
  line-height: 1;
  font-weight: 500;
  text-align: left;
  opacity: 0.75;
}

.client-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0.45;
  filter: grayscale(1);
}

/* ─── Testimonials ───────────────────────────────────────────────────────── */

.testimonial-content-wrapper {
  place-items: center;
  gap: 2em;
  overflow: hidden;
}

.testimonial-content-left {
  display: block;
  text-align: left;
  padding: 2em;

  @media (width<1024px) {
    padding: 1em;
  }
}

.testimonial-content-left h3 {
  font-family: "Oxanium", sans-serif;
  font-size: 5rem;
  line-height: normal;
}

.testimonial-content-left p {
  font-size: 1.65rem;
}

/* ─── Client Logos Section ───────────────────────────────────────────────── */

.client-logos-section {
  margin-bottom: 80px;
}

.logos-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 24px;
}

.logo-display-card {
  background: var(--whoweareBG);
  border-radius: 12px;
  padding: 20px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.logo-display-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.logo-client-image {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}
/* ─── Friction Section ───────────────────────────────────────────────────── */
.friction {
  margin: 2em auto;
}
.friction div {
  place-self: center;
}
.friction div:nth-child(2) {
  margin-left: 5em;
}
.friction div img {
  width: 500px;
  height: 500px;
  object-fit: contain;
  animation: hero-mockup 2s ease-in-out infinite alternate;

  @media (width < 699px) {
    width: 350px;
    height: 350px;
  }
}
.friction h2 {
  font-size: clamp(3rem, 2vw, 4.25rem);
  line-height: normal;
}

.friction p {
  font-size: clamp(2rem, 2vw, 2.45rem);
  margin-top: 1em;
  color: var(--text-description);
}

.friction p span {
  background: linear-gradient(135deg, #42f466, #a1e9f7, #65d984);
  color: transparent;
  background-clip: text;
  font-size: clamp(2rem, 2vw, 2.25rem);
}

.friction ul {
  font-size: clamp(1.85rem, 2vw, 2.25rem);
  margin-top: 0.5em;
  list-style: inside;
  list-style-type: lower-greek;
}

.friction ul li {
  background: linear-gradient(135deg, rgba(92, 236, 255, 0.25), transparent);
  margin: 0.25em 0;
  border-radius: 12px;
  padding-left: 0.5em;
}

.friction ul li::marker {
  color: #6a6adc;
  font-size: 2.45rem;
}

@keyframes hero-mockup {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(5px, 7px, 0);
  }
}

/* ─── Services ────────────────────────────────────────────────── */




/* ─── Industry Serve ─────────────────────────────────────────────────────────── */
#industries {
  background: rgba(0, 60, 255, 0.15);
}

.industries-section-header {
  font-size: clamp(3.5rem, 5vw, 5.25rem);
  margin-bottom: 0.5em;
  font-weight: 700;
  background: linear-gradient(135deg, #dbe8fb, #dabcfc, #fab2b9);
  color: transparent;
  background-clip: text;
  max-width: 900px;
  line-height: normal;
}

.industries-section-subtitle {
  font-size: clamp(2.25rem, 2vw, 2.75rem);
  margin-bottom: 3em;
  max-width: 1024px;
}

.industry-card-grid {
  justify-content: center;
  align-items: center;
  justify-items: center;
  gap: 3em;
  margin-bottom: 5em;
  padding: 0 5em;

  @media (width<699px) {
    padding: 0 2em;
  }
}

.industry-cards {
  position: relative;
  max-width: 400px;
  height: 300px;
  background:
    linear-gradient(rgba(24, 28, 37, 0.75), rgba(24, 28, 37, 0.95)) padding-box,
    linear-gradient(135deg, #4285f4, #9b72cb, #d96570) border-box;
  border: 2px solid transparent;
  box-shadow: inset 0 0 3px rgb(0 0 0 / 35%);
  border-radius: 16px;
  padding: 1em;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5em;
  justify-content: flex-end;
  overflow: hidden;
  z-index: 0;
}

.industry-cards img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 70%;
  display: flex;
  justify-content: center;
  z-index: -1;
  opacity: 0.35;
}

.industry-cards h3 {
  font-size: 1.85rem;
  font-weight: 500;
  background: rgba(192, 238, 249, 0.15);
  padding: 0.3em 0.45em;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.industry-cards p {
  font-size: 1.65rem;
  background: rgba(192, 238, 249, 0.15);
  padding: 0.5em;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

/* ─── Review And Performance ─────────────────────────────────────────────── */

.stats-grid {
  gap: 1em;
  padding: 0px 1em;
}

.stat-card {
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid transparent;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-number {
  font-size: clamp(2.5rem, 2vw, 3rem);
  font-weight: 700;
  color: white;
}

.stat-label {
  font-size: clamp(1.6rem, 2vw, 2rem);
  color: whitesmoke;
  margin-top: 0.2rem;
}

.about-section-header {
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-weight: 700;
  margin-bottom: 0.5em;
  line-height: normal;
  background: linear-gradient(rgb(214, 214, 255), rgba(127, 255, 174, 0.85))
    text;
  -webkit-text-fill-color: transparent;
}

.about-section-subtitle {
  font-size: clamp(2rem, 2vw, 3rem);
  color: var(--text-description);
  margin-bottom: 2em;
}

.who-we-are {
  display: block;
  margin: 0 auto;
  margin-bottom: 2em;
}

.sideA-sideB-wrap {
  background: var(--whoweareBG);
  width: 100%;
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 0;
  margin-bottom: 3em;
}

.who-we-are .sideA {
  display: flex;
  flex-flow: column wrap;
  gap: 2em;
  padding: 2em;
}

.who-we-are .sideA .section-title {
  display: block;
  width: 100%;
}

.who-we-are .sideA .section-title img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.who-we-are .sideA .section-desc {
  font-size: clamp(1.85rem, 2vw, 2.2rem);
  color: var(--text-description);

  @media (width<1024px) {
    text-align: center;
  }
}

.sideA-sideB-wrap .sideB {
  display: block;
  width: 100%;
  height: 100%;

  @media (width < 1024px) {
    padding: 0 1em;
  }
}

.who-we-are .sideB img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.who-we-are .sideC {
  display: flex;
  flex-flow: wrap;
  gap: 3em;
  justify-content: center;
  width: 100%;
}

.our-mission,
.our-value {
  background: var(--whoweareBG);
  border: 2px solid transparent;
  max-width: 500px;
  border-radius: 24px;
  padding: 1.5em 2em;
}

.who-we-are .sideC h3 {
  font-size: 2.2rem;
  border-bottom: 2px solid rgb(115, 115, 115, 0.45);
}

.who-we-are .sideC p {
  padding-top: 0.3em;
  font-size: 1.65rem;
  line-height: 1.4;
}

.team-mem-heading {
  margin-bottom: 1em !important;
}

.team-member-card {
  gap: 0.2em;
  background:
    linear-gradient(
        225deg,
        rgba(0, 0, 44, 1),
        rgba(0, 0, 44, 0.25),
        rgba(0, 0, 44, 0.35),
        rgba(0, 13, 57, 0.75)
      )
      padding-box,
    linear-gradient(90deg, rgba(25, 62, 183, 0.75), transparent) border-box;
  border: 2px solid transparent;
  border-radius: 20px;
  min-height: 250px;
  max-width: 250px;
}

.team-mem-pic {
  display: block;
  width: 100%;
  max-height: 150px;
  background: linear-gradient(80deg, #131540, #2f4e89, #778ac2);
  border-radius: 20px 20px 0 0;
  padding: 0;
  margin: 0;
}

.team-mem-pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  border-radius: 20px 20px 0 0;
  filter: grayscale(1);
}

.team-mem-name,
.team-mem-role {
  font-family: "Fira Sans", sans-serif !important;
  padding: 0 0.7em;
  text-align: center;
}

.team-mem-name {
  font-size: 1.65rem;
}

.team-mem-role {
  font-size: 1.45rem;
}

.team-mem-social {
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  margin-top: 1em;
}

/* ORIGIN STORY */

.our-origin {
  position: relative;
  gap: 5em;
  margin-top: 5em;

  @media (width < 1024px) {
    gap: 1em;
  }
}

.origin-content {
  position: sticky;
  top: 200px;
  align-self: flex-start;
  max-height: 100vh;
  text-align: center;

  @media (width < 1024px) {
    position: static;
    top: 0px;
    margin-bottom: 10em;
  }
}

.origin-content h2 {
  font-size: clamp(3.2rem, 2vw, 5rem);
  border-bottom: 2px solid var(--text-blue-light);
  margin-bottom: 0.3em;
  display: inline-block;
  padding-bottom: 0.1em;
}

.origin-content p {
  font-size: clamp(1.85rem, 2vw, 2.4rem);
  margin-bottom: 1em;
}

.origin-content img {
  width: 100%;
  object-fit: cover;
  mask: linear-gradient(transparent, black 70%, transparent);
}

.origin-box {
  width: 300px;
  height: 300px;
  position: relative;
}

.timeline-bar {
  position: absolute;
  height: 20px;
  width: 100%;
  top: -10px;
  left: 0px;
  background: url("../images/bar-fixed.svg") left center / cover no-repeat;
  display: inline-flex;
  align-items: flex-end;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.timeline-check-point {
  --move-x: 50px;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-around;
  align-items: center;
  translate: var(--move-x) 15%;
  gap: 1em;
}

.timeline-date {
  padding: 0px 5px;
}

.timeline-date h3 {
  font-size: 1.85rem;
  letter-spacing: 1px;
}

.timeline-check-point img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  flex-shrink: 0;
  animation: 1s
    linear(
      0 0%,
      0.17 4.5%,
      0.324 9.1%,
      0.462 13.8%,
      0.584 18.6%,
      0.69 23.5%,
      0.737 26%,
      0.782 28.6%,
      0.822 31.2%,
      0.858 33.8%,
      0.891 36.5%,
      0.92 39.2%,
      0.944 41.7%,
      0.964 44.2%,
      0.982 46.8%,
      0.997 49.5%,
      1.01 52.3%,
      1.021 55.1%,
      1.028 58%,
      1.033 61%,
      1.037 66.1%,
      1.035 71.7%,
      1.028 77.3%,
      1.005 91.9%,
      1.001 96.2%,
      1 100%
    )
    0s infinite alternate none running event-check;
}

@keyframes event-check {
  0% {
    transform: scale(0.95);
    opacity: 0.95;
    filter: drop-shadow(rgb(165, 165, 255) 0px 0px 2px)
      drop-shadow(rgb(129, 97, 246) 2px 2px 2px);
  }

  100% {
    transform: scale(1);
    opacity: 1;
    filter: drop-shadow(rgb(5, 5, 126) 0px 0px 2px);
  }
}

.timeline-float-right {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 20px;
  height: 100%;
  background: url("../images/bar-float.svg") right center / cover no-repeat;
  background-size: cover;
}

.timeline-float-left {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 20px;
  height: 100%;
  background: url("../images/bar-float.svg") right center / cover no-repeat;
}

.origin-event {
  margin: 0 auto;
  padding: 3em 3.2em;
}

.event-wrap {
  background: var(--card-bg);
  padding: 3em 1em;
  border-radius: 12px;
  border: 1px solid transparent;
  height: 200px;
}

.origin-event h4 {
  font-size: 1.85rem;
  font-weight: 500;
  background: rgba(0, 0, 44, 0.3);
  padding: 0.2em 0.1em 0.2em 0.3em;
  margin-bottom: 0.5em;
  border-radius: 6px;
}

.origin-event p {
  font-size: 1.65rem;
  padding-left: 0.3em;
  line-height: 1.25;
}

/* Tech Stack */

.tech-stack-about {
  margin-top: 2em;
  margin-bottom: 1em;
  text-align: center;

  @media (width < 1024px) {
    margin-bottom: 3em;
  }
}

.tech-stack-about h4 {
  font-size: 3.5rem;
  margin-bottom: 1em;
  padding-bottom: 0.2em;
  border-bottom: 2px solid var(--text-blue-light);
  display: inline-block;
  letter-spacing: 2px;
}

.tech-wrapper {
  background: transparent;
  font-size: 2rem;
  height: 250px;
}

.tech-header-bar {
  display: flex;
  flex-flow: wrap;
  gap: 1em;
  justify-content: center;

  @media (width < 1024px) {
    flex-wrap: nowrap;
    overflow-x: scroll;
    justify-content: start;
    gap: 0.5em;
    padding-left: 1em;
    mask: linear-gradient(90deg, black 90%, transparent);
  }
}

.tech-header {
  border-top: 2px solid rgba(0, 13, 255, 0.25);
  border-right: 2px solid rgba(0, 13, 255, 0.25);
  border-left: 2px solid rgba(0, 13, 255, 0.25);
  border-image: initial;
  border-bottom: none;
  padding: 0.3em 0.8em;
  border-radius: 16px 16px 0px 0px;
  background: var(--card-bg-alternate);
  font-size: 1.85rem;
  cursor: pointer;
  font-weight: 500;

  @media (width < 1024px) {
    padding: 0.3em 0.2em;
    width: 150px;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
  }
}

.tech-header.tech-header-active {
  background: rgba(0, 13, 255, 0.25);
  transition: background 0.3s linear;
}

.tech-areas {
  background: var(--section-bg);
  border-radius: 24px;
  height: 100%;
  padding-left: 1em;
  padding-right: 1em;
  box-shadow: rgba(0, 13, 255, 0.25) 2px 4px 10px 2px;
}

.tech-areas .area {
  display: none;
  height: 100%;
}

.area.area-active {
  display: block;
  animation: 0.5s linear 0s 1 normal none running acc;
}

@keyframes acc {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.tech-areas .area ul {
  gap: 2em;
  display: flex;
  flex-flow: wrap;
  place-content: center;
  align-items: center;
  height: 100%;

  @media (width < 1024px) {
    gap: 1em;
  }
}

.tech-areas .area ul li {
  list-style: none;
  font-size: 1.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: bolder;
}

.tech-areas .area ul li svg {
  height: 50px;
  width: 50px;
}

/* ─── Planning ───────────────────────────────────────────────────────────── */

.planning-workflow {
  display: block;
  margin: 0 auto;
  padding: 3em 0;
  width: 100%;

  @media (width<1024px) {
    width: fit-content;
  }
}

.planning-workflow lottie-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Planning Steps Tab */
.step-detail-block {
  background: var(--whoweareBG);
  border: 1px solid transparent;
  padding: 2em 3em;
  margin: 3em;
  border-radius: 12px;

  @media (width<1024px) {
    margin: 0;
  }
}

/* Tab Navigation */
.tab-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0;

  @media (width<1024px) {
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: scroll;
  }
}

.tab-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.65rem;
  font-weight: 500;
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}

.tab-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}

.tab-btn.active {
  color: #ffffff;
  border-bottom: 2px solid #6c63ff;
}

.step-num {
  font-size: 1.65rem;
  color: #6c63ff;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Tab Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1em;
  position: relative;
}

.tab-text {
  max-width: 680px;
}

.tab-text h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.3;
}

.tab-text p {
  font-size: 1.65rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0 0 24px;
}

.tab-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;

  @media (width<1024px) {
    grid-template-columns: 1fr;
  }
}

.tab-text ul li {
  font-size: 1.65rem;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.tab-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6c63ff;
}

.tab-tag {
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: #6c63ff;
  background: rgba(108, 99, 255, 0.1);
  border: 1px solid rgba(108, 99, 255, 0.25);
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
  margin-top: 6px;

  @media (width<1024px) {
    display: none;
  }
}

.agency-impact-metrics {
  gap: 3em;
}

.impact-in-numbers {
  gap: 3em;
  padding: 3em;
  max-width: 400px;
  position: relative;
  justify-items: center;
  justify-self: center;
}

.impact-in-numbers:after,
.impact-in-numbers::before {
  position: absolute;
  content: "";
}

.impact-in-numbers:after {
  background: linear-gradient(90deg, transparent, #96a1f8, transparent);
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  right: 0;
}

.impact-in-numbers:before {
  background: linear-gradient(transparent, #96a1f8, transparent);
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  right: 0;
}

.number-chip {
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 1em;
}

.number-chip span {
  font-size: 2.35rem;
}

.number-chip span:nth-child(2n) {
  font-size: 1.65rem;
}

.agency-impact-metrics .video-wrapper {
  transform: translateY(20%);

  @media (width<1024px) {
    transform: translateY(0%);
  }
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */

.footer {
  position: relative;
  margin-top: 10em;
  padding: 0px;
  margin-bottom: 0;
  z-index: 9999;
}

.form-footer {
  position: relative;
  background-image: linear-gradient(90deg, rgb(15, 11, 31), rgb(0, 17, 125));
  padding: 5em 2em 0 2em;
  margin-bottom: 0px;
  border-radius: 44px 16px;
  border: 1px solid rgb(0, 16, 123);
  box-shadow:
    rgba(27, 40, 134, 0.3) 6px 8px 16px,
    rgba(27, 40, 134, 0.2) -6px 8px 8px;
  width: stretch;
  height: stretch;
  z-index: 9999;
}

.form-footer::before {
  position: absolute;
  content: "";
  width: inherit;
  height: inherit;
  background:
    url("../images/bgftr.svg") center center no-repeat,
    transparent;
  z-index: -1;
  opacity: 0.3;

  @media (width < 1024px) {
    background-position: center 60%;
  }
}

.form-footer-details {
  display: flex;
  flex-flow: column wrap;
  gap: 2em;
  position: relative;
  padding: 1em clamp(1em, 2vw, 5em);
}

.form-footer-details h2 {
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  letter-spacing: 0.5px;
}

.form-footer-details p {
  font-size: clamp(1.65rem, 5vw, 2rem);
  color: var(--text-color-light);
}

.form-footer-details lottie-player {
  object-fit: contain;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ─── -------------- ─────────────────────────────────────────────────────── */

.footer-wrapper-bg {
  background: linear-gradient(#2d35a7, #0d0025);
  margin-top: -15em;
  border-top: 2px solid var(--anchor-color);
  display: flex;
  flex-flow: column wrap;
  align-items: center;

  @media (width < 1024px) {
    margin-top: -20em;
    padding: 0;
  }
}

.footer-address {
  margin-top: 10em;
  border-bottom: 2px solid var(--anchor-color);
  width: 100%;

  @media (width < 1024px) {
    margin-top: 20em;
  }
}

.ftad {
  justify-content: flex-start;
  gap: 0em;
}

.ftad-content {
  display: flex;
  gap: 1.5em;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin: 0.7em 0;
}

.ftad-info {
  text-align: left;
}

.ftad-info h6 {
  font-size: clamp(1.85rem, 2vw, 2.25rem);
}

.ftad-info p {
  font-size: clamp(1.65rem, 2vw, 1.85rem);
  line-height: 1.6;
}

.ftad-info a {
  color: var(--text-color);
  border-bottom: 1px solid transparent;
}

.ftad-info a:hover,
.ftad-info a:focus {
  border-bottom: 1px solid var(--text-description);
}

.ftad-info i {
  font-size: 1.45rem;
  color: var(--text-description);
  margin-left: 0.5em;
}

.footer-brand-big-logo {
  display: block;
  width: 100%;
  height: auto;
  margin: 2em auto;
  padding: 10% 0 0 10%;

  @media (width < 1024px) {
    margin: 3em auto;
    padding: 0;
  }
}

.footer-brand-big-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ftad-social {
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 2em;
}

.ftad-social h6 {
  font-size: clamp(1.65rem, 2vw, 1.85rem);
  padding: 0.2em 0;
}

.ftad-social-items {
  display: flex;
  flex-flow: row wrap;
  gap: 2em;
  justify-content: center;
  align-items: center;
}

.ftad-social-items .social-icon {
  display: block;
  width: fit-content;
  height: auto;
}

.sitemap {
  padding: 2em 0;
  border-bottom: 2px solid var(--text-blue-light);
  width: 100%;
  display: block;
  margin: 0 auto;
}

.sitemap .grid-sm {
  align-items: start;
  justify-content: center;
  justify-items: center;
  gap: 3em;
  padding: 1em;
  margin: 0 auto;

  @media (width < 1024px) {
    align-items: center;
    justify-items: normal;
    padding-left: 3em;
  }
}

.sitemap h6 {
  font-size: clamp(1.65rem, 2vw, 1.85rem);
  border-bottom: 2px solid #c8c8c88e;
  display: inline-block;
  margin-bottom: 0.5em;
}

.footer-links {
  display: flex;
  flex-flow: column wrap;
  align-items: flex-start;
  gap: 5px;
}

.footer-links a {
  font-size: clamp(1.5rem, 2vw, 1.65rem);
  color: var(--text-description);
}

.footer-copyrights {
  display: block;
  margin: 0 auto;
  padding: 1.5em 1em;
  width: 100%;
}

.copyrights-text {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  gap: 2em;
}

.copyrights-text p {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  justify-self: self-start;
}

.copyrights-links {
  display: flex;
  gap: 2em;
  justify-content: flex-end;
  font-size: clamp(1.45rem, 2vw, 1.65rem);
}

.copyrights-links a {
  color: var(--text-description);
  text-underline-offset: 5px;
}

/* ─── Mobile Menu ────────────────────────────────────────────────────────── */
/* ===============================
   MOBILE MENU WRAPPER
================================ */

.mobile-menu-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  padding: 2em 0.45em;
  z-index: 99999;
}

.mobile-menu-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  z-index: -1;
}

@media (width > 1024px) {
  .mobile-menu-wrapper {
    display: none;
  }
}

/* ===============================
   MOBILE MENU BAR
================================ */

.mobile-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 15px;
  position: relative;
}

.mobile-menu img {
  display: block;
}

.menuInp {
  background: transparent;
  padding: 0.5em;
  cursor: pointer;
  z-index: 2;
}

/* Hide checkbox */
.mobile-menu .inp {
  display: none;
}

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

.bar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 22px;
}

.bar-list {
  height: 3px;
  background: #fff;
  border-radius: 50px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}

/* Open (checked) → Close (X) animation */
.inp:checked ~ .bar .top {
  transform: translateY(6px) rotate(-45deg);
}

.inp:checked ~ .bar .middle {
  opacity: 0;
}

.inp:checked ~ .bar .bottom {
  transform: translateY(-6px) rotate(45deg);
}

/* ===============================
   MENU CONTAINER
================================ */

.menu-container {
  position: absolute;
  top: 130%;
  left: 0;
  width: 100%;
  background: var(--theme-color);
  border: 2px solid rgba(2, 0, 143, 0.5);
  border-radius: 10px;
  overflow: visible;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.3s ease;
  padding: 1em 0.5em;
}

/* Toggle menu */
.menu-open {
  transform: scaleY(1);
}

/* ===============================
   MENU ITEMS
================================ */

.menu-list {
  padding: 10px;
  font-size: 1.85rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid rgba(125, 103, 169, 0.25);
}

.menu-list a,
.menu-list button {
  display: inline-flex;
  width: 100%;
  cursor: pointer;
  color: var(--text-color);
  letter-spacing: 1px;
}

.menu-list.cta-button,
.menu-list.nav-meeting-link {
  text-align: center;
  padding: 0.5em 0.5em;
  margin: 0.3em 1em;
  align-content: center;
  justify-content: center !important;
}

.menu-list.nav-meeting-link {
  width: 90%;
}

.menu-list.nav-meeting-link a span {
  width: 100%;
}

.menu-divider {
  height: 3px;
  background: rgb(105, 113, 169, 0.45);
  margin: 0.5em 0;
  border: 0px;
}

/* ===============================
   SUB MENUS
================================ */
.menu-list-container {
  display: none;
  transition: all 0.15s ease;
}

.menu-list.sub-menu {
  padding-left: 2em;
  font-size: 1.65rem;
  background: rgba(12, 12, 69, 0.75);
}

.menu-list.sub-menu:hover:not(.cta-button):not(.nav-meeting-link) {
  background: #041b67;
}

.menu-list.nav-meeting-link {
  border: 2px solid rgba(255, 255, 255, 0.5);
}

/* ------------------ */
/* ─── Form Styles ────────────────────────────────────────────────────────── */
/* ----------------------- */

#pnum {
  padding-left: 5em;
  width: 100%;
}

.form-items-wrapper {
  padding: 2em 1em;
  margin: 0px auto;
  gap: 1em;
}

.form-items {
  display: flex;
  flex-flow: column wrap;
  gap: 0.5em;
  background: rgb(0, 198, 255, 0.15);
  backdrop-filter: blur(5px);
  padding: 0.5em 1em;
  border-radius: 8px;
  justify-content: center;
  justify-items: center;
  align-items: stretch;
  position: relative;
}

.form-items label {
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.75px;
}

.form-items input,
.form-items textarea {
  background: rgb(241, 244, 253);
  color: #252525;
  border-radius: 6px;
  border: 2px solid rgba(2, 0, 143, 0.5);
  outline: 0px;
  font-size: 1.65rem;
  letter-spacing: 0.5px;
}

.form-items select {
  background: rgb(241, 244, 253);
  color: #757575;
  border-radius: 6px;
  border: 2px solid rgba(2, 0, 143, 0.5);
  outline: 0px;
  font-size: 1.65rem;
  letter-spacing: 0.5px;
}

.form-items input,
.form-items select {
  height: 32px;
  padding: 0px 0.5em;
}

input::placeholder {
  color: rgb(143, 142, 155, 0.5);
  letter-spacing: 0.5px;
}

optgroup {
  font-size: 1.6rem;
  font-weight: 600;
  color: rgb(60, 60, 60);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  appearance: none;
  margin: 0px;
}

input[type="number"] {
  appearance: none;
}

.form-items select option:disabled {
  color: rgba(143, 142, 155, 0.3);
}

.form-items textarea {
  padding: 0.5em;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 1.65rem;
}

.checkbox-wrapper .ikxBAC {
  appearance: none;
  background-color: #dfe1e4;
  border-radius: 72px;
  border-style: none;
  flex-shrink: 0;
  height: 20px;
  margin: 0;
  position: relative;
  width: 30px;
}

.checkbox-wrapper .ikxBAC::before {
  bottom: -6px;
  content: "";
  left: -6px;
  position: absolute;
  right: -6px;
  top: -6px;
}

.checkbox-wrapper .ikxBAC,
.checkbox-wrapper .ikxBAC::after {
  transition: all 100ms ease-out;
}

.checkbox-wrapper .ikxBAC::after {
  background-color: #3d4376;
  border-radius: 50%;
  content: "";
  height: 14px;
  left: 3px;
  position: absolute;
  top: 3px;
  width: 14px;
}

.checkbox-wrapper input[type="checkbox"] {
  cursor: default;
}

.checkbox-wrapper .ikxBAC:hover {
  background-color: #c9cbcd;
  transition-duration: 0s;
}

.checkbox-wrapper .ikxBAC:checked {
  background-color: #6e79d6;
}

.checkbox-wrapper .ikxBAC:checked::after {
  background-color: #fff;
  left: 13px;
}

.checkbox-wrapper :focus:not(.focus-visible) {
  outline: 0;
}

.checkbox-wrapper .ikxBAC:checked:hover {
  background-color: #535db3;
}

.formSubmitBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5em;
  width: 100%;
}

.formSubmitBtn input {
  --btn-color: #003cff;
  font-size: 1.6rem;
  font-weight: 700;
  background: rgb(255, 255, 255);
  color: var(--btn-color);
  border: none;
  outline: none;
  padding: 0.5em 1em;
  border-radius: 16px 4px;
  filter: drop-shadow(2px 4px 16px var(--btn-color));
}

.formSubmitBtn input:hover {
  background: var(--btn-color);
  color: white;
  cursor: pointer;
  filter: drop-shadow(2px 4px 16px var(--btn-color));
}

/* Style for disabled submit button */
.formSubmitBtn input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #ccc;
}

.formSubmitBtn input:not(:disabled) {
  opacity: 1;
  cursor: pointer;
}

/* form Validation Style */
.form-items.has-error {
  border: 1px solid goldenrod;
}

.form-items.has-error input,
.form-items.has-error select,
.form-items.has-error textarea {
  border-color: goldenrod;
}

.error-msg {
  margin-top: 0.1em;
  font-size: 1.45rem;
  font-weight: 600;
  color: yellow;
  font-family: "Fira Sans", sans-serif !important;
  font-weight: normal;
}

.error-msg::after {
  content: " **";
}

/* ─── Contact Page ───────────────────────────────────────────────────────── */

/* Contact Page Wrapper */
.contact-wrapper {
  padding: 0 2em;

  @media (width < 768px) {
    padding: 0;
  }
}

/* Hero Section */
.contact-hero-section {
  text-align: center;
  margin-bottom: 50px;
}

.contact-main-title {
  font-size: clamp(3rem, 4vw, 5rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.contact-subtitle {
  font-size: clamp(1.65rem, 4vw, 1.85rem);
  max-width: 650px;
  margin: 0 auto;
}

/* Map Section */
.location-map-section {
  margin-bottom: 60px;
}

.map-container-wrapper {
  position: relative;
  background: rgba(49, 36, 99, 0.35);
  border-radius: 20px;
  overflow: hidden;
  border: 0;
  outline: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.map-responsive-frame {
  position: relative;
  padding-bottom: 350px;
  height: 0;
  overflow: hidden;
  outline: 0;
  border: 0;
}

.interactive-map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Info Grid */
.contact-info-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  justify-items: center;

  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

/* Quick Contact Cards */
.quick-contact-cards {
  display: flex;
  flex-flow: column wrap;
  gap: 24px;

  @media (width < 1024px) {
    min-width: 350px;
    max-width: 450px;
  }
}

.contact-method-card {
  width: 100%;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;

  @media (width < 768px) {
    padding: 24px;
  }
}

.contact-method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.method-icon-circle {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
}

.method-icon-svg {
  color: #ffffff;
  stroke-width: 2;
}

.method-content-wrapper {
  flex: 1;
  padding-top: 0.2em;
}

.method-title-text {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.method-description-text {
  font-size: 1.65rem;
  color: var(--text-description);
  margin-bottom: 10px;
}

.method-action-link {
  font-size: 1.85rem;
  font-weight: 600;
  color: rgb(255, 198, 123);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  line-height: 1.6;
}

.method-action-link:hover {
  color: wheat;
  text-decoration: underline;
}

/* Additional Info Section */
.additional-info-section {
  display: flex;
  flex-direction: column;
  gap: 24px;

  @media (width < 768px) {
    min-width: 350px;
    max-width: 450px;
  }
}

.info-panel-card {
  background: var(--card-bg-alternate);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.panel-header-section {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.panel-icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.panel-icon-graphic {
  color: #ffffff;
  stroke-width: 2;
}

.panel-title-heading {
  font-size: 1.85rem;
  font-weight: 700;
  margin: 0;
}

/* Business Hours Panel */
.hours-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 16px;

  @media (width < 768px) {
    gap: 8px;
  }
}

.schedule-row-entry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #e2e8f0;

  @media (width < 768px) {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

.schedule-row-entry:last-child {
  border-bottom: none;
}

.schedule-row-entry.inactive-day {
  opacity: 0.85;
}

.schedule-day-name {
  font-size: 1.65rem;
  font-weight: 500;
}

.schedule-time-range {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-description);
}

/* Social Media Panel */
.social-intro-text {
  font-size: 1.65rem;
  color: var(--text-description);
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-platform-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.platform-link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 1.45rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #ffffff;

  @media (width < 768px) {
    padding: 14px 16px;
  }
}

.platform-link-button.linkedin-btn {
  background: linear-gradient(135deg, #3585fc 0%, #2563bd 100%);
}

.platform-link-button.twitter-btn {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
}

.platform-link-button.github-btn {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
}

.platform-link-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ─── Blog Page ──────────────────────────────────────────────────────────── */

.insight-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2.25rem;
  padding: 1rem;
  border-bottom: 2.5px solid;
  border-image: linear-gradient(
      to right,
      transparent,
      #00f1fe35,
      #00f2fe,
      #00f2fe35,
      transparent
    )
    1;
  padding: 2.5em 1em;
  margin-bottom: 3em;
}

.insight {
  display: flex;
  flex-flow: column wrap;
  justify-content: start;
  max-width: 420px;
  height: 350px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  gap: 0.5em;
  background: var(--section-bg);
  border: 1px solid transparent;
  padding: 0px;
}

.link-overlay {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 44, 0.7) 0%,
    rgba(0, 0, 44, 0.95) 100%
  );
  backdrop-filter: blur(5px);
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-100%);
  transition: 0.3s ease;
}

.link-overlay a {
  font-size: clamp(1.8rem, 2vw, 2rem);
  color: var(--hero-title-color);
  width: 50%;
  text-align: center;
  padding: 0.5rem 0px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid rgb(3, 84, 102);
}

.link-overlay a:hover {
  scale: 0.98;
}

.insight:hover .link-overlay {
  transform: translateX(0px);
}

.insight-image {
  width: 100%;
  height: 120px;
  padding: 0px;
  margin: 0px;
  position: relative;
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}

.insight-image::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 0%, rgba(163, 150, 150, 0.3) 100%);
  z-index: 99;
}

.insight-text {
  display: flex;
  flex-flow: column wrap;
  justify-items: center;
  padding: 1em 1.5em;
  width: 100%;
}

.insight-text .in-tags {
  list-style: none;
  display: flex;
  flex-flow: wrap;
  gap: 1.2em;
  margin-bottom: 0.5rem;
}

.insight-text .in-tags li {
  font-size: 1.65rem;
  color: var(--text-description);
  background-color: rgb(94, 74, 126, 0.5);
  padding: 0.2em 0.25em;
  border-radius: 6px;
  margin: 0.5em 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 2px;
  letter-spacing: 0.02rem;
}

.insight-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color-light);
  margin-bottom: 0.3em;
}

.insight-text .blog-meta {
  display: inline-flex;
  gap: 1em !important;
  font-size: 1.45rem;
  margin-bottom: 0.3em;
}

.insight-text .excerpt {
  font-size: clamp(1.45rem, 2vw, 1.6rem);
  color: var(--text-description);
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.type-cutout {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: rgba(148, 120, 253, 0.45);
  border-radius: 24px 0px 0px;
  width: 75px;
  height: 20px;
  box-shadow: rgba(148, 120, 253, 0.65) 0px 2px 2px 2px;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
}

.type-cutout p {
  color: var(--text-description);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0px;
  padding: 0px;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: 0.1rem;
}

/* ================================================
   WORK & PORTFOLIO PAGE
   ================================================ */

.work-page-wrapper *,
.work-page-wrapper *::before,
.work-page-wrapper *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.work-page-wrapper {
  --work-text-spl: #0cf967;
}

/* ── HERO ────────────────────────────────────── */
.work-hero {
  position: relative;
  padding: 110px 6% 80px;
  text-align: center;
  overflow: hidden;
}

.work-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 55% at 50% 0%,
    rgba(84, 95, 255, 0.16) 0%,
    transparent 68%
  );
  pointer-events: none;
}

.work-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--card-bg);
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--work-text-spl);
  margin-bottom: 28px;
}

.work-hero-eyebrow i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(120deg, #0cf967, #022d13);
  display: inline-block;
}

.work-hero h1 {
  font-size: clamp(3rem, 5vw, 4.25rem);
  font-weight: 800;
  color: var(--hero-title-color);
  line-height: 1.12;
  max-width: 700px;
  margin: 0 auto 20px;
  letter-spacing: -0.025em;
}

.gradient-text {
  background: linear-gradient(rgb(97, 246, 211), rgb(84, 95, 255));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.work-hero-sub {
  font-size: 1.65rem;
  color: var(--text-description);
  max-width: 520px;
  margin: 0 auto 52px;
}

.work-hero-stats {
  display: flex;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}

.hero-stat-num {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(rgb(97, 246, 211), rgb(84, 95, 255));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-lbl {
  font-size: 1.45rem;
  color: var(--text-color-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── SECTION LABEL ──────────────────────────── */
.sec-label {
  text-align: center;
  margin-bottom: 44px;
}

.sec-label h2 {
  font-size: clamp(1.85rem, 2vw, 2.5rem);
  font-weight: 800;
  color: var(--hero-title-color);
  margin-bottom: 10px;
}

.sec-label p {
  font-size: 1.65rem;
  color: var(--text-description);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── FEATURED CASE STUDIES ──────────────────── */
.work-featured {
  padding: 0 6% 80px;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.feat-card {
  background: var(--card-bg);
  border: 1px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(84, 95, 255, 0.2);
}

/* ── MOCK SCREENS ───────────────────────────── */
.feat-visual {
  height: 248px;
  position: relative;
  overflow: hidden;
}

.mock-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.mock-ui {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  padding: 2px;
  overflow: hidden;
}

.mock-ui img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 8px;
}

.feat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--other-gradient);
  color: #fff;
}

.feat-result {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px 14px;
  text-align: right;
}

.feat-result-val {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--work-text-spl);
  line-height: 1;
}

.feat-result-lbl {
  font-size: 1.45rem;
  color: var(--text-color-light);
  margin-top: 2px;
}

.feat-body {
  padding: 24px 26px 28px;
}

.feat-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.feat-industry {
  font-size: 1.25rem;
  color: var(--work-text-spl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.feat-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.feat-year {
  font-size: 1.45rem;
  color: var(--text-color-light);
}

.feat-body h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--hero-title-color);
  margin-bottom: 10px;
}

.feat-body > p {
  font-size: 1.65rem;
  color: var(--text-description);
  line-height: 1.68;
  margin-bottom: 18px;
}

.feat-metrics {
  display: flex;
  gap: 0;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.feat-metric {
  flex: 1;
  text-align: center;
  padding: 12px 6px;
}

.feat-metric + .feat-metric {
  border-left: 1px solid rgba(255, 255, 255, 0.055);
}

.fm-val {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--hero-title-color);
  display: block;
}

.fm-lbl {
  font-size: 1.25rem;
  color: var(--text-color-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.t-pill {
  padding: 4px 10px;
  background: rgba(84, 95, 255, 0.1);
  border: 1px solid rgba(84, 95, 255, 0.22);
  border-radius: 100px;
  font-size: 1.45rem;
  color: #a0b4ff;
  font-weight: 500;
}

.feat-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--anchor-color);
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s;
}

.case-link:hover {
  gap: 12px;
}

.case-link svg {
  width: 15px;
  height: 15px;
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

.award-gold {
  color: #f0c040;
  background: rgba(240, 192, 64, 0.08);
  border: 1px solid rgba(240, 192, 64, 0.22);
}

.award-blue {
  color: #9fccff;
  background: rgba(160, 200, 255, 0.08);
  border: 1px solid rgba(160, 200, 255, 0.2);
}

/* ── PORTFOLIO GRID ─────────────────────────── */
.work-grid-sec {
  padding: 0 6% 80px;
}

.p-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.p-card {
  background: var(--card-bg);
  border: 1px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
  cursor: pointer;
}

.p-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(84, 95, 255, 0.17);
}

.p-visual {
  height: 175px;
  position: relative;
  overflow: hidden;
}

.p-visual .mock-wrap {
  height: 100%;
}

.p-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 40, 0.82) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.28s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
}

.p-card:hover .p-overlay {
  opacity: 1;
}

.p-overlay a {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--other-gradient);
  padding: 7px 18px;
  border-radius: 100px;
  box-shadow: 0 4px 18px rgba(84, 95, 255, 0.4);
}

.p-body {
  padding: 17px 19px 21px;
}

.p-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}

.p-cat {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--work-text-spl);
  letter-spacing: 0.1em;
}

.p-stat {
  font-size: 1.25rem;
  font-weight: 700;
  color: #7dffb3;
  background: rgba(125, 255, 179, 0.08);
  border: 1px solid rgba(125, 255, 179, 0.2);
  padding: 3px 8px;
  border-radius: 100px;
}

.p-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--hero-title-color);
  margin-bottom: 7px;
}

.p-card p {
  font-size: 1.45rem;
  color: var(--text-description);
  margin-bottom: 13px;
}

.p-platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.25rem;
  color: var(--text-color-light);
}

.p-card h6 {
  font-size: 1.45rem;
}

/* ── INDUSTRIES ─────────────────────────────── */
.work-industries {
  padding: 0 6% 80px;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.ind-card {
  background: var(--card-bg);
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 22px 20px;
  transition: transform 0.28s;
}

.ind-card:hover {
  transform: translateY(-4px);
}

.ind-card h4 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--hero-title-color);
  margin-bottom: 6px;
}

.ind-card p {
  font-size: 1.45rem;
  color: var(--text-description);
  line-height: 1.52;
  margin-bottom: 12px;
}

/* ── TESTIMONIALS ───────────────────────────── */
.work-testi {
  padding: 0 6% 80px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.testi-card {
  background: var(--card-bg);
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 26px;
}

.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: #f0c040;
  font-size: 1.45rem;
}

.t-quote {
  font-size: 1.45rem;
  color: var(--text-description);
  line-height: 1.72;
  margin-bottom: 20px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.t-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.av-a {
  background: linear-gradient(135deg, #545fff, #7329fd);
}

.av-b {
  background: linear-gradient(135deg, #00b09b, #006680);
}

.av-c {
  background: linear-gradient(135deg, #f093fb, #7329fd);
}

.t-author-info h5 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-color);
}

.t-author-info span {
  font-size: 1.45rem;
  color: var(--text-color-light);
}

/* ── CTA ────────────────────────────────────── */
.work-cta {
  padding: 0 6% 100px;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--whoweareBG);
  border: 1px solid transparent;
  border-radius: 24px;
  padding: 4em 2em;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(84, 95, 255, 0.13) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.cta-inner h2 {
  font-size: clamp(2rem, 2vw, 2.5rem);
  font-weight: 800;
  color: var(--hero-title-color);
  margin-bottom: 14px;
}

.cta-inner > p {
  font-size: 1.65rem;
  color: var(--text-description);
  max-width: 500px;
  margin: 0 auto 42px;
}

.work-cta .cta-inner button {
  padding: 0.3em 0.5em;
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 640px) {
  .work-hero {
    padding: 78px 5% 56px;
  }

  .work-hero-stats {
    gap: 28px;
  }

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

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

  .stats-inner {
    padding: 28px 24px;
  }

  .cta-inner {
    padding: 48px 26px;
  }

  .work-filter-bar {
    gap: 6px;
  }
}

/* ── FADE-UP ENTRANCE ───────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

.work-page-wrapper > section {
  animation: fadeUp 0.55s ease both;
}
