@font-face {
  font-family: "Helixa";
  src: url("../assets/fonts/Helixa-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helixa";
  src: url("../assets/fonts/Helixa-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helixa";
  src: url("../assets/fonts/Helixa-Bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
p {
  max-width: 48ch;
  font-size: clamp(1.05rem, 0.9912rem + 0.28vw, 1.25rem);
  font-weight: 400;
  color: #EDFFE0;
}

.service-description {
  font-size: 1.5rem;
}
@media (max-width: 1240px) {
  .service-description {
    color: rgb(243, 249, 235);
    text-shadow: 0 2px 4px rgba(44, 43, 43, 0.8), 0 1px 2px rgba(0, 0, 0, 0.9);
  }
}
@media (max-width: 600px) {
  .service-description {
    display: none;
  }
}

.content {
  font-size: 1.6rem;
  color: #EDFFE0;
  max-width: clamp(300px, 70vw + 5%, 80%);
  line-height: 1.4;
}

h1 {
  font-size: clamp(2.6127rem, 2.2592rem + 1.6161vw, 3.8147rem);
  font-weight: 600;
  line-height: 1;
}

.section-headline,
h2 {
  font-size: clamp(1.8144rem, 1.63rem + 0.843vw, 2.4414rem);
  line-height: 1.2;
  font-weight: 600;
  color: #CFFFCC;
}

.card-title,
h3 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.5px;
}
@media (max-width: 690px) {
  .card-title,
  h3 {
    font-size: 1.5rem;
  }
}

.card-title--v2,
h4 {
  font-size: clamp(1.05rem, 0.9912rem + 0.28vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.card-body {
  font-size: 1.15rem;
  font-weight: 400;
}

/* === OTHER === */
.eyebrow {
  font-size: clamp(0.875rem, 0.8382rem + 0.1681vw, 1rem);
  color: #64F764;
}
@media (max-width: 999px) {
  .eyebrow {
    margin-bottom: 0.75rem;
  }
}

cite {
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

.content-box {
  font-size: clamp(1.05rem, 0.9912rem + 0.28vw, 1.25rem);
  line-height: 1.5;
  width: 40ch;
}

.adjust-vertical {
  margin-top: -0.5rem;
}

.large-break {
  display: none;
}

@media (min-width: 1250px) {
  .large-break {
    display: block;
  }
}
@media (max-width: 1250px) {
  .low-break {
    display: block;
  }
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1, 0, 5, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 999;
  backdrop-filter: blur(4px);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.contact-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: min(90vw, clamp(22rem, 26.042vw, 28rem));
  background: #64F764;
  border-radius: 0 0 0 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s ease-in;
  z-index: 1000;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  color: #010005;
}
.contact-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 690px) {
  .contact-modal {
    width: 100vw;
    max-width: none;
    border-radius: 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  }
}

.modal-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1rem, 3.125001vw, 3.45rem);
}

.modal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(3rem, 8.333336vw, 9.2rem);
}

.modal-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.close-btn {
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: 2px solid #010005;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.8;
  flex-shrink: 0;
}
.close-btn:hover {
  opacity: 1;
  transform: rotate(90deg);
  background: rgba(1, 0, 5, 0.1);
}
.close-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #010005;
}

.modal-title {
  font-size: clamp(2.1773rem, 1.9201rem + 1.1758vw, 3.0518rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #010005;
}

.contact-details {
  margin: 0;
}
.contact-details p {
  font-size: clamp(1.05rem, 0.9912rem + 0.28vw, 1.25rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #010005;
  margin: 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  opacity: 0.8;
  color: #010005;
}

.copy-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
  position: relative;
}
.copy-email:hover {
  opacity: 0.8;
}
.copy-email p {
  font-size: clamp(1.05rem, 0.9912rem + 0.28vw, 1.25rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #010005;
  margin: 0;
  transition: opacity 0.15s ease;
}
.copy-email svg {
  width: 1rem;
  height: 1rem;
  fill: #010005;
  opacity: 0.8;
  flex-shrink: 0;
  transition: opacity 0.15s ease;
}
.copy-email.success svg {
  flex-shrink: 0;
}
.copy-email.success svg path {
  d: path("M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z");
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  scrollbar-width: none;
}

ul, ol {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

img, picture, svg {
  max-width: 100%;
  display: block;
  /* Prevent image dragging without blocking pointer events */
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

input, button, textarea, select {
  font: inherit;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

body {
  font-family: "Helixa", sans-serif;
  background: #000000;
  color: white;
  /* Prevent horizontal page scrolling on mobile as well */
  overflow-x: clip;
  max-width: 100%;
}
@supports not (overflow: clip) {
  body {
    overflow-x: hidden;
  }
}

.fuzzy-overlay {
  position: fixed;
  inset: -200%;
  background-image: url("../assets/noise.svg");
  opacity: 11%;
  z-index: -10;
  pointer-events: none !important;
}
@media (max-width: 999px) {
  .fuzzy-overlay {
    display: none;
  }
}

.color-wrapper {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, rgb(41, 228, 41) 0%, rgb(111, 237, 111) 45%, rgb(199, 247, 110) 100%);
}

.nav-logo {
  position: absolute;
  top: 2rem;
  left: clamp(2rem, 4.166668vw, 4.6rem);
  z-index: 999;
  display: inline-block;
  background: transparent; /* Ensure nothing's blocking */
  isolation: isolate;
}
.nav-logo img {
  width: 3.5rem;
  height: auto;
  fill: rgb(255, 255, 255);
}

main {
  margin-block: clamp(3rem, 8.333336vw, 9.2rem);
}
@media (max-width: 690px) {
  main {
    margin-block: 0;
  }
}

#connect-btn {
  position: fixed;
  bottom: 2.5rem;
  right: 2rem;
  font-size: 1.5rem;
  padding: 0.75rem 1.5rem;
  --green: #72fd1b;
  letter-spacing: 0.06em;
  z-index: 100;
  backdrop-filter: blur(6px);
  font-family: inherit;
  border-radius: 0.6em;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  line-height: 1.5;
  border: 2px solid var(--green);
  color: var(--green);
  box-shadow: inset 0 0 6px rgba(83, 236, 23, 0.687), 0 0 4px 1px rgba(82, 214, 6, 0.1);
}
#connect-btn:hover {
  color: rgb(157, 222, 113);
  border: 2px solid rgb(146, 227, 92);
  box-shadow: inset 0 0 10px rgba(19, 186, 53, 0.6), 0 0 9px 3px rgba(27, 253, 57, 0.2);
}
#connect-btn:hover::before {
  transform: translateX(15em);
}
#connect-btn::before {
  content: "";
  position: absolute;
  left: -4em;
  width: 4em;
  height: 100%;
  top: 0;
  transition: transform 0.4s ease-in-out;
  background: linear-gradient(to right, transparent 1%, rgba(27, 253, 156, 0.1) 40%, rgba(27, 253, 156, 0.1) 60%, transparent 100%);
}

section + section { /* Default spacing between all sections */
  margin-top: 10rem;
}
@media (max-width: 690px) {
  section + section {
    margin-top: 8rem;
  }
}

.text-measure {
  max-width: 75%;
}
@media (max-width: 690px) {
  .text-measure {
    max-width: 100%;
  }
}

.vertical-margin {
  margin-top: clamp(2rem, 4.166668vw, 4.6rem);
}
@media (max-width: 999px) {
  .vertical-margin {
    margin-top: 2.5rem;
  }
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.78125025vw, 0.863rem);
}
.section-header h2 {
  max-width: clamp(320px, 50vw + 15%, 90%);
  line-height: 1.1;
}
@media (max-width: 690px) {
  .section-header h2 {
    max-width: 100%;
  }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  padding-inline: clamp(2rem, 4.166668vw, 4.6rem);
}
@media (max-width: 1240px) {
  .two-col {
    grid-template-columns: 1fr 0.2fr;
  }
}
@media (max-width: 999px) {
  .two-col {
    display: flex;
    flex-direction: column;
  }
}

.content-island {
  background-color: #000100;
  border-radius: 1.5rem;
  padding-inline: clamp(2rem, 4.166668vw, 4.6rem);
  padding-top: clamp(3rem, 8.333336vw, 9.2rem);
  padding-bottom: clamp(2rem, 4.166668vw, 4.6rem);
  position: relative;
  z-index: -2;
  margin-inline: auto;
  width: calc(100vw - clamp(0.75rem, 2.083334vw, 2.3rem));
  /* Drop Shadow with glossy effect */
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.06), inset 0 -2px 4px rgba(0, 0, 0, 0.7), inset 20px 0 40px -20px rgba(0, 0, 0, 0.3), inset -20px 0 40px -20px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.35);
  color: #e8e8e8;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(5, 35, 12, 0.4);
  position: relative;
}

.content-island::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255, 255, 255, 0.02) 1px, rgba(255, 255, 255, 0.02) 2px);
  pointer-events: none;
  border-radius: inherit;
  z-index: -1;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5625005vw, 1.725rem);
  max-width: 90%;
}
@media (max-width: 1240px) {
  .content-block {
    max-width: 85%;
    gap: 1.5rem;
  }
}
@media (max-width: 999px) {
  .content-block {
    max-width: 100%;
    gap: 1.5rem;
  }
}

.hero {
  min-height: 100dvh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(2rem, 4.166668vw, 4.6rem);
  padding-top: 3.25rem; /* Same as logo's size */
  overflow: hidden;
}
.hero h1 {
  font-size: clamp(2.6127rem, 2.2592rem + 1.6161vw, 3.8147rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.hero::after {
  content: "";
  inset: 0;
  background-image: url("/assets/hero-bg2.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  position: absolute;
  opacity: 0.8;
  filter: saturate(180%);
  /* Transparency mask */
  mask: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: fadeInUp 1.5s ease-out;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #64F764;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #64F764;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.5);
  animation: pulse 2s infinite;
}

.hero-description {
  font-size: clamp(1.26rem, 1.171rem + 0.4567vw, 1.75rem);
  line-height: 1.5;
  color: rgba(239, 243, 232, 0.9);
  margin-bottom: 3rem;
  font-weight: 400;
}

.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Realistic Button Design */
.btn {
  position: relative;
  padding: 1rem 2rem;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  /* Realistic depth and shadows */
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(0deg);
}

/* Primary button - Green accent */
.btn-primary {
  background: linear-gradient(90deg, rgb(41, 228, 41) 0%, rgb(111, 237, 111) 45%, rgb(199, 247, 110) 100%);
  color: #04120b;
  font-size: 1.25rem;
  line-height: 1;
  box-shadow: 0 2px 4px rgba(74, 222, 128, 0.3), 0 1px 3px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.35s;
}

.btn-primary:hover {
  filter: saturate(140%);
  transform: perspective(1000px) rotateX(5deg) translateY(-2px);
  box-shadow: 0 3px 8px rgba(74, 222, 128, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

/* Secondary button - Dark with border */
.btn-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  color: #fff;
  border: 1px solid rgba(74, 222, 128, 0.3);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
  font-size: 1.25rem;
  line-height: 1;
  transition: all 0.35s;
}

.btn-secondary:hover {
  background: linear-gradient(180deg, rgba(232, 225, 225, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
  border-color: rgba(74, 222, 128, 0.75);
  transform: perspective(1000px) rotateX(5deg) translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -2px 0 rgba(0, 0, 0, 0.2), 0 0 20px rgba(74, 222, 128, 0.1);
  backdrop-filter: blur(15px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-intro {
  padding-inline: clamp(2rem, 4.166668vw, 4.6rem);
  width: 90%;
}
.about-intro h2 {
  font-size: clamp(2.6127rem, 2.2592rem + 1.6161vw, 3.8147rem);
  line-height: 1.15;
  font-weight: 400;
  margin-top: 1rem;
}
@media (max-width: 690px) {
  .about-intro {
    width: 100%;
  }
  .about-intro h2 {
    font-size: 2.15rem;
  }
}

.media-wrapper {
  width: 100%;
  margin-top: 1rem;
  position: relative;
}
@media (max-width: 1240px) {
  .media-wrapper {
    display: none !important;
  }
}
.media-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgb(11, 190, 65) 0%, rgba(58, 232, 142, 0.9) 45%, rgba(214, 255, 6, 0.8) 100%);
  mix-blend-mode: overlay;
  background-size: 400% 200%;
  animation: gradientWave 3s ease-in-out infinite;
  pointer-events: none;
}
.media-wrapper img {
  width: 100%;
  height: 90%;
  background-color: transparent;
}
@keyframes gradientWave {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

#about-video {
  object-fit: contain;
  width: 100%;
  height: auto;
  /* This makes black transparent */
  mix-blend-mode: lighten;
  filter: contrast 1.1 saturate(90%);
  /* Add vertical gradient mask (more visible at top, fades at bottom) */
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0));
}

.services-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto auto;
  gap: clamp(0.75rem, 2.083334vw, 2.3rem);
  margin-top: clamp(2rem, 4.166668vw, 4.6rem);
}
@media (max-width: 999px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: clamp(0.75rem, 2.083334vw, 2.3rem);
  }
}

.service-card--vertical {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #000000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 6px 20px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(9, 74, 35, 0.25), inset 0 1px 0 rgba(0, 201, 67, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.5);
  background: #000000;
  --gap: 5em;
  --line: 1px;
  --color: hsla(120, 90%, 68%, 0.25);
  background-image: linear-gradient(-90deg, transparent calc(var(--gap) - var(--line)), var(--color) calc(var(--gap) - var(--line) + 1px), var(--color) var(--gap)), linear-gradient(0deg, transparent calc(var(--gap) - var(--line)), var(--color) calc(var(--gap) - var(--line) + 1px), var(--color) var(--gap));
  background-size: var(--gap) var(--gap);
  display: flex;
  flex-direction: column;
  justify-content: end;
  grid-column: span 1;
  height: 55vh;
  padding: clamp(1rem, 3.125001vw, 3.45rem);
}
.service-card--vertical .service-bio {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(0.167rem, 0.5208335vw, 0.575rem);
  max-width: 90%;
  z-index: 2;
}
.service-card--vertical .service-bio .service-icon {
  display: inline-flex;
  justify-content: center;
  width: 3.25rem;
  margin-bottom: clamp(0.25rem, 0.78125025vw, 0.863rem);
}
.service-card--vertical .service-bio .service-icon svg {
  width: 3.25rem;
  height: auto;
  fill: #95e152;
}
@media (max-width: 690px) {
  .service-card--vertical .service-bio .service-icon svg {
    width: 2.5rem;
    margin-bottom: clamp(0.35rem, 1.041667vw, 1.15rem);
    padding-top: clamp(1rem, 3.125001vw, 3.45rem);
  }
}
@media (max-width: 999px) {
  .service-card--vertical {
    height: 400px;
    padding: 2rem;
  }
  .service-card--vertical .service-bio {
    gap: clamp(0.5rem, 1.5625005vw, 1.725rem);
  }
}
@media (max-width: 690px) {
  .service-card--vertical {
    height: auto;
    padding: 2rem;
  }
}

.industries {
  padding: clamp(2rem, 4.166668vw, 4.6rem);
}
@media (max-width: 690px) {
  .industries {
    padding-right: 0;
  }
}

.separator {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media (max-width: 690px) {
  .separator {
    justify-content: flex-start;
  }
}

.slider-nav {
  display: flex;
  gap: clamp(0.35rem, 1.041667vw, 1.15rem);
}
@media (max-width: 999px) {
  .slider-nav {
    display: none;
  }
}

.slider-wrapper {
  width: 100%;
  /* Prevent the slider from expanding the page width on mobile
     while still allowing vertical overflow for shadows/overlays. */
  touch-action: pan-y;
}
@supports not (overflow: clip) {
  .slider-wrapper {
    overflow-x: hidden;
  }
}
@media (max-width: 690px) {
  .slider-wrapper {
    overflow-x: hidden;
  }
}

.card-slider {
  display: flex;
  gap: clamp(0.35rem, 1.041667vw, 1.15rem);
  user-select: none;
  width: fit-content;
}

.is-dragging * {
  cursor: grabbing;
}

@media (max-width: 690px) {
  .card-slider {
    gap: 1rem;
  }
}
.industry-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 370px;
  aspect-ratio: 4/5;
  border: 1px solid rgb(55, 128, 0);
  overflow: hidden;
  background-size: cover;
  background-position: right center;
  border-radius: 0.75rem;
}
.industry-card[data-industry=telecommunications] {
  background-image: url("../assets/media.jpg");
}
.industry-card[data-industry=manufacturing] {
  background-image: url("../assets/manufacturing2.jpg");
}
.industry-card[data-industry=finance] {
  background-image: url("../assets/finance.jpg");
}
.industry-card[data-industry=aviation] {
  background-image: url("../assets/aviation.jpg");
}
.industry-card[data-industry=retail] {
  background-image: url("../assets/retail.jpg");
}
.industry-card[data-industry=supply-chain] {
  background-image: url("../assets/supply-chain2.jpg");
}
.industry-card__bio {
  position: relative;
  padding: clamp(0.5rem, 1.5625005vw, 1.725rem);
}
.industry-card__bio::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 11;
  background-color: rgba(0, 6, 4, 0.1882352941);
  width: 100%;
  height: 125%;
  -webkit-filter: blur(8px);
  filter: blur(10px);
  transform: translateY(0.25rem);
}
.industry-card__bio h3 {
  font-size: 2.2rem;
  color: #f2fddb;
  font-weight: 400;
  position: relative;
  z-index: 11;
  text-shadow: 1px 1.5px 0 rgba(0, 0, 0, 0.509);
}
@media (max-width: 999px) {
  .industry-card__bio h3 {
    font-size: 2rem;
  }
}
@media (max-width: 690px) {
  .industry-card__bio h3 {
    font-size: 1.65rem;
  }
}
.industry-card__bio h3.industry-title {
  display: block;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}
@media (max-width: 690px) {
  .industry-card__bio h3.industry-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
@media (max-width: 999px) {
  .industry-card__bio {
    padding: 1.5rem;
  }
}
@media (max-width: 999px) {
  .industry-card {
    max-width: 320px;
  }
}
@media (max-width: 690px) {
  .industry-card {
    width: min(88vw, 340px);
    max-width: none;
  }
}

.testimonials {
  padding-inline: clamp(2.5rem, 6.250002vw, 6.9rem);
}

.testimonial-body {
  display: flex;
  flex-direction: column;
  width: 85%;
  margin-top: clamp(2rem, 4.166668vw, 4.6rem);
  gap: clamp(1rem, 3.125001vw, 3.45rem);
}
.testimonial-body blockquote {
  font-size: clamp(2.6127rem, 2.2592rem + 1.6161vw, 3.8147rem);
  line-height: 1.2;
  font-weight: 400;
  background: linear-gradient(90deg, rgb(98, 244, 129) 0%, rgb(76, 237, 84) 35%, rgb(158, 250, 97) 64%, rgba(153, 240, 23, 0.9) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.testimonial-body blockquote::before {
  content: '"';
  position: absolute;
  left: -1rem;
}
@media (max-width: 999px) {
  .testimonial-body blockquote {
    font-size: clamp(2.1773rem, 1.9201rem + 1.1758vw, 3.0518rem);
  }
}
@media (max-width: 690px) {
  .testimonial-body blockquote {
    font-size: clamp(1.8144rem, 1.63rem + 0.843vw, 2.4414rem);
  }
}
.testimonial-body cite .person-name {
  color: #fff;
  font-size: clamp(1.26rem, 1.171rem + 0.4567vw, 1.75rem);
  font-weight: 600;
  color: #EDFFE0;
}
.testimonial-body cite .person-name::before {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #4de8c2;
  border-radius: 50%;
  margin-right: 0.75rem;
}
@media (max-width: 999px) {
  .testimonial-body {
    gap: clamp(2rem, 4.166668vw, 4.6rem);
  }
}
@media (max-width: 690px) {
  .testimonial-body {
    width: 100%;
  }
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1rem, 3.125001vw, 3.45rem);
}
.logo-container .testimonials-logo {
  width: 14rem;
  height: auto;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}
@media (max-width: 999px) {
  .logo-container .testimonials-logo {
    width: 10rem;
  }
}
@media (max-width: 690px) {
  .logo-container .testimonials-logo {
    display: none;
  }
}
.logo-container .testimonials-logo.active {
  opacity: 1;
}

.faqs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  padding-inline: clamp(2rem, 4.166668vw, 4.6rem);
  margin-top: clamp(5.5rem, 16.666672vw, 18.4rem);
}
@media (max-width: 1240px) {
  .faqs {
    gap: 2rem;
  }
}
@media (max-width: 690px) {
  .faqs {
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    margin-top: 10rem;
  }
}

.faq-item {
  position: relative;
  border-bottom: 1px solid #d6fad3;
  padding-block: clamp(0.75rem, 2.083334vw, 2.3rem);
  transition: padding 0.3s ease, background-color 0.3s ease;
  /* When active, rotate to turn faq-btn into an X*/
}
.faq-item:first-child {
  border-top: 1px solid #d6fad3;
}
.faq-item .faq-question {
  display: flex;
  align-items: center;
  color: #afe7a9;
  cursor: pointer;
  gap: 2rem;
  font-size: clamp(1.26rem, 1.171rem + 0.4567vw, 1.75rem);
  font-weight: 400;
  justify-content: space-between;
  width: 100%;
}
.faq-item.active .faq-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.faq-item.active .faq-btn::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media (max-width: 999px) {
  .faq-item {
    padding-block: 2rem;
  }
}
@media (max-width: 690px) {
  .faq-item {
    padding-block: 1.25rem;
  }
}

.faq-btn {
  align-items: center;
  border-radius: 4px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  position: relative;
  width: 2rem;
}
.faq-btn::before, .faq-btn::after {
  background-color: #89e780;
  content: "";
  position: absolute;
  transform-origin: center;
  transition: transform 0.3s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-btn::before {
  height: 2px;
  width: 20px;
  transform: translate(-50%, -50%);
}
.faq-btn::after {
  height: 20px;
  width: 2px;
  transform: translate(-50%, -50%);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease-out;
}
.faq-answer p {
  margin-top: 1rem;
  font-size: 1.35rem;
  line-height: 1.4;
  color: #EDFFE0;
}

.site-footer {
  background-color: rgb(0, 0, 0);
  background-image: url("/assets/footer-bg2.png");
  /* Subtle brightness adjustment to enhance pattern visibility */
  background-size: cover; /* Exact dimensions */
  background-position: left 90%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  margin-top: 10rem;
  margin-bottom: clamp(2rem, 4.166668vw, 4.6rem);
  height: auto;
  width: 95%;
  border-radius: 1.5rem;
  padding-top: 4.5rem;
  padding-bottom: clamp(0.5rem, 1.5625005vw, 1.725rem);
  padding-inline: clamp(1rem, 3.125001vw, 3.45rem);
  border: 1px solid #64F764;
}
@media (max-width: 999px) {
  .site-footer {
    padding-top: 3rem;
    padding-inline: 2rem;
    padding-bottom: 1rem;
  }
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3.5rem;
}
@media (max-width: 999px) {
  .footer-main {
    padding-right: clamp(0.75rem, 2.083334vw, 2.3rem);
    flex-direction: column;
  }
}
.footer-main .footer-logo {
  width: 300px;
  justify-self: center;
}
@media (max-width: 690px) {
  .footer-main .footer-logo {
    width: 240px;
  }
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: clamp(0.35rem, 1.041667vw, 1.15rem);
  max-width: 500px;
}
@media (max-width: 999px) {
  .footer-right {
    max-width: 550px;
  }
}
.footer-right h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #CFFFCC;
}
@media (max-width: 999px) {
  .footer-right h2 {
    line-height: 1.25;
    margin-bottom: 0.25rem;
    font-size: 1.9rem;
  }
}
@media (max-width: 690px) {
  .footer-right h2 {
    font-size: 1.6rem;
    line-height: 1.25;
  }
}
.footer-right .description {
  font-size: 1.3rem;
  line-height: 1.5;
  max-width: clamp(95%, 30vw, 100%);
  margin-bottom: clamp(0.5rem, 1.5625005vw, 1.725rem);
}
@media (max-width: 999px) {
  .footer-right .description {
    color: #eefae6;
    font-size: 1.4rem;
    margin-bottom: clamp(2rem, 4.166668vw, 4.6rem);
  }
}
@media (max-width: 690px) {
  .footer-right .description {
    font-size: 1.15rem;
    max-width: 100%;
  }
}
@media (max-width: 690px) {
  .footer-right {
    width: 100%;
    gap: clamp(0.75rem, 2.083334vw, 2.3rem);
  }
}

.email-form {
  position: relative;
  margin-bottom: clamp(1rem, 3.125001vw, 3.45rem);
  max-width: 420px;
}
.email-form .email-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px dashed rgba(66, 168, 2, 0.7);
  padding-bottom: 1rem;
  letter-spacing: 1.5px;
  color: #CFFFCC;
  font-size: 1rem;
  outline: none;
}
.email-form .email-input::placeholder {
  color: #64F764;
  font-size: 0.9rem;
  font-weight: 600;
}
.email-form .email-input:focus {
  border-bottom: 1px solid rgb(66, 168, 2);
}
.email-form .submit-btn {
  position: absolute;
  right: 0;
  bottom: 6px;
  background-color: transparent;
  color: #64F764;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.email-form .submit-btn:hover {
  background-color: rgba(100, 247, 100, 0.1);
}
.email-form .submit-btn svg {
  width: 16px;
  height: 16px;
  stroke: #64F764;
}
@media (max-width: 999px) {
  .email-form {
    margin-bottom: clamp(2rem, 4.166668vw, 4.6rem);
  }
}

.socials {
  margin-bottom: 4rem;
}
.socials-title {
  color: #abb2ab;
  opacity: 1;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  margin-bottom: clamp(0.35rem, 1.041667vw, 1.15rem);
  font-weight: 600;
  text-transform: uppercase;
}
.socials .social-links {
  display: grid;
  grid-template-columns: repeat(2, 120px);
  grid-gap: clamp(0.25rem, 0.78125025vw, 0.863rem);
}
@media (max-width: 690px) {
  .socials .social-links {
    grid-gap: clamp(0.5rem, 1.5625005vw, 1.725rem);
  }
}
.socials .social-links a {
  color: #EDFFE0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.socials .social-links a:hover {
  opacity: 1;
}
.socials .social-links a svg {
  margin-bottom: 2.5px;
  width: 1.25rem;
  height: 1.25rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: last baseline;
  text-transform: uppercase;
  color: rgb(206, 206, 206);
  margin-top: auto;
  font-size: clamp(0.7392rem, 0.7183rem + 0.0952vw, 0.8rem);
  letter-spacing: 1px;
  font-weight: 600;
  opacity: 0.75;
}
.footer-legal a {
  margin-right: clamp(0.75rem, 2.083334vw, 2.3rem);
}
.footer-legal small {
  font-size: clamp(0.7392rem, 0.7183rem + 0.0952vw, 0.8rem);
}

@media (max-height: 450px) and (orientation: landscape) {
  .hero-content {
    margin-top: 6rem;
  }
  main {
    margin-block: 8rem;
  }
  .slider-wrapper {
    max-width: 100%;
    overflow-x: clip;
    contain: layout;
  }
}

/*# sourceMappingURL=main.css.map */
