@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/BebasNeue-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('./fonts/Inter-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/Inter-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./fonts/Inter-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./fonts/Inter-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./fonts/Inter-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('./fonts/Roboto-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/Roboto-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./fonts/Roboto-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./fonts/Roboto-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./fonts/Roboto-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Sofia Sans Condensed';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/SofiaSansCondensed-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Sofia Sans Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./fonts/SofiaSansCondensed-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Sofia Sans Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./fonts/SofiaSansCondensed-700.woff2') format('woff2');
}

:root {
  /* Fonts */
  --font-navatech-roboto: 'Roboto', 'Inter', sans-serif;
  --font-navatech-inter: 'Inter', 'Roboto', sans-serif;
  --font-navatech-bebas: 'Bebas Neue', 'Roboto', sans-serif;

  /* Theme & Brand Colors */
  --navatech-primary-color: #1e1e2d;
  --navatech-secondary-color: #7e7e95;
  --navatech-orange-color: #ee7e2f;
  --navatech-orange-bright: #f27024;
  --navatech-green-color: #25d467;
  --navatech-yellow-color: #ffe500;
  --navatech-blue-color: #4b73ca;
  --navatech-blue-alt: #456d9b;
  --navatech-purple-color: #604fa0;
  --navatech-dark-blue: #1d2348;
  --navatech-lavender-color: #a9aae0;

  /* Neutral Colors & Backgrounds */
  --navatech-black-bg: #000000;
  --navatech-white-bg: #ffffff;
  --navatech-gray-bg: #f4f4f4;
  --navatech-border-color: #d9d9d9;

  /* Layout */
  --navatech-container-max-width: 1600px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
a {
  margin: 0;
}

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

a:hover {
  color: inherit;
  text-decoration: underline;
}

.navatech-ai a.frame-96:hover {
  text-decoration: none;
}

img {
  display: inline-block;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100%;
}

/* ==========================================================================
   COMMON TYPOGRAPHY & UTILITY CLASSES
   ========================================================================== */

/* Font Family Utilities */
.navatech-ai .navatech-font-roboto {
  font-family: var(--font-navatech-roboto);
}

.navatech-ai .navatech-font-inter {
  font-family: var(--font-navatech-inter);
}

.navatech-ai .navatech-font-bebas {
  font-family: var(--font-navatech-bebas);
}

@media screen and (max-width: 768px) {
  .navatech-ai .whitespace-nowrap {
    white-space: nowrap;
  }
}

/* Font Weight Utilities */
.navatech-ai .navatech-font-light,
.navatech-ai .navatech-fw-300 {
  font-weight: 300;
}

.navatech-ai .navatech-font-regular,
.navatech-ai .navatech-fw-400 {
  font-weight: 400;
}

.navatech-ai .navatech-font-medium,
.navatech-ai .navatech-fw-500 {
  font-weight: 500;
}

.navatech-ai .navatech-font-semibold,
.navatech-ai .navatech-fw-600 {
  font-weight: 600;
}

.navatech-ai .navatech-font-bold,
.navatech-ai .navatech-fw-700 {
  font-weight: 700;
}

/* Font Size Utilities */
.navatech-ai .navatech-font-14,
.navatech-ai .navatech-fs-14 {
  font-size: 14px;
}

.navatech-ai .navatech-font-16,
.navatech-ai .navatech-fs-16 {
  font-size: 16px;
}

.navatech-ai .navatech-font-18,
.navatech-ai .navatech-fs-18 {
  font-size: 18px;
}

.navatech-ai .navatech-font-20,
.navatech-ai .navatech-fs-20 {
  font-size: 20px;
}

.navatech-ai .navatech-font-22,
.navatech-ai .navatech-fs-22 {
  font-size: 22px;
}

.navatech-ai .navatech-font-24,
.navatech-ai .navatech-fs-24 {
  font-size: 24px;
}

.navatech-ai .navatech-font-26,
.navatech-ai .navatech-fs-26 {
  font-size: 26px;
}

.navatech-ai .navatech-font-28,
.navatech-ai .navatech-fs-28 {
  font-size: 28px;
}

.navatech-ai .navatech-font-30,
.navatech-ai .navatech-fs-30 {
  font-size: 30px;
}

.navatech-ai .navatech-font-36,
.navatech-ai .navatech-fs-36 {
  font-size: 36px;
}

.navatech-ai .navatech-font-42,
.navatech-ai .navatech-fs-42 {
  font-size: 42px;
}

.navatech-ai .navatech-font-50,
.navatech-ai .navatech-fs-50 {
  font-size: 50px;
}

.navatech-ai .navatech-font-60,
.navatech-ai .navatech-fs-60 {
  font-size: 60px;
}

.navatech-ai .navatech-font-70,
.navatech-ai .navatech-fs-70 {
  font-size: 70px;
}

/* Text Color Utilities */
.navatech-ai .navatech-primary-color,
.navatech-ai .navatech-text-primary {
  color: var(--navatech-primary-color);
}

.navatech-ai .navatech-secondary-color,
.navatech-ai .navatech-text-secondary {
  color: var(--navatech-secondary-color);
}

.navatech-ai .navatech-orange-color,
.navatech-ai .navatech-text-orange {
  color: var(--navatech-orange-color);
}

.navatech-ai .navatech-green-color,
.navatech-ai .navatech-text-green {
  color: var(--navatech-green-color);
}

.navatech-ai .navatech-yellow-color,
.navatech-ai .navatech-text-yellow {
  color: var(--navatech-yellow-color);
}

.navatech-ai .navatech-blue-color,
.navatech-ai .navatech-text-blue {
  color: var(--navatech-blue-color);
}

.navatech-ai .navatech-purple-color,
.navatech-ai .navatech-text-purple {
  color: var(--navatech-purple-color);
}

.navatech-ai .navatech-white-color,
.navatech-ai .navatech-text-white {
  color: var(--navatech-white-bg);
}

.navatech-ai .navatech-black-color,
.navatech-ai .navatech-text-black {
  color: var(--navatech-black-bg);
}

/* Background Color & Gradient Utilities */
.navatech-ai .navatech-white-bg,
.navatech-ai .navatech-bg-white {
  background-color: var(--navatech-white-bg);
}

.navatech-ai .navatech-black-bg,
.navatech-ai .navatech-bg-black {
  background-color: var(--navatech-black-bg);
}

.navatech-ai .navatech-gray-bg,
.navatech-ai .navatech-bg-gray {
  background-color: var(--navatech-gray-bg);
}

.navatech-ai .navatech-bg-primary {
  background-color: var(--navatech-primary-color);
}

.navatech-ai .navatech-bg-secondary {
  background-color: var(--navatech-secondary-color);
}

.navatech-ai .navatech-bg-orange {
  background-color: var(--navatech-orange-color);
}

.navatech-ai .navatech-bg-gradient-purple {
  background: linear-gradient(
    180deg,
    var(--navatech-dark-blue) 0%,
    var(--navatech-purple-color) 50%,
    var(--navatech-lavender-color) 100%
  );
}

.navatech-ai .navatech-bg-gradient-orange {
  background: linear-gradient(
    180deg,
    var(--navatech-blue-alt) 0%,
    var(--navatech-orange-color) 100%
  );
}

.navatech-ai .navatech-bg-gradient-pill {
  background: linear-gradient(
    90deg,
    var(--navatech-orange-bright) 0%,
    var(--navatech-blue-color) 100%
  );
}

/* Border Utilities */
.navatech-ai .navatech-border-default {
  border-color: var(--navatech-border-color);
}

/* Container Utility */
.navatech-ai .navatech-container {
  width: 100%;
  max-width: var(--navatech-container-max-width);
  margin: 0 auto;
}

/* ==========================================================================
   00. GLOBAL & CONTAINER STYLES
   ========================================================================== */

.navatech-ai {
  background-color: #ffffff;
  width: 100%;
  max-width: 100%;
  max-width: 1600px;
  min-width: 0;
  min-height: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-x: clip;
  box-sizing: border-box;
}

.navatech-ai .frame {
  display: flex;
  margin: 30px auto 0 auto;
  width: 100%;
  max-width: 100%;
  max-width: 1600px;
  height: auto;
  min-height: 0;
  position: relative;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
}

.navatech-ai .div-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

/* ==========================================================================
   01. HERO SECTION (#hero-section)
   ========================================================================== */

.navatech-ai .group {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 1034px;
  border-radius: 30px;
  overflow: hidden;
}

.navatech-ai .safety-body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* border-radius: 30px; */
  object-fit: cover;
}

.navatech-ai .image {
  position: absolute;
  top: 120px;
  left: 45%;
  transform: translateX(-50%);
  width: auto;
  max-width: 986px;
  max-height: 914px;
  height: 100%;
  width: 100%;
}

.navatech-ai .img {
  position: absolute;
  top: 60px;
  left: 60px;
  width: 218px;
  height: 80px;
}

.navatech-ai .overview-badges-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 24px;
}

.navatech-ai .overview-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background-color: #f4f5f8;
  border: 1px solid #e2e4e9;
  border-radius: 100px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  font-size: 22px;
  line-height: 1.4;
  box-sizing: border-box;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.navatech-ai .overview-badge-item .badge-label {
  color: #62646a;
  font-weight: 400;
}

.navatech-ai .overview-badge-item .badge-value {
  color: #1a1a2e;
  font-weight: 600;
}
.navatech-ai .frame-38:hover {
  display: inline-flex;
  cursor: pointer;
  text-decoration: none !important;
}

.navatech-ai .div,
.navatech-ai p.div {
  position: relative;
  width: fit-content;
  margin: 0 !important;
  margin-top: -1px !important;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: transparent;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.navatech-ai .text-wrapper {
  color: #ffffff;
}

.navatech-ai .span {
  font-weight: 600;
  color: #ffffff;
}

/* ==========================================================================
   02. OVERVIEW & KEY HIGHLIGHTS (#at-a-glance-header)
   ========================================================================== */

.navatech-ai .frame-2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
  gap: 100px;
  padding: 120px 0px;
  position: relative;
  flex: 0 0 auto;
}

.navatech-ai .frame-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  padding: 0px 120px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.navatech-ai .text-wrapper-2 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #1e1e2d;
  font-size: 60px;
  letter-spacing: 0;
  line-height: 100%;
}

.navatech-ai .p {
  position: relative;
  align-self: stretch;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: transparent;
  font-size: 30px;
  letter-spacing: 0;
  line-height: 42px;
}

.navatech-ai .text-wrapper-3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #ee7e2f;
  line-height: 42px;
  letter-spacing: 0;
}

.navatech-ai .text-wrapper-4 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 30px;
  color: #7e7e95;
  line-height: 42px;
  letter-spacing: 0;
}

.navatech-ai .text-wrapper-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  color: #ee7e2f;
  line-height: 42px;
  letter-spacing: 0;
}

.navatech-ai .frame-4 {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.navatech-ai .frame-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 30px;
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(29, 35, 72, 1) 0%,
    rgba(96, 79, 160, 1) 50%,
    rgba(169, 170, 224, 1) 100%
  );
}

.navatech-ai .img-2 {
  position: relative;
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  max-width: 60px;
  max-height: 60px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.navatech-ai .div-2 {
  position: relative;
  align-self: stretch;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: transparent;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 24px;
}

.navatech-ai .text-wrapper-6 {
  color: #ffffff;
  line-height: 34px;
}

.navatech-ai .text-wrapper-7 {
  color: #25d467;
  line-height: 34px;
}

.navatech-ai .frame-6 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 30px;
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(69, 109, 179, 1) 0%,
    rgba(238, 126, 47, 1) 100%
  );
}

.navatech-ai .frame-7 {
  display: flex;
  flex-direction: column;
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  max-width: 60px;
  max-height: 60px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 4px;
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  box-sizing: border-box;
}

.navatech-ai .text-wrapper-8 {
  position: relative;
  width: fit-content;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  color: #ee7e2f;
  font-size: 28px;
  letter-spacing: 0;
  line-height: 34px;
  white-space: nowrap;
}

.navatech-ai .text-wrapper-9 {
  color: #ffe500;
  line-height: 34px;
}

/* ==========================================================================
   03. STICKY PILL NAVIGATION BAR (#sticky-pill-navigation)
   ========================================================================== */

.navatech-ai .frame-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 0 20px 0;
  position: -webkit-sticky;
  /* position: sticky; */
  top: 90px;
  z-index: 1050;
  align-self: stretch;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  flex: 0 0 auto;
}

.navatech-ai .frame-8 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 6px;
  position: relative;
  align-self: stretch;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  flex: 0 0 auto;
  background-color: #000000;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.navatech-ai .frame-8::-webkit-scrollbar {
  display: none;
}

.navatech-ai .frame-9 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  border-radius: 999px;
  background: linear-gradient(252.45deg, #456db3 35.82%, #ee7e2f 62.66%);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(242, 112, 36, 0.35);
  flex-shrink: 0;
}

.navatech-ai .frame-10 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.navatech-ai .frame-10:hover {
  background: rgba(255, 255, 255, 0.12);
}

.navatech-ai .text-wrapper-10,
.navatech-ai .text-wrapper-11 {
  position: relative;
  width: fit-content;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}

.navatech-ai .frame-9 .text-wrapper-10,
.navatech-ai .frame-9 .text-wrapper-11 {
  font-weight: 600;
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navatech-ai .frame-11 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0px;
  box-sizing: border-box;
  scroll-margin-top: 140px;
  flex: 0 0 auto;
}

@media screen and (max-width: 768px) {
  .navatech-ai .frame-11 {
    padding: 0;
    gap: 15px;
  }
}

.navatech-ai .group-2 {
  position: relative;
  width: 100%;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  box-sizing: border-box;
}

.navatech-ai .frame-12 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
  gap: 10px;
  padding: 60px 80px;
  position: relative;
  background-color: #f4f4f4;
  border-radius: 30px;
  box-sizing: border-box;
}

.navatech-ai .frame-13 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1300px;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
  box-sizing: border-box;
}

.navatech-ai .frame-14 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.navatech-ai .frame-15 {
  display: flex;
  align-items: flex-start;
  padding: 24px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: #d9d9d9;
}

.navatech-ai .text-wrapper-12 {
  position: relative;
  width: 320px;
  flex-shrink: 0;
  margin-top: -1px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #1e1e2d;
  font-size: 20px;
  letter-spacing: 0;
  line-height: normal;
}

.navatech-ai .frame-16 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 100px;
}

.navatech-ai .frame-16:hover .text-wrapper-13,
.navatech-ai .frame-18:hover .text-wrapper-14,
.navatech-ai a.frame-67:hover .text-wrapper-41 {
  text-decoration: underline;
}

.navatech-ai .text-wrapper-13 {
  margin-top: -1px;
  color: #ee7e2f;
  font-size: 20px;
  position: relative;
  width: fit-content;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .navatech-ai .text-wrapper-13 {
    font-size: 16px;
  }
}

.navatech-ai .linear-arrows-arrow {
  position: relative;
  width: 20px;
  height: 20px;
}

.navatech-ai .frame-17 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  width: 100%;
}

.navatech-ai .frame-18 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  position: relative;
  background-color: #ffffff;
  border-radius: 100px;
  flex-shrink: 0;
}

.navatech-ai .image-2 {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  object-fit: cover;
}

.navatech-ai .frame-19 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  position: relative;
}

.navatech-ai .text-wrapper-14 {
  position: relative;
  margin-top: -1px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #ee7e2f;
  font-size: 20px;
  letter-spacing: 0;
  line-height: normal;
}

.navatech-ai .text-wrapper-15 {
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #7e7e95;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

.navatech-ai .image-3 {
  position: relative;
  width: 50px;
  height: 50px;
}

.navatech-ai .text-wrapper-16 {
  position: relative;
  flex: 1;
  margin-top: -1px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #7e7e95;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.5;
  white-space: normal;
}

.navatech-ai .text-wrapper-18 {
  font-weight: 600;
  color: #ee7e2f;
}

.navatech-ai .text-wrapper-19 {
  color: #7e7e95;
}

.navatech-ai .frame-20 {
  display: flex;
  align-items: flex-start;
  padding: 24px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.navatech-ai .frame-21 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
  gap: 22px;
  position: relative;
  flex: 0 0 auto;
  box-sizing: border-box;
}

.navatech-ai .frame-22 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 36px 24px;
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(29, 35, 72, 1) 0%,
    rgba(96, 79, 160, 1) 50%,
    rgba(169, 170, 224, 1) 100%
  );
}

.navatech-ai .frame-23 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.navatech-ai .text-wrapper-20 {
  width: fit-content;
  color: #ffffff;
  white-space: nowrap;
  position: relative;
  margin-top: -1px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 60px;
  letter-spacing: 0;
  line-height: normal;
}

.navatech-ai .text-wrapper-21 {
  position: relative;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.3;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ==========================================================================
   05. WHY THIS HAD TO BE BUILT (#why-this-mattered)
   ========================================================================== */

.navatech-ai .frame-24 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 120px;
  position: relative;
  flex: 0 0 auto;
  box-sizing: border-box;
  scroll-margin-top: 140px;
}

.navatech-ai .why-this-had-to-be {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #1e1e2d;
  font-size: 60px;
  letter-spacing: 0;
  line-height: 1.2;
}

.navatech-ai .text-wrapper-22 {
  color: #1e1e2d;
}

.navatech-ai .text-wrapper-24 {
  color: #7e7e95;
}

/* ==========================================================================
   06. THE CHALLENGE SECTION (#the-challenge-section)
   ========================================================================== */

.navatech-ai .frame-25 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
  gap: 10px;
  padding: 80px 30px 30px;
  position: relative;
  flex: 0 0 auto;
  background-color: #f4f4f4;
  border-radius: 30px;
  box-sizing: border-box;
  scroll-margin-top: 140px;
}

.navatech-ai .frame-26 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1480px;
  align-items: center;
  gap: 50px;
  position: relative;
  flex: 0 0 auto;
  box-sizing: border-box;
  padding: 0 !important;
}

.navatech-ai .text-wrapper-25 {
  text-align: center;
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #1e1e2d;
  font-size: 60px;
  letter-spacing: 0;
  line-height: 1.2;
}

.navatech-ai .frame-27 {
  flex-direction: column;
  gap: 20px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  position: relative;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .navatech-ai .frame-27 {
    gap: 10px;
  }
}

.navatech-ai .frame-28 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  position: relative;
  box-sizing: border-box;
}

.navatech-ai .frame-29,
.navatech-ai .frame-31 {
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 24px;
  display: flex;
  align-items: flex-start;
  position: relative;
  box-sizing: border-box;
}

.navatech-ai .frame-30,
.navatech-ai .frame-32 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.navatech-ai .text-wrapper-26 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #1e1e2d;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.3;
}

.navatech-ai .text-wrapper-27,
.navatech-ai .text-wrapper-28 {
  position: relative;
  align-self: stretch;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #7e7e95;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 32px;
}

/* ==========================================================================
   07. CLIENT TESTIMONIAL & QUOTE (#client-quote-section)
   ========================================================================== */

.navatech-ai .frame-33 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 30px;
  padding: 100px 0px;
  position: relative;
  box-sizing: border-box;
  scroll-margin-top: 140px;
}

.navatech-ai .frame-34 {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  width: 100%;
  gap: 30px;
  box-sizing: border-box;
}

.navatech-ai .group-3 {
  position: relative;
  width: 480px;
  height: 560px;
  border-radius: 30px;
  overflow: hidden;
  flex-shrink: 0;
  box-sizing: border-box;
}

.navatech-ai .testimonial-client-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.navatech-ai .frame-35 {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  width: calc(100% - 48px);
  padding: 16px 20px;
  background-color: #ffffff;
  border-radius: 16px;
  box-sizing: border-box;
}

.navatech-ai .frame-36 {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.navatech-ai .group-4 {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
}

.navatech-ai .frame-37 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.navatech-ai .text-wrapper-29 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #1e1e2d;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0;
}

.navatech-ai .group-5 {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 50px;
  border-radius: 30px;
  background: linear-gradient(180deg, #456db3 0%, #ee7e2f 100%);
  overflow: hidden;
  box-sizing: border-box;
  min-height: 560px;
}

.navatech-ai .rectangle {
  display: none;
}

.navatech-ai .image-4 {
  position: relative;
  top: auto;
  left: auto;
  width: 59px;
  height: 50px;
  margin-bottom: 30px;
}

.navatech-ai .rectangle-2 {
  position: absolute;
  top: auto;
  bottom: 0;
  right: 60px;
  width: 154px;
  height: 105px;
  background-color: #ffffff;
  border-radius: 20px 20px 0px 0px;
  opacity: 0.1;
  pointer-events: none;
}

.navatech-ai .rectangle-3 {
  position: absolute;
  top: 0;
  right: 120px;
  width: 130px;
  height: 100px;
  background-color: #ffffff;
  border-radius: 0px 0px 20px 20px;
  opacity: 0.1;
  pointer-events: none;
}

.navatech-ai .rectangle-4 {
  position: absolute;
  bottom: 120px;
  left: 280px;
  width: 84px;
  height: 84px;
  background-color: #ffffff;
  border-radius: 14px;
  opacity: 0.1;
  pointer-events: none;
}

.navatech-ai .project-with {
  position: relative;
  top: auto;
  left: auto;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 42px;
  letter-spacing: 0;
  line-height: 48px;
  margin: 0 0 40px 0;
  z-index: 2;
}

.navatech-ai .frame-38 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  position: relative;
  top: auto;
  left: auto;
  background-color: #ffffff !important;
  border-radius: 12px;
  width: fit-content;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.navatech-ai .frame-38:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.navatech-ai .text-wrapper-30 {
  position: relative;
  width: fit-content;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #1e1e2d !important;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

/* ==========================================================================
   08. HOW HAZARD REPORT WORKS WORKFLOW (#how-hazard-report-works)
   ========================================================================== */

@media screen and (min-width: 1501px) {
  .navatech-ai .group-6 {
    display: block;
  }
  .navatech-ai .navatech-hazard-responsive-container {
    display: none !important;
  }
}

@media screen and (max-width: 1500px) {
  .navatech-ai .group-6 {
    display: none !important;
  }
  .navatech-ai .navatech-hazard-responsive-container {
    display: block !important;
  }
  .navatech-ai .group-wrapper {
    height: auto !important;
    max-width: 1540px;
    /* padding: 0 20px; */
    box-sizing: border-box;
  }
}

.navatech-ai .navatech-hazard-responsive-container {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 60px 40px;
  background: #0b0e17;
  background: linear-gradient(180deg, #0a0d18 0%, #0d1222 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  box-sizing: border-box;
}

.navatech-ai .hazard-responsive-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 48px;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 50px 0;
}

.navatech-ai .hazard-responsive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  box-sizing: border-box;
}

.navatech-ai .hazard-step-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #131826;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  box-sizing: border-box;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.navatech-ai .hazard-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 126, 47, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.navatech-ai .hazard-step-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.navatech-ai .hazard-step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  border-radius: 100px;
  background: linear-gradient(
    256deg,
    rgba(69, 109, 179, 1) 0%,
    rgba(238, 126, 47, 1) 100%
  );
  font-family: 'Sofia Sans Condensed', 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1;
}

.navatech-ai .hazard-step-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.3;
  margin: 0;
}

.navatech-ai .hazard-step-desc {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.navatech-ai .hazard-step-media {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 20px;
  box-sizing: border-box;
  min-height: 220px;
  overflow: hidden;
}

.navatech-ai .hazard-step-img {
  max-width: 100%;
  max-height: 400px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

/* Tablet & Mobile Media Queries for Hazard Step Cards */
@media screen and (max-width: 1024px) {
  .navatech-ai .navatech-hazard-responsive-container {
    padding: 40px 24px;
    border-radius: 24px;
  }
  .navatech-ai .hazard-responsive-title {
    font-size: 36px;
    margin-bottom: 36px;
  }
  .navatech-ai .hazard-responsive-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .navatech-ai .hazard-step-card {
    padding: 24px;
    border-radius: 20px;
  }
  .navatech-ai .hazard-step-title {
    font-size: 24px;
  }
  .navatech-ai .hazard-step-desc {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 600px) {
  .navatech-ai .navatech-hazard-responsive-container {
    padding: 28px 16px;
    border-radius: 16px;
  }
  .navatech-ai .hazard-responsive-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .navatech-ai .hazard-step-card {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .navatech-ai .hazard-step-pill {
    font-size: 16px;
    padding: 4px 14px;
  }
  .navatech-ai .hazard-step-title {
    font-size: 22px;
  }
  .navatech-ai .hazard-step-desc {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .navatech-ai .hazard-step-media {
    padding: 12px;
    min-height: 180px;
  }
  .navatech-ai .hazard-step-img {
    max-height: 320px;
  }
}

.navatech-ai .group-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  flex: 0 0 auto;
}

.navatech-ai .group-6 {
  position: relative;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  height: 3767px;
}

.navatech-ai .image-5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 1540px;
  height: 2345px;
}

.navatech-ai .image-6 {
  position: absolute;
  top: 2345px;
  left: 0;
  width: 100%;
  max-width: 1540px;
  height: 1422px;
}

.navatech-ai .rectangle-5 {
  position: absolute;
  top: 1644px;
  left: 946px;
  width: 505px;
  height: 181px;
  background-color: #0c2d5e;
  filter: blur(125px);
}

.navatech-ai .rectangle-6 {
  position: absolute;
  top: 2240px;
  left: 309px;
  width: 576px;
  height: 181px;
  background-color: #0c2d5e;
  filter: blur(125px);
}

.navatech-ai .group-7 {
  position: absolute;
  top: 100px;
  left: 60px;
  width: 100%;
  max-width: 1422px;
  height: 3567px;
}

.navatech-ai .vector {
  position: absolute;
  top: 220px;
  left: 124px;
  width: 1041px;
  height: 658px;
}

.navatech-ai .text-wrapper-31 {
  position: absolute;
  top: 0;
  left: calc(50% - 379px);
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 60px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.navatech-ai .frame-39 {
  display: flex;
  flex-direction: column;
  width: 550px;
  align-items: flex-start;
  gap: 24px;
  position: absolute;
  top: 261px;
  left: 312px;
}

.navatech-ai .text-wrapper-32 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 42px;
  letter-spacing: 0;
  line-height: 60px;
}

.navatech-ai .text-wrapper-33 {
  position: relative;
  align-self: stretch;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 32px;
}

.navatech-ai .frame-40 {
  display: flex;
  flex-direction: column;
  width: 550px;
  align-items: flex-start;
  gap: 24px;
  position: absolute;
  top: 1095px;
  left: 558px;
}

.navatech-ai .frame-41 {
  display: flex;
  flex-direction: column;
  width: 550px;
  align-items: flex-start;
  gap: 24px;
  position: absolute;
  top: 1597px;
  left: 0;
}

.navatech-ai .frame-42 {
  display: flex;
  flex-direction: column;
  width: 550px;
  align-items: flex-start;
  gap: 24px;
  position: absolute;
  top: 2185px;
  left: 312px;
}

.navatech-ai .frame-43 {
  display: flex;
  flex-direction: column;
  width: 550px;
  align-items: flex-start;
  gap: 24px;
  position: absolute;
  top: 2653px;
  left: 558px;
}

.navatech-ai .frame-44 {
  display: flex;
  flex-direction: column;
  width: 550px;
  align-items: flex-start;
  gap: 24px;
  position: absolute;
  top: 3220px;
  left: 0;
}

.navatech-ai .image-7 {
  position: absolute;
  top: 261px;
  left: 0;
  width: 252px;
  height: 520px;
  object-fit: cover;
}

.navatech-ai .image-8 {
  position: absolute;
  top: 1939px;
  left: calc(50% - 711px);
  width: 252px;
  height: 520px;
  object-fit: cover;
}

.navatech-ai .image-9 {
  position: absolute;
  top: 2407px;
  left: calc(50% + 457px);
  width: 252px;
  height: 520px;
  object-fit: cover;
}

.navatech-ai .image-10 {
  position: absolute;
  top: 3097px;
  left: calc(50% + 457px);
  width: 252px;
  height: 278px;
}

.navatech-ai .image-11 {
  position: absolute;
  top: 2896px;
  left: calc(50% + 457px);
  width: 252px;
  height: 201px;
}

.navatech-ai .image-12 {
  position: absolute;
  top: 2716px;
  left: calc(50% + 457px);
  width: 252px;
  height: 201px;
}

.navatech-ai .frame-45 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 16px;
  position: absolute;
  top: 850px;
  left: 1019px;
  border-radius: 100px;
  background: linear-gradient(252.45deg, #456db3 35.82%, #ee7e2f 62.66%);
}

@media screen and (max-width: 1600px) {
  .navatech-ai .vector {
    left: 124px;
    width: 862px;
    height: 658px;
  }

  .navatech-ai .frame-45 {
    top: 795px !important;
    left: 837px !important;
  }

  .navatech-ai .group-9 {
    top: 593px !important;
    left: 984px !important;
  }

  .navatech-ai .vector-2 {
    top: 1075px !important;
    left: 684px !important;
  }

  .navatech-ai .frame-47 {
    top: 1412px !important;
    left: 902px !important;
  }

  .navatech-ai .image-14 {
    top: 1282px !important;
    left: 589px !important;
  }

  .navatech-ai .vector-4 {
    top: 1789px !important;
    left: 236px !important;
  }

  .navatech-ai .frame-49 {
    top: 1924px !important;
    left: 313px !important;
  }

  .navatech-ai .image-8 {
    top: 1800px !important;
    left: -14px !important;
  }

  .navatech-ai .MY-TASK-2 {
    left: 800px !important;
  }

  .navatech-ai .MY-TASK {
    display: none !important;
  }

  .navatech-ai .image-6 {
    top: 2258px !important;
  }

  .navatech-ai .vector-5 {
    top: 2322px !important;
    left: 103px !important;
    width: 1000px !important;
  }

  .navatech-ai .frame-50 {
    top: 2373px !important;
    left: 805px !important;
  }

  .navatech-ai .image-9 {
    top: 2250px !important;
    left: 934px !important;
  }

  .navatech-ai .image-18 {
    top: 2260px !important;
    left: 944px !important;
  }

  .navatech-ai .image-19 {
    top: 381px !important;
    left: 991px !important;
  }

  .navatech-ai .image-20 {
    top: 200px !important;
    left: 855px !important;
  }
}

@media screen and (max-width: 1600px) {
  .navatech-ai .frame-43 {
    top: 2530px !important;
    left: 320px !important;
  }

  .navatech-ai .frame-44 {
    width: 332px !important;
    top: 2962px !important;
  }

  .navatech-ai .image-15 {
    top: 2839px !important;
    left: 390px !important;
  }

  .navatech-ai .vector-3 {
    top: 3086px !important;
    left: 625px !important;
  }

  .navatech-ai .frame-48 {
    top: 3062px !important;
    left: 687px !important;
  }
}

.navatech-ai .text-wrapper-34 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: 'Sofia Sans Condensed', sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 36px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.navatech-ai .frame-46 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 16px;
  position: absolute;
  top: 170px;
  left: 73px;
  border-radius: 100px;
  background: linear-gradient(252.45deg, #456db3 35.82%, #ee7e2f 62.66%);
}

.navatech-ai .vector-2 {
  position: absolute;
  top: 1340px;
  left: 860px;
  width: 438px;
  height: 363px;
}

.navatech-ai .frame-47 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 16px;
  position: absolute;
  top: 1677px;
  left: 902px;
  border-radius: 100px;
  background: linear-gradient(252.45deg, #456db3 35.82%, #ee7e2f 62.66%);
}

.navatech-ai .vector-3 {
  position: absolute;
  top: 3306px;
  left: 860px;
  width: 438px;
  height: 3px;
}

.navatech-ai .frame-48 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 16px;
  position: absolute;
  top: 3281px;
  left: 902px;
  border-radius: 100px;
  background: linear-gradient(252.45deg, #456db3 35.82%, #ee7e2f 62.66%);
}

.navatech-ai .vector-4 {
  position: absolute;
  top: 1930px;
  left: 252px;
  width: 487px;
  height: 163px;
}

.navatech-ai .frame-49 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 16px;
  position: absolute;
  top: 2065px;
  left: 292px;
  border-radius: 100px;
  background: linear-gradient(252.45deg, #456db3 35.82%, #ee7e2f 62.66%);
}

.navatech-ai .group-8 {
  position: absolute;
  top: 511px;
  left: 312px;
}

.navatech-ai .image-13 {
  position: absolute;
  top: 415px;
  left: 9px;
  width: 233px;
  height: 97px;
}

.navatech-ai .vector-5 {
  position: absolute;
  top: 2456px;
  left: 124px;
  width: 1046px;
  height: 80px;
}

.navatech-ai .frame-50 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 16px;
  position: absolute;
  top: 2509px;
  left: 1029px;
  border-radius: 100px;
  background: linear-gradient(252.45deg, #456db3 35.82%, #ee7e2f 62.66%);
}

.navatech-ai .image-14 {
  position: absolute;
  top: 1409px;
  left: 610px;
  width: 252px;
  height: 520px;
  object-fit: cover;
}

.navatech-ai .image-15 {
  position: absolute;
  top: 3047px;
  left: 610px;
  width: 252px;
  height: 520px;
  object-fit: cover;
}

.navatech-ai .group-9 {
  position: absolute;
  top: 819px;
  left: 1168px;
  width: 252px;
  height: 520px;
}

.navatech-ai .image-16 {
  position: absolute;
  top: 849px;
  left: 1274px;
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.navatech-ai .image-17 {
  position: absolute;
  top: 849px;
  left: 418px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
}

.navatech-ai .image-18 {
  position: absolute;
  top: 2416px;
  left: 1177px;
  /* width: 233px; */
  height: 951px;
  border-radius: 36px;
  object-fit: cover;
}

.navatech-ai .image-19 {
  position: absolute;
  top: 408px;
  left: 978px;
  width: 215px;
  height: 143px;
  border-radius: 20px;
  object-fit: cover;
}

.navatech-ai .image-20 {
  position: absolute;
  top: 261px;
  left: 1068px;
  width: 300px;
  height: 200px;
  border-radius: 20px;
  border: 4px solid;
  border-color: #000000;
  object-fit: cover;
}

.navatech-ai .MY-TASK {
  position: absolute;
  top: 1971px;
  left: 1038px;
  width: 332px;
  height: 210px;
}

.navatech-ai .MY-TASK-2 {
  position: absolute;
  top: 1931px;
  left: 1118px;
  width: 292px;
  height: 170px;
}

.navatech-ai .frame-51 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  padding: 80px 0px;
  position: relative;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  box-sizing: border-box;
  scroll-margin-top: 140px;
}

.navatech-ai .frame-52 {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #000000;
  border-radius: 30px;
  padding: 80px 40px;
  gap: 50px;
  box-sizing: border-box;
}

.navatech-ai .frame-53 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.navatech-ai .text-wrapper-35 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.2;
  text-align: center;
  color: #ffffff;
  margin: 0;
}

.navatech-ai .text-wrapper-36 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255);
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin: 0;
}

.navatech-ai .frame-54 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  box-sizing: border-box;
}

.navatech-ai .frame-55,
.navatech-ai .frame-56,
.navatech-ai .frame-57,
.navatech-ai .frame-59 {
  position: relative;
  grid-row: auto;
  grid-column: auto;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 24px;
  box-sizing: border-box;
}

.navatech-ai .image-21,
.navatech-ai .image-22 {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  object-fit: contain;
}

.navatech-ai .text-wrapper-37 {
  position: relative;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #7e7e96;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 28px;
  margin: 0;
}

.navatech-ai .frame-58 {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.navatech-ai .img-2 {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.navatech-ai .image-23 {
  width: 74px;
  height: 60px;
  object-fit: contain;
}

.navatech-ai .image-24 {
  width: 95px;
  height: 60px;
  object-fit: contain;
}

.navatech-ai .frame-60 {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 40px;
  box-sizing: border-box;
}

.navatech-ai .built-for-compliance {
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 52px;
  color: #1e1e2d;
  margin: 0;
}

.navatech-ai .text-wrapper-38 {
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #7e7e96;
  font-size: 30px;
  line-height: 42px;
  margin: 0;
}

.navatech-ai .image-25 {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   10. RESULTS & BUSINESS IMPACT (#results)
   ========================================================================== */

.navatech-ai .frame-61 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  box-sizing: border-box;
  scroll-margin-top: 140px;
}

.navatech-ai .frame-62 {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 50px;
  padding: 80px 60px;
  position: relative;
  border-radius: 30px;
  box-sizing: border-box;
  background: linear-gradient(
    180deg,
    rgba(238, 126, 47, 0) 50.04%,
    rgba(238, 126, 47, 0.2) 100%
  );
}

.navatech-ai .frame-63 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.navatech-ai .frame-64 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  width: 100%;
  padding-bottom: 16px;
  box-sizing: border-box;
}

.navatech-ai .frame-64 .text-wrapper-39:first-child {
  width: 45%;
}

.navatech-ai .frame-64 .text-wrapper-39:last-child {
  width: 50%;
}

.navatech-ai .text-wrapper-39 {
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #7e7e95;
  font-size: 20px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.navatech-ai .frame-65 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.navatech-ai .frame-66 {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 28px 0;
  position: relative;
  box-sizing: border-box;
}

.navatech-ai .frame-67 {
  display: flex;
  flex-direction: column;
  width: 45%;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  box-sizing: border-box;
}

.navatech-ai .text-wrapper-40 {
  color: #ee7e2f;
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 56px;
  letter-spacing: 0;
  line-height: 1.1;
}

.navatech-ai .text-wrapper-41 {
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #1e1e2d;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 28px;
}

.navatech-ai .text-wrapper-42 {
  position: relative;
  width: 50%;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #1e1e2d;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 28px;
  margin: 0;
}

.navatech-ai .line {
  position: relative;
  width: 100%;
  height: 1px;
  background: transparent;
  border: none;
  margin: 0;
  display: block;
  object-fit: fill;
}

/* ==========================================================================
   11. MANUAL VS NAVATECH COMPARISON TABLE (#comparison-section)
   ========================================================================== */

.navatech-ai .frame-68 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  min-height: 802px;
  align-items: flex-start;
  gap: 60px;
  padding: 100px 50px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 20px;
  box-sizing: border-box;
  background: linear-gradient(
    180deg,
    rgba(29, 35, 72, 0) 0%,
    rgba(96, 79, 160, 0.1) 50%,
    rgba(169, 170, 224, 0.2) 100%
  );
  scroll-margin-top: 140px;
}

.navatech-ai .frame-69 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  align-items: center;
  gap: 60px;
  position: relative;
  flex: 0 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .navatech-ai .frame-69 {
    gap: 30px;
  }
}

.navatech-ai .text-wrapper-44 {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin-top: -1px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #1e1e2d;
  font-size: 60px;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.2;
}

.navatech-ai .frame-70 {
  display: flex;
  align-items: stretch;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  overflow-x: auto;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(238, 126, 47, 0.6) rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.navatech-ai .frame-70::-webkit-scrollbar {
  height: 6px;
}

.navatech-ai .frame-70::-webkit-scrollbar-track {
  background: rgba(126, 126, 149, 0.12);
  border-radius: 10px;
}

.navatech-ai .frame-70::-webkit-scrollbar-thumb {
  background: rgba(238, 126, 47, 0.7);
  border-radius: 10px;
}

.navatech-ai .frame-71 {
  display: flex;
  flex-direction: column;
  width: 280px;
  min-width: 220px;
  flex-shrink: 0;
  align-items: flex-start;
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #7e7e9533;
  box-sizing: border-box;
}

.navatech-ai .frame-71 > div:last-child {
  border-bottom: none !important;
}

.navatech-ai .frame-72 {
  display: flex;
  height: 100px;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: #ffffff;
  box-sizing: border-box;
}

.navatech-ai .text-wrapper-45 {
  position: relative;
  width: fit-content;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #1e1e2d;
  font-size: 30px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.navatech-ai .frame-73 {
  display: flex;
  height: 100px;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: #ffffff;
  border-top-width: 1px;
  border-top-style: solid;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: #7e7e9533;
  box-sizing: border-box;
}

.navatech-ai .text-wrapper-46 {
  position: relative;
  width: fit-content;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #1e1e2d;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.3;
  white-space: normal;
  word-break: break-word;
}

.navatech-ai .frame-74 {
  display: flex;
  height: 100px;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: #ffffff;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: #7e7e9533;
  box-sizing: border-box;
}

.navatech-ai .frame-75 {
  display: flex;
  align-items: stretch;
  gap: 16px;
  position: relative;
  flex: 1;
  min-width: 640px;
  box-sizing: border-box;
}

.navatech-ai .frame-76 {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 300px;
  align-items: flex-start;
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #7e7e9533;
  box-sizing: border-box;
}

.navatech-ai .frame-77 {
  display: flex;
  height: 100px;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  position: relative;
  align-self: stretch;
  width: 100%;
  box-sizing: border-box;
}

.navatech-ai .frame-78 {
  display: flex;
  height: 100px;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  position: relative;
  align-self: stretch;
  width: 100%;
  border-top-width: 1px;
  border-top-style: solid;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: #7e7e9533;
  box-sizing: border-box;
}

.navatech-ai .frame-76 > .frame-78:last-child {
  border-bottom: none !important;
}

.navatech-ai .img-3 {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.navatech-ai .text-wrapper-47 {
  position: relative;
  flex: 1;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #1e1e2d;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 28px;
}

.navatech-ai .frame-79 {
  display: flex;
  height: 100px;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  position: relative;
  align-self: stretch;
  width: 100%;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: #7e7e9533;
  box-sizing: border-box;
}

.navatech-ai .frame-80 {
  display: flex;
  height: 100px;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  position: relative;
  align-self: stretch;
  width: 100%;
  box-sizing: border-box;
}

.navatech-ai .frame-81 {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 300px;
  height: 400px;
  align-items: flex-start;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(29, 35, 72, 1) 0%,
    rgba(96, 79, 160, 1) 50%,
    rgba(169, 170, 224, 1) 100%
  );
  box-sizing: border-box;
}

.navatech-ai .frame-82 {
  display: flex;
  height: 100px;
  align-items: center;
  gap: 16px;
  padding: 10px 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  box-sizing: border-box;
}

.navatech-ai .text-wrapper-48 {
  color: #ffffff;
  font-size: 30px;
  position: relative;
  width: fit-content;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.navatech-ai .frame-83 {
  display: flex;
  height: 100px;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  border-top-width: 1px;
  border-top-style: solid;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: #ffffff33;
  box-sizing: border-box;
}

.navatech-ai .text-wrapper-49 {
  flex: 1;
  width: 100%;
  color: #ffffff;
  font-size: 20px;
  line-height: 28px;
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.navatech-ai .frame-84 {
  display: flex;
  height: 100px;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  border-bottom: none;
  box-sizing: border-box;
}

/* ==========================================================================
   12. WHAT'S NEXT & FUTURE ROADMAP (#whats-next)
   ========================================================================== */

.navatech-ai #whats-next {
  width: 100%;
  padding: 30px 0;
}

.navatech-ai .frame-85 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
  position: relative;
  box-sizing: border-box;
  scroll-margin-top: 140px;
}

.navatech-ai #whats-next .frame-28 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

.navatech-ai .frame-86 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 30px;
  position: relative;
  width: 100%;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(29, 35, 72, 1) 0%,
    rgba(96, 79, 160, 1) 50%,
    rgba(169, 170, 224, 1) 100%
  );
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navatech-ai .frame-87 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 30px;
  position: relative;
  width: 100%;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(69, 109, 179, 1) 0%,
    rgba(238, 126, 47, 1) 100%
  );
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navatech-ai .frame-86:hover,
.navatech-ai .frame-87:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.navatech-ai .text-wrapper-50 {
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  color: #ffffff;
  font-size: 50px;
  line-height: normal;
  letter-spacing: 0;
  white-space: nowrap;
}

.navatech-ai .text-wrapper-51 {
  position: relative;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0;
  margin: 0;
}

/* ==========================================================================
   13. ENGINEERING TEAM AVATARS (#engineering-team)
   ========================================================================== */

.navatech-ai .frame-88 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  padding: 40px;
  position: relative;
  border-radius: 20px;
  box-sizing: border-box;
  background: linear-gradient(
    180deg,
    rgba(238, 126, 47, 0) 0%,
    rgba(238, 126, 47, 0.1) 100%
  );
}

.navatech-ai .frame-89 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.navatech-ai .dsc,
.navatech-ai .dsc-2,
.navatech-ai .wbf {
  position: relative;
  width: calc(33.333% - 16px);
  max-width: 480px;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

/* ==========================================================================
   14. FREQUENTLY ASKED QUESTIONS (#faq)
   ========================================================================== */

.navatech-ai .frame-90 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  padding: 30px 0px 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.navatech-ai .frame-91 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  max-width: 1540px;
  height: auto;
  min-height: auto;
  align-items: center;
  gap: 10px;
  padding: 80px 60px;
  position: relative;
  background-color: #f4f4f4;
  border-radius: 30px;
  margin: 0 auto;
}

.navatech-ai .frame-92 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  max-width: 1300px;
  align-items: center;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
}

.navatech-ai .frame-93 {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-bottom: 1px solid rgba(126, 126, 149, 0.2);
  cursor: pointer;
  border-radius: 0;
  background: transparent;
  transition: border-color 0.25s ease, background-color 0.25s ease;
  user-select: none;
  box-sizing: border-box;
}

.navatech-ai .frame-93:hover {
  border-bottom-color: rgba(69, 109, 179, 0.5);
  background-color: rgba(255, 255, 255, 0.4);
}

.navatech-ai .frame-94 {
  flex-direction: column;
  gap: 0;
  flex: 1;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.navatech-ai .text-wrapper-52 {
  position: relative;
  align-self: stretch;
  margin-top: 0;
  font-family: 'Roboto', sans-serif !important;
  font-weight: 600 !important;
  color: #1e1e2d !important;
  font-size: 30px;
  letter-spacing: 0 !important;
  line-height: 1.35 !important;
}

.navatech-ai .a-whatsapp-native-AI {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  position: relative;
  align-self: stretch;
  font-family: 'Roboto', sans-serif !important;
  font-weight: 400 !important;
  color: #7e7e96 !important;
  font-size: 20px;
  letter-spacing: 0 !important;
  line-height: 28px !important;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease,
    margin-top 0.3s ease;
}

.navatech-ai .frame-93.active .a-whatsapp-native-AI {
  max-height: 300px;
  opacity: 1;
  margin-top: 12px;
}

.navatech-ai .linear-arrows-alt-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 8px;
  position: relative;
  flex: 0 0 auto;
}

.navatech-ai .linear-arrows-alt-wrapper img {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  width: 24px;
  height: 24px;
}

.navatech-ai .frame-93.active .linear-arrows-alt-wrapper img {
  transform: rotate(180deg);
}

/* ==========================================================================
   15. CALL TO ACTION (#cta-section)
   ========================================================================== */

.navatech-ai #cta-section {
  width: 100%;
  padding: 40px 0 80px;
}

.navatech-ai .group-10 {
  position: relative;
  width: 100%;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.navatech-ai .rectangle-7 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  min-height: 460px;
  border-radius: 30px;
  background: linear-gradient(
    259.71deg,
    #456db3 20.43%,
    #ee7e2f 57.69%
  ) !important;
  padding: 60px 60px 0;
  box-sizing: border-box;
  z-index: 1;
}

.navatech-ai .frame-95 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
  position: relative;
  width: calc(100% - 480px);
  max-width: 780px;
  z-index: 2;
  padding-bottom: 60px;
  box-sizing: border-box;
}

.navatech-ai .text-wrapper-53 {
  position: relative;
  align-self: stretch;
  margin: 0;
  font-family: 'Roboto', sans-serif !important;
  font-weight: 300 !important;
  color: #ffffff !important;
  font-size: 70px;
  letter-spacing: 0 !important;
  line-height: 100% !important;
}

.navatech-ai .frame-96 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  position: relative;
  background-color: #ffffff !important;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.navatech-ai .frame-96:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.navatech-ai .text-wrapper-54 {
  position: relative;
  width: fit-content;
  margin: 0;
  background: linear-gradient(270deg, #456db3 1.03%, #ee7e2f 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-fill-color: transparent !important;
  font-family: 'Roboto', sans-serif !important;
  font-weight: 500 !important;
  color: transparent !important;
  font-size: 20px;
  letter-spacing: 0 !important;
  line-height: 24px !important;
  white-space: nowrap;
}

.navatech-ai .image-26 {
  position: absolute;
  bottom: 0;
  right: 60px;
  object-fit: contain;
  object-position: bottom right;
  z-index: 2;
  pointer-events: none;
}

/* ==========================================================================
   COMPLETE RESPONSIVE DESIGN OVERHAUL (DESKTOP, TABLET, MOBILE)
   ========================================================================== */

/* 1. Global Section Anchors & Overflow Guards */
.navatech-ai #at-a-glance,
.navatech-ai #why-this-mattered,
.navatech-ai #how-hazard-report-works,
.navatech-ai #engineering-decisions,
.navatech-ai #results,
.navatech-ai #faq {
  scroll-margin-top: 110px;
  box-sizing: border-box;
}

/* 2. Large Desktop & Laptops (max-width: 1440px) */
@media (max-width: 1440px) {
  .navatech-ai .frame-3,
  .navatech-ai .frame-62 {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
  }
  .navatech-ai .group-2 {
    height: auto;
  }
}

/* 3. Standard Laptops & Tablets (max-width: 1200px) */
/* ==========================================================================
   16. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1200px) {
  /* Hero Section */
  .navatech-ai .group {
    height: auto;
    min-height: 0;
    padding: 48px 24px 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
  }
  .navatech-ai .safety-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
  }
  .navatech-ai .img {
    order: 1;
    position: relative;
    top: auto;
    left: auto;
    width: 180px;
    height: auto;
    margin-bottom: 24px;
    z-index: 2;
  }
  .navatech-ai .overview-badge-item {
    padding: 6px 14px;
    font-size: 14.5px;
  }

  .navatech-ai .image {
    order: 3;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 720px;
    height: auto;
    margin-top: 28px;
    margin-bottom: 0 !important;
    display: block;
    z-index: 2;
  }

  /* Overview & Key Highlights Section (#at-a-glance-header) */
  .navatech-ai .frame-2 {
    padding: 80px 24px;
    gap: 60px;
  }
  .navatech-ai .frame-3 {
    padding: 0;
    gap: 32px;
  }
  .navatech-ai .frame-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
  }
  .navatech-ai .frame-5,
  .navatech-ai .frame-6 {
    width: 100%;
    box-sizing: border-box;
  }
  .navatech-ai .frame-12,
  .navatech-ai .frame-13 {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
  }
  .navatech-ai .frame-12 {
    padding: 60px 40px;
    border-radius: 24px;
  }
  .navatech-ai .frame-14 {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .navatech-ai .frame-15 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
  }
  .navatech-ai .text-wrapper-12 {
    width: 260px;
    flex-shrink: 0;
  }
  .navatech-ai .frame-17 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }
  .navatech-ai .frame-21 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 40px;
  }
  .navatech-ai .frame-22 {
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }

  /* Section 05: Why This Had to Be Built & Section 06: The Challenge */
  .navatech-ai .frame-24 {
    padding: 50px 32px;
    gap: 32px;
  }
  .navatech-ai .why-this-had-to-be {
    font-size: 48px;
  }
  .navatech-ai .frame-25 {
    padding: 60px 32px 32px;
    border-radius: 24px;
  }
  .navatech-ai .frame-26 {
    width: 100%;
    gap: 40px;
    box-sizing: border-box;
  }
  .navatech-ai .text-wrapper-25 {
    font-size: 48px;
  }
  .navatech-ai .frame-28 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
  }
  .navatech-ai .frame-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
  }
  .navatech-ai .frame-29,
  .navatech-ai .frame-31 {
    width: 100%;
    padding: 24px;
    border-radius: 20px;
    box-sizing: border-box;
  }
  .navatech-ai .text-wrapper-26 {
    font-size: 20px;
  }
  .navatech-ai .text-wrapper-27,
  .navatech-ai .text-wrapper-28 {
    font-size: 16px;
    line-height: 24px;
  }

  /* Testimonial Quote Section (#client-quote-section) */
  .navatech-ai .frame-33 {
    padding: 60px 0px;
  }
  .navatech-ai .frame-34 {
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: 100%;
  }
  .navatech-ai .group-3 {
    width: 400px;
    height: 500px;
  }
  .navatech-ai .group-5 {
    padding: 50px 36px;
    min-height: 500px;
  }
  .navatech-ai .project-with {
    font-size: 26px;
    line-height: 40px;
  }
  .navatech-ai .group-7,
  .navatech-ai .frame-37 {
    position: relative;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0px;
  }
  .navatech-ai .frame-39,
  .navatech-ai .frame-40,
  .navatech-ai .frame-41,
  .navatech-ai .frame-42,
  .navatech-ai .frame-43,
  .navatech-ai .frame-44 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }
  .navatech-ai .vector,
  .navatech-ai .vector-2,
  .navatech-ai .vector-3,
  .navatech-ai .vector-4,
  .navatech-ai .vector-5 {
    display: none;
  }

  /* How a Hazard Report Works Flow Section */
  .navatech-ai .group-wrapper {
    width: 100%;
    overflow-x: visible;
    padding-bottom: 0;
    box-sizing: border-box;
  }

  /* Results Section */
  .navatech-ai .frame-68 {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .navatech-ai .group-8,
  .navatech-ai .screenshot,
  .navatech-ai .frame-81 {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }
  .navatech-ai .image-26 {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 440px;
    height: auto;
    margin: 20px auto 0 auto;
    display: block;
  }
  .navatech-ai .frame-70 {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
    box-sizing: border-box;
  }

  /* Section 09: Engineering Pillars & Tech Decisions (#engineering-decisions) */
  .navatech-ai .frame-51 {
    padding: 60px 0;
    gap: 40px;
  }
  .navatech-ai .frame-52 {
    padding: 60px 32px;
    border-radius: 24px;
    gap: 40px;
  }
  .navatech-ai .text-wrapper-35 {
    font-size: 38px;
  }
  .navatech-ai .text-wrapper-36 {
    font-size: 20px;
    line-height: 30px;
  }
  .navatech-ai .frame-54 {
    gap: 20px;
  }
  .navatech-ai .frame-55,
  .navatech-ai .frame-56,
  .navatech-ai .frame-57,
  .navatech-ai .frame-59 {
    padding: 30px;
    border-radius: 20px;
  }
  .navatech-ai .text-wrapper-37 {
    font-size: 18px;
    line-height: 28px;
  }
  .navatech-ai .built-for-compliance {
    font-size: 36px;
    line-height: 46px;
  }
  .navatech-ai .text-wrapper-38 {
    font-size: 18px;
    line-height: 28px;
  }

  /* Section 10: Results & Business Impact (#results) */
  .navatech-ai .frame-62 {
    padding: 60px 40px;
    gap: 40px;
  }
  .navatech-ai .text-wrapper-40 {
    font-size: 48px;
  }
  .navatech-ai .text-wrapper-41 {
    font-size: 18px;
    line-height: 26px;
  }
  .navatech-ai .text-wrapper-42 {
    font-size: 18px;
    line-height: 28px;
  }

  /* Section 11: Manual vs Navatech AI Comparison (#comparison-section) */
  .navatech-ai .frame-68 {
    padding: 60px 30px;
    gap: 40px;
    min-height: 0;
  }
  .navatech-ai .text-wrapper-44 {
    font-size: 44px;
  }
  .navatech-ai .frame-71 {
    width: 240px;
  }
  .navatech-ai .text-wrapper-45,
  .navatech-ai .text-wrapper-48 {
    font-size: 24px;
  }
  .navatech-ai .text-wrapper-46 {
    font-size: 18px;
  }
  .navatech-ai .text-wrapper-47,
  .navatech-ai .text-wrapper-49 {
    font-size: 18px;
    line-height: 26px;
  }

  /* Section 12: What's Next (#whats-next) */
  .navatech-ai .frame-85 {
    padding: 60px 0;
    gap: 40px;
  }
  .navatech-ai #whats-next .frame-28 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .navatech-ai .frame-86,
  .navatech-ai .frame-87 {
    padding: 32px 24px;
    gap: 24px;
    border-radius: 24px;
  }
  .navatech-ai .text-wrapper-50 {
    font-size: 42px;
  }
  .navatech-ai .text-wrapper-51 {
    font-size: 20px;
    line-height: 30px;
  }

  /* Section 13: Engineering Team Avatars (#engineering-team) */
  .navatech-ai .frame-88 {
    padding: 32px 24px;
  }
  .navatech-ai .frame-89 {
    gap: 20px;
  }
  .navatech-ai .dsc,
  .navatech-ai .dsc-2,
  .navatech-ai .wbf {
    width: calc(33.333% - 14px);
  }

  /* Section 14: FAQ (#faq) */
  .navatech-ai .frame-91 {
    padding: 60px 40px;
  }
  .navatech-ai .text-wrapper-52 {
    font-size: 22px;
  }
  .navatech-ai .a-whatsapp-native-AI {
    font-size: 16px;
    line-height: 24px;
  }

  /* Section 15: CTA (#cta-section) */
  .navatech-ai .rectangle-7 {
    min-height: 400px;
    padding: 50px 40px 0;
    border-radius: 24px;
  }
  .navatech-ai .frame-95 {
    width: calc(100% - 400px);
    gap: 28px;
    padding-bottom: 50px;
  }
  .navatech-ai .text-wrapper-53 {
    font-size: 52px;
    line-height: 100%;
  }
  .navatech-ai .text-wrapper-54 {
    font-size: 18px;
  }
  .navatech-ai .image-26 {
    width: 380px;
    max-height: 400px;
    right: 40px;
  }
}

/* 4. Mobile Devices & Small Tablets (max-width: 991px) */
@media (max-width: 991px) {
  /* Hero Section */
  .navatech-ai .group {
    padding: 40px 20px 0 20px;
    min-height: 0;
    gap: 15px;
  }
  .navatech-ai .img {
    width: 150px;
    margin-bottom: 0;
  }
  .navatech-ai .overview-badge-item {
    padding: 6px 14px;
    font-size: 14.5px;
  }

  .navatech-ai .image {
    order: 3;
    max-width: 580px;
    margin-top: 0;
    margin-bottom: 0 !important;
  }

  .navatech-ai .frame-2 {
    padding: 60px 20px;
    gap: 40px;
  }
  .navatech-ai .frame-3 {
    padding: 0;
    gap: 24px;
  }
  .navatech-ai .text-wrapper-2 {
    font-size: 36px;
    line-height: 46px;
  }
  .navatech-ai .p,
  .navatech-ai .text-wrapper-3,
  .navatech-ai .text-wrapper-4,
  .navatech-ai .text-wrapper-5 {
    font-size: 18px;
    line-height: 28px;
  }
  .navatech-ai .frame-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .navatech-ai .why-this-had-to-be,
  .navatech-ai .text-wrapper-25,
  .navatech-ai .text-wrapper-31 {
    font-size: 32px;
    line-height: 42px;
  }
  /* Sticky Navigation Bar */
  .navatech-ai .frame-wrapper {
    top: 10px;
    padding: 8px 0 16px 0;
  }
  .navatech-ai .frame-8 {
    padding: 5px;
    gap: 4px;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  .navatech-ai .frame-9,
  .navatech-ai .frame-10 {
    flex: 0 0 auto;
    padding: 10px 18px;
  }
  .navatech-ai .text-wrapper-10,
  .navatech-ai .text-wrapper-11 {
    font-size: 16px;
  }

  /* At a Glance Section (#at-a-glance) */
  .navatech-ai .frame-12 {
    padding: 32px 20px;
    border-radius: 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .navatech-ai .frame-13 {
    gap: 28px;
  }
  .navatech-ai .frame-14 {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .navatech-ai .frame-15 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 18px 0;
    width: 100%;
  }
  .navatech-ai .text-wrapper-12 {
    width: 200px;
    flex-shrink: 0;
    font-size: 18px;
  }
  .navatech-ai .text-wrapper-16 {
    font-size: 18px;
  }
  .navatech-ai .frame-17 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }
  .navatech-ai .frame-18 {
    padding: 6px 12px 6px 6px;
  }
  .navatech-ai .image-2 {
    width: 40px;
    height: 40px;
  }
  .navatech-ai .text-wrapper-14 {
    font-size: 18px;
  }
  .navatech-ai .text-wrapper-15 {
    font-size: 16px;
  }
  .navatech-ai .frame-21 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
  }
  .navatech-ai .frame-22 {
    padding: 24px 16px;
    border-radius: 20px;
  }
  .navatech-ai .text-wrapper-20 {
    font-size: 40px;
  }
  .navatech-ai .text-wrapper-21 {
    font-size: 16px;
    text-align: center;
  }

  /* Section 05: Why This Had to Be Built & Section 06: The Challenge */
  .navatech-ai .frame-24 {
    padding: 40px 24px;
    gap: 24px;
  }
  .navatech-ai .why-this-had-to-be {
    font-size: 36px;
  }
  .navatech-ai .p .text-wrapper-24 {
    font-size: 20px;
    line-height: 30px;
  }
  .navatech-ai .frame-25 {
    padding: 40px 24px 24px;
    border-radius: 20px;
  }
  .navatech-ai .frame-26 {
    gap: 32px;
  }
  .navatech-ai .text-wrapper-25 {
    font-size: 36px;
  }
  .navatech-ai .frame-28 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
  }
  .navatech-ai .frame-28 .frame-29:nth-child(3) {
    grid-column: span 2;
  }
  .navatech-ai .frame-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
  }
  .navatech-ai .frame-29,
  .navatech-ai .frame-31 {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .navatech-ai .text-wrapper-26 {
    font-size: 18px;
  }
  .navatech-ai .text-wrapper-27,
  .navatech-ai .text-wrapper-28 {
    font-size: 16px;
    line-height: 24px;
  }

  /* Testimonial Quote Section (#client-quote-section) */
  .navatech-ai .frame-33 {
    padding: 50px 0px;
  }
  .navatech-ai .frame-34 {
    flex-direction: column;
    gap: 24px;
  }
  .navatech-ai .group-3 {
    width: 100%;
    max-width: 100%;
    height: 440px;
  }
  .navatech-ai .testimonial-client-img {
    object-position: center 20%;
  }
  .navatech-ai .group-5 {
    width: 100%;
    padding: 40px 30px;
    min-height: auto;
  }
  .navatech-ai .project-with {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 30px;
  }
  .navatech-ai .project-with br {
    display: none;
  }

  /* Section 09: Engineering Pillars & Tech Decisions (#engineering-decisions) */
  .navatech-ai .frame-51 {
    padding: 50px 0;
    gap: 32px;
  }
  .navatech-ai .frame-52 {
    padding: 40px 24px;
    border-radius: 20px;
    gap: 32px;
  }
  .navatech-ai .text-wrapper-35 {
    font-size: 32px;
    line-height: 42px;
  }
  .navatech-ai .text-wrapper-36 {
    font-size: 18px;
    line-height: 28px;
  }
  .navatech-ai .frame-54 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .navatech-ai .frame-55,
  .navatech-ai .frame-56,
  .navatech-ai .frame-57,
  .navatech-ai .frame-59 {
    padding: 24px;
    border-radius: 16px;
  }
  .navatech-ai .text-wrapper-37 {
    font-size: 16px;
    line-height: 24px;
  }
  .navatech-ai .built-for-compliance {
    font-size: 30px;
    line-height: 40px;
  }
  .navatech-ai .text-wrapper-38 {
    font-size: 16px;
    line-height: 26px;
  }

  /* Section 10: Results & Business Impact (#results) */
  .navatech-ai .frame-62 {
    padding: 40px 24px;
    border-radius: 20px;
    gap: 30px;
  }
  .navatech-ai .frame-64 {
    display: none;
  }
  .navatech-ai .frame-66 {
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
  }
  .navatech-ai .frame-67 {
    width: 100%;
    gap: 6px;
  }
  .navatech-ai .text-wrapper-40 {
    font-size: 40px;
  }
  .navatech-ai .text-wrapper-41 {
    font-size: 18px;
    line-height: 24px;
  }
  .navatech-ai .text-wrapper-42 {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }

  /* Section 11: Manual vs Navatech AI Comparison (#comparison-section) */
  .navatech-ai .frame-68 {
    padding: 40px 20px;
    border-radius: 20px;
    gap: 32px;
    min-height: 0;
  }
  .navatech-ai .text-wrapper-44 {
    font-size: 34px;
    line-height: 44px;
  }
  .navatech-ai .frame-70 {
    padding-bottom: 14px;
  }
  .navatech-ai .frame-71 {
    width: 200px;
    min-width: 190px;
  }
  .navatech-ai .frame-75 {
    min-width: 580px;
  }
  .navatech-ai .frame-72,
  .navatech-ai .frame-73,
  .navatech-ai .frame-74,
  .navatech-ai .frame-77,
  .navatech-ai .frame-78,
  .navatech-ai .frame-79,
  .navatech-ai .frame-80,
  .navatech-ai .frame-82,
  .navatech-ai .frame-83,
  .navatech-ai .frame-84 {
    height: 90px;
    padding: 12px 18px;
  }
  .navatech-ai .frame-81 {
    height: 370px;
  }
  .navatech-ai .text-wrapper-45,
  .navatech-ai .text-wrapper-48 {
    font-size: 22px;
  }
  .navatech-ai .text-wrapper-46 {
    font-size: 16px;
  }
  .navatech-ai .text-wrapper-47,
  .navatech-ai .text-wrapper-49 {
    font-size: 16px;
    line-height: 24px;
  }

  /* Section 12: What's Next (#whats-next) */
  .navatech-ai .frame-85 {
    padding: 40px 0;
    gap: 32px;
  }
  .navatech-ai #whats-next .frame-28 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .navatech-ai .frame-86,
  .navatech-ai .frame-87 {
    padding: 28px 20px;
    gap: 20px;
    border-radius: 20px;
  }
  .navatech-ai .text-wrapper-50 {
    font-size: 36px;
  }
  .navatech-ai .text-wrapper-51 {
    font-size: 18px;
    line-height: 26px;
  }

  /* Section 13: Engineering Team Avatars (#engineering-team) */
  .navatech-ai .frame-88 {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .navatech-ai .frame-89 {
    gap: 16px;
  }
  .navatech-ai .dsc,
  .navatech-ai .dsc-2,
  .navatech-ai .wbf {
    width: calc(50% - 8px);
  }

  /* Section 14: FAQ (#faq) */
  .navatech-ai .frame-90 {
    padding: 20px 0 60px;
  }
  .navatech-ai .frame-91 {
    padding: 40px 24px;
    border-radius: 20px;
  }
  .navatech-ai .frame-93 {
    padding: 20px 14px;
  }
  .navatech-ai .text-wrapper-52 {
    font-size: 20px;
  }
  .navatech-ai .a-whatsapp-native-AI {
    font-size: 16px;
    line-height: 24px;
  }

  /* Section 15: CTA (#cta-section) */
  .navatech-ai #cta-section {
    padding: 0px 0 60px;
  }
  .navatech-ai .rectangle-7 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 32px 0;
    min-height: 0;
    border-radius: 24px;
  }
  .navatech-ai .frame-95 {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-bottom: 0;
    align-items: center;
    text-align: center;
    gap: 24px;
    z-index: 2;
  }
  .navatech-ai .text-wrapper-53 {
    font-size: 38px;
    line-height: 1.15;
    text-align: center;
  }
  .navatech-ai .image-26 {
    position: relative;
    right: auto;
    bottom: auto;
    width: 320px;
    height: auto;
    max-width: 100%;
    margin-top: 24px;
    z-index: 2;
  }
}

/* 5. Mobile Smartphones (max-width: 767px) */
@media (max-width: 767px) {
  /* Hero Section */
  .navatech-ai .group {
    padding: 32px 16px 0 16px;
    min-height: 0;
    border-radius: 20px;
    gap: 15px;
  }
  .navatech-ai .img {
    width: 130px;
    margin-bottom: 0;
  }

  .navatech-ai p.div {
    white-space: normal;
    text-align: center;
    word-break: break-word;
  }
  .navatech-ai .image {
    order: 3;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0 !important;
  }

  /* Overview & Key Highlights Section (#at-a-glance-header) */
  .navatech-ai .frame-2 {
    padding: 40px 16px;
    gap: 32px;
  }
  .navatech-ai .frame-3 {
    padding: 0;
    gap: 18px;
  }
  .navatech-ai .text-wrapper-2 {
    font-size: 28px;
    line-height: 36px;
  }
  .navatech-ai .p,
  .navatech-ai .text-wrapper-3,
  .navatech-ai .text-wrapper-4,
  .navatech-ai .text-wrapper-5 {
    font-size: 16px;
    line-height: 26px;
  }
  .navatech-ai .frame-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .navatech-ai .frame-5,
  .navatech-ai .frame-6 {
    padding: 15px;
    border-radius: 15px;
    gap: 15px;
  }
  .navatech-ai .div-2,
  .navatech-ai .text-wrapper-6,
  .navatech-ai .text-wrapper-7,
  .navatech-ai .text-wrapper-9 {
    font-size: 18px;
    line-height: 26px;
  }
  .navatech-ai .img-2,
  .navatech-ai .frame-7 {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
    flex-shrink: 0 !important;
  }
  .navatech-ai .frame-7 .text-wrapper-8 {
    font-size: 22px !important;
  }

  /* Sticky Navigation Bar */
  .navatech-ai .frame-wrapper {
    top: 10px;
    padding: 6px 0 12px 0;
  }
  .navatech-ai .frame-8 {
    padding: 4px;
    gap: 4px;
  }
  .navatech-ai .frame-9,
  .navatech-ai .frame-10 {
    padding: 8px 14px;
  }
  .navatech-ai .text-wrapper-10,
  .navatech-ai .text-wrapper-11 {
    font-size: 16px;
  }

  /* At a Glance Section (#at-a-glance) */
  .navatech-ai .frame-12 {
    padding: 20px 14px;
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .navatech-ai .frame-13 {
    gap: 20px;
  }
  .navatech-ai .frame-15 {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 0;
  }
  .navatech-ai .text-wrapper-12 {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: #1e1e2d;
  }
  .navatech-ai .text-wrapper-16 {
    font-size: 16px;
    line-height: 1.5;
  }
  .navatech-ai .text-wrapper-14 {
    font-size: 18px;
  }
  .navatech-ai .text-wrapper-15 {
    font-size: 16px;
  }
  .navatech-ai .frame-17 {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 8px;
  }
  .navatech-ai .frame-18 {
    width: 100%;
    border-radius: 12px;
    padding: 8px 12px;
  }
  .navatech-ai .frame-21 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
  }
  .navatech-ai .frame-22 {
    padding: 20px 12px;
    border-radius: 16px;
  }
  .navatech-ai .text-wrapper-20 {
    font-size: 32px;
  }
  .navatech-ai .text-wrapper-21 {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
  }

  /* Section 05: Why This Had to Be Built & Section 06: The Challenge */
  .navatech-ai .frame-24 {
    padding: 30px 16px;
    gap: 20px;
  }
  .navatech-ai .why-this-had-to-be {
    font-size: 28px;
    line-height: 36px;
  }
  .navatech-ai .p .text-wrapper-24 {
    font-size: 16px;
    line-height: 26px;
  }
  .navatech-ai .frame-25 {
    padding: 32px 16px 16px;
    border-radius: 16px;
  }
  .navatech-ai .frame-26 {
    gap: 24px;
  }
  .navatech-ai .text-wrapper-25 {
    font-size: 28px;
    line-height: 36px;
  }
  .navatech-ai .frame-28 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }
  .navatech-ai .frame-28 .frame-29:nth-child(3) {
    grid-column: auto;
  }
  .navatech-ai .frame-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }
  .navatech-ai .frame-29,
  .navatech-ai .frame-31 {
    padding: 18px 14px;
    border-radius: 14px;
    width: 100%;
    box-sizing: border-box;
  }
  .navatech-ai .text-wrapper-26 {
    font-size: 18px;
  }
  .navatech-ai .text-wrapper-27,
  .navatech-ai .text-wrapper-28 {
    font-size: 16px;
    line-height: 24px;
  }

  /* Testimonial Quote Section (#client-quote-section) */
  .navatech-ai .frame-33 {
    padding: 40px 16px;
  }
  .navatech-ai .frame-34 {
    flex-direction: column;
    gap: 20px;
  }
  .navatech-ai .group-3 {
    width: 100%;
    height: 380px;
    border-radius: 20px;
  }
  .navatech-ai .testimonial-client-img {
    object-position: center top;
  }
  .navatech-ai .frame-35 {
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    padding: 12px 16px;
    border-radius: 14px;
  }
  .navatech-ai .group-4 {
    width: 50px;
    height: 50px;
  }
  .navatech-ai .text-wrapper-29 {
    font-size: 18px;
  }
  .navatech-ai .text-wrapper-15 {
    font-size: 16px;
  }
  .navatech-ai .group-5 {
    width: 100%;
    padding: 30px 20px;
    border-radius: 20px;
    min-height: auto;
  }
  .navatech-ai .image-4 {
    width: 44px;
    height: 38px;
    margin-bottom: 20px;
  }
  .navatech-ai .project-with {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 24px;
  }
  .navatech-ai .project-with br {
    display: none;
  }
  .navatech-ai .frame-38 {
    padding: 12px 24px;
  }
  .navatech-ai .text-wrapper-30 {
    font-size: 16px;
  }

  /* Section 09: Engineering Pillars & Tech Decisions (#engineering-decisions) */
  .navatech-ai .frame-51 {
    padding: 30px 0;
    gap: 24px;
  }
  .navatech-ai .frame-52 {
    padding: 32px 16px;
    border-radius: 16px;
    gap: 24px;
  }
  .navatech-ai .text-wrapper-35 {
    font-size: 26px;
    line-height: 34px;
  }
  .navatech-ai .text-wrapper-36 {
    font-size: 16px;
    line-height: 24px;
  }
  .navatech-ai .frame-54 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .navatech-ai .frame-55,
  .navatech-ai .frame-56,
  .navatech-ai .frame-57,
  .navatech-ai .frame-59 {
    padding: 20px 16px;
    border-radius: 14px;
  }
  .navatech-ai .text-wrapper-37 {
    font-size: 16px;
    line-height: 24px;
  }
  .navatech-ai .built-for-compliance {
    font-size: 24px;
    line-height: 32px;
  }
  .navatech-ai .text-wrapper-38 {
    font-size: 16px;
    line-height: 24px;
  }

  /* Section 10: Results & Business Impact (#results) */
  .navatech-ai .frame-62 {
    padding: 32px 16px;
    border-radius: 16px;
    gap: 24px;
  }
  .navatech-ai .frame-66 {
    gap: 10px;
    padding: 16px 0;
  }
  .navatech-ai .text-wrapper-40 {
    font-size: 34px;
  }
  .navatech-ai .text-wrapper-41 {
    font-size: 16px;
    line-height: 22px;
  }
  .navatech-ai .text-wrapper-42 {
    font-size: 16px;
    line-height: 24px;
  }

  /* Section 11: Manual vs Navatech AI Comparison (#comparison-section) */
  .navatech-ai .frame-68 {
    padding: 32px 16px;
    border-radius: 16px;
    gap: 24px;
    min-height: 0;
  }
  .navatech-ai .text-wrapper-44 {
    font-size: 26px;
    line-height: 34px;
  }
  .navatech-ai .frame-71 {
    width: 170px;
    min-width: 160px;
  }
  .navatech-ai .frame-75 {
    min-width: 520px;
  }
  .navatech-ai .frame-72,
  .navatech-ai .frame-73,
  .navatech-ai .frame-74,
  .navatech-ai .frame-77,
  .navatech-ai .frame-78,
  .navatech-ai .frame-79,
  .navatech-ai .frame-80,
  .navatech-ai .frame-82,
  .navatech-ai .frame-83,
  .navatech-ai .frame-84 {
    height: 85px;
    padding: 10px 14px;
  }
  .navatech-ai .frame-81 {
    height: 355px;
  }
  .navatech-ai .text-wrapper-45,
  .navatech-ai .text-wrapper-48 {
    font-size: 18px;
  }
  .navatech-ai .text-wrapper-46 {
    font-size: 16px;
  }
  .navatech-ai .text-wrapper-47,
  .navatech-ai .text-wrapper-49 {
    font-size: 16px;
    line-height: 22px;
  }

  /* Section 12: What's Next (#whats-next) */
  .navatech-ai .frame-85 {
    padding: 32px 0;
    gap: 24px;
  }
  .navatech-ai #whats-next .frame-28 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .navatech-ai .frame-86,
  .navatech-ai .frame-87 {
    padding: 24px 20px;
    gap: 16px;
    border-radius: 18px;
  }
  .navatech-ai .text-wrapper-50 {
    font-size: 32px;
  }
  .navatech-ai .text-wrapper-51 {
    font-size: 16px;
    line-height: 24px;
  }

  /* Section 13: Engineering Team Avatars (#engineering-team) */
  .navatech-ai .frame-88 {
    padding: 20px 12px;
    border-radius: 14px;
  }
  .navatech-ai .frame-89 {
    gap: 12px;
  }
  .navatech-ai .dsc,
  .navatech-ai .dsc-2,
  .navatech-ai .wbf {
    width: 100%;
    max-width: 100%;
  }

  /* Section 14: FAQ (#faq) */
  .navatech-ai .frame-90 {
    padding: 10px 0 40px;
  }
  .navatech-ai .frame-91 {
    padding: 32px 16px;
    border-radius: 16px;
  }
  .navatech-ai .frame-93 {
    padding: 16px 10px;
  }
  .navatech-ai .text-wrapper-52 {
    font-size: 18px;
    line-height: 24px;
  }
  .navatech-ai .a-whatsapp-native-AI {
    font-size: 16px;
    line-height: 22px;
  }

  /* Section 15: CTA (#cta-section) */
  .navatech-ai .rectangle-7 {
    padding: 40px 24px 0;
    border-radius: 20px;
  }
  .navatech-ai .frame-95 {
    gap: 20px;
  }
  .navatech-ai .text-wrapper-53 {
    font-size: 30px;
    line-height: 1.2;
  }
  .navatech-ai .image-26 {
    width: 270px;
    margin-top: 20px;
  }
}

/* 6. Extra Small Phones (max-width: 480px) */
@media (max-width: 480px) {
  /* Hero Section */
  .navatech-ai .group {
    padding: 24px 12px 0 12px;
    min-height: 0;
    border-radius: 16px;
    gap: 15px;
  }
  .navatech-ai .img {
    width: 110px;
    margin-bottom: 0;
  }

  .navatech-ai .image {
    order: 3;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0 !important;
  }

  /* Overview & Key Highlights Section (#at-a-glance-header) */
  .navatech-ai .frame-2 {
    padding: 32px 0px;
    gap: 24px;
  }
  .navatech-ai .frame-3 {
    padding: 0;
    gap: 14px;
  }
  .navatech-ai .text-wrapper-2 {
    font-size: 26px;
    line-height: 30px;
  }
  .navatech-ai .p,
  .navatech-ai .text-wrapper-3,
  .navatech-ai .text-wrapper-4,
  .navatech-ai .text-wrapper-5 {
    font-size: 16px;
    line-height: 22px;
  }
  .navatech-ai .frame-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .navatech-ai .frame-5,
  .navatech-ai .frame-6 {
    padding: 15px;
    border-radius: 15px;
    gap: 15px;
  }
  .navatech-ai .div-2,
  .navatech-ai .text-wrapper-6,
  .navatech-ai .text-wrapper-7,
  .navatech-ai .text-wrapper-9 {
    font-size: 18px;
    line-height: 26px;
  }
  .navatech-ai .img-2,
  .navatech-ai .frame-7 {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    flex-shrink: 0 !important;
  }
  .navatech-ai .frame-7 .text-wrapper-8 {
    font-size: 20px !important;
  }

  /* Sticky Navigation Bar */
  .navatech-ai .frame-wrapper {
    top: 10px;
    padding: 4px 10px;
    width: 100%;
    box-sizing: border-box;
  }
  .navatech-ai .frame-8 {
    padding: 4px;
    gap: 3px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .navatech-ai .frame-9,
  .navatech-ai .frame-10 {
    padding: 6px 12px;
  }
  .navatech-ai .text-wrapper-10,
  .navatech-ai .text-wrapper-11 {
    font-size: 14px;
  }

  /* At a Glance Section (#at-a-glance) */
  .navatech-ai .frame-12 {
    padding: 16px;
    border-radius: 14px;
  }
  .navatech-ai .frame-15 {
    padding: 12px 0;
  }
  .navatech-ai .text-wrapper-12 {
    font-size: 16px;
  }
  .navatech-ai .text-wrapper-16 {
    font-size: 16px;
    line-height: 1.5;
  }
  .navatech-ai .frame-21 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .navatech-ai .frame-22 {
    padding: 16px 10px;
    border-radius: 14px;
  }
  .navatech-ai .text-wrapper-20 {
    font-size: 26px;
  }
  .navatech-ai .text-wrapper-21 {
    font-size: 16px;
    line-height: 22px;
  }

  /* Section 05: Why This Had to Be Built & Section 06: The Challenge */
  .navatech-ai .frame-24 {
    padding: 30px 16px;
    gap: 16px;
  }
  .navatech-ai .why-this-had-to-be {
    font-size: 28px;
    line-height: 30px;
  }
  .navatech-ai .p .text-wrapper-24 {
    font-size: 16px;
    line-height: 24px;
  }
  .navatech-ai .frame-25 {
    padding: 24px 16px 16px;
    border-radius: 14px;
  }
  .navatech-ai .frame-26 {
    gap: 20px;
  }
  .navatech-ai .text-wrapper-25 {
    font-size: 24px;
    line-height: 32px;
  }
  .navatech-ai .frame-28 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }
  .navatech-ai .frame-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }
  .navatech-ai .frame-29,
  .navatech-ai .frame-31 {
    padding: 16px;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
  }
  .navatech-ai .text-wrapper-26 {
    font-size: 18px;
  }
  .navatech-ai .text-wrapper-27,
  .navatech-ai .text-wrapper-28 {
    font-size: 16px;
    line-height: 24px;
  }

  /* Testimonial Quote Section (#client-quote-section) */
  .navatech-ai .frame-33 {
    padding: 30px 0px;
  }
  .navatech-ai .group-3 {
    height: 320px;
    border-radius: 16px;
  }
  .navatech-ai .frame-35 {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    width: calc(100% - 24px);
    padding: 10px 12px;
    border-radius: 12px;
    box-sizing: border-box;
  }
  .navatech-ai .group-4 {
    width: 44px;
    height: 44px;
  }
  .navatech-ai .text-wrapper-29 {
    font-size: 15px !important;
  }
  .navatech-ai .text-wrapper-15 {
    font-size: 13px !important;
    line-height: 1.3 !important;
  }
  .navatech-ai .group-5 {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .navatech-ai .project-with {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
  }

  /* Section 09: Engineering Pillars & Tech Decisions (#engineering-decisions) */
  .navatech-ai .frame-52 {
    padding: 24px 12px;
    border-radius: 14px;
    gap: 20px;
  }
  .navatech-ai .text-wrapper-35 {
    font-size: 22px;
    line-height: 28px;
  }
  .navatech-ai .text-wrapper-36 {
    font-size: 16px;
    line-height: 22px;
  }
  .navatech-ai .frame-55,
  .navatech-ai .frame-56,
  .navatech-ai .frame-57,
  .navatech-ai .frame-59 {
    padding: 16px 12px;
    border-radius: 12px;
  }
  .navatech-ai .text-wrapper-37 {
    font-size: 16px;
    line-height: 24px;
  }
  .navatech-ai .built-for-compliance {
    font-size: 22px;
    line-height: 28px;
  }
  .navatech-ai .text-wrapper-38 {
    font-size: 16px;
    line-height: 24px;
  }

  /* Section 10: Results & Business Impact (#results) */
  .navatech-ai .frame-62 {
    padding: 24px 12px;
    border-radius: 14px;
    gap: 16px;
  }
  .navatech-ai .text-wrapper-40 {
    font-size: 30px;
  }
  .navatech-ai .text-wrapper-41 {
    font-size: 16px;
    line-height: 22px;
  }
  .navatech-ai .text-wrapper-42 {
    font-size: 16px;
    line-height: 24px;
  }

  /* Section 11: Manual vs Navatech AI Comparison (#comparison-section) */
  .navatech-ai .frame-68 {
    padding: 24px 12px;
    border-radius: 14px;
    gap: 20px;
  }
  .navatech-ai .text-wrapper-44 {
    font-size: 22px;
    line-height: 28px;
  }
  .navatech-ai .frame-71 {
    width: 150px;
    min-width: 140px;
  }
  .navatech-ai .frame-75 {
    min-width: 480px;
  }
  .navatech-ai .frame-72,
  .navatech-ai .frame-73,
  .navatech-ai .frame-74,
  .navatech-ai .frame-77,
  .navatech-ai .frame-78,
  .navatech-ai .frame-79,
  .navatech-ai .frame-80,
  .navatech-ai .frame-82,
  .navatech-ai .frame-83,
  .navatech-ai .frame-84 {
    height: 80px;
    padding: 8px 10px;
  }
  .navatech-ai .frame-81 {
    height: 335px;
  }
  .navatech-ai .text-wrapper-45,
  .navatech-ai .text-wrapper-48 {
    font-size: 16px;
  }
  .navatech-ai .text-wrapper-46,
  .navatech-ai .text-wrapper-47,
  .navatech-ai .text-wrapper-49 {
    font-size: 16px;
    line-height: 20px;
  }

  /* Section 12: What's Next (#whats-next) */
  .navatech-ai .frame-85 {
    padding: 0;
    gap: 20px;
  }
  .navatech-ai #whats-next .frame-28 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .navatech-ai .frame-86,
  .navatech-ai .frame-87 {
    padding: 20px 16px;
    gap: 14px;
    border-radius: 16px;
  }
  .navatech-ai .text-wrapper-50 {
    font-size: 28px;
  }
  .navatech-ai .text-wrapper-51 {
    font-size: 16px;
    line-height: 24px;
  }

  /* Section 13: Engineering Team Avatars (#engineering-team) */
  .navatech-ai .frame-88 {
    padding: 16px 10px;
    border-radius: 12px;
  }
  .navatech-ai .frame-89 {
    gap: 10px;
  }
  .navatech-ai .dsc,
  .navatech-ai .dsc-2,
  .navatech-ai .wbf {
    width: 100%;
    max-width: 100%;
  }

  /* Section 14: FAQ (#faq) */
  .navatech-ai .frame-90 {
    padding: 0 0 30px;
  }
  .navatech-ai .frame-91 {
    padding: 24px 12px;
    border-radius: 14px;
    margin-top: 30px;
  }
  .navatech-ai .frame-93 {
    padding: 14px 8px;
  }
  .navatech-ai .text-wrapper-52 {
    font-size: 16px;
    line-height: 22px;
  }
  .navatech-ai .a-whatsapp-native-AI {
    font-size: 16px;
    line-height: 22px;
  }

  /* Section 15: CTA (#cta-section) */
  .navatech-ai .rectangle-7 {
    padding: 32px 16px 0;
    border-radius: 16px;
  }
  .navatech-ai .frame-95 {
    gap: 16px;
  }
  .navatech-ai .text-wrapper-53 {
    font-size: 24px;
    line-height: 1.25;
  }
  .navatech-ai .frame-96 {
    padding: 10px 20px;
    width: 100%;
    border-radius: 50px;
    box-sizing: border-box;
  }
  .navatech-ai .text-wrapper-54 {
    font-size: 16px;
  }
  .navatech-ai .image-26 {
    width: 230px;
    margin-top: 16px;
  }
}

/* Mobile Section Headings (24px for all section titles except main hero title) */
@media (max-width: 768px) {
  .navatech-ai .frame-21 .text-wrapper-2,
  .navatech-ai .why-this-had-to-be,
  .navatech-ai .text-wrapper-25,
  .navatech-ai .text-wrapper-31,
  .navatech-ai .hazard-responsive-title,
  .navatech-ai .text-wrapper-35,
  .navatech-ai .built-for-compliance,
  .navatech-ai .frame-62 .text-wrapper-2,
  .navatech-ai .text-wrapper-44,
  .navatech-ai .text-wrapper-53 {
    font-size: 24px !important;
    line-height: 32px !important;
  }
}
