@font-face {
  font-family: "Helvetica Compressed";
  src: url("../fonts/Helvetica-Compressed.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Now Display";
  src: url("../fonts/HelveticaNowDisplay-Regular.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Font Family */
  --font-heading: "Faculty Glyphic", sans-serif;
  --font-body: "Helvetica Now Display", Arial, Helvetica, sans-serif;
  --font-helvetica: "Helvetica Compressed", Arial, Helvetica, sans-serif;
  --brand-color-01: #00352a;
  --brand-color-02: #1f5b4f;
  --toll-free-height: 32px;

  /* Text - Light Background */
  --text-heading: #1a1a1a;
  --text-subheading: #262626;
  --text-primary: #404040;
  --text-secondary: #6b6b6b;
  --bg-light: #fff7f0;

  /* Text - Dark Background */
  --text-heading-dark: #fdfdfd;
  --text-subheading-dark: #e5e5e5;
  --text-primary-dark: #c8c8c8;
  --text-secondary-dark: #d0fff5;
  --bg-dark: #1a1a1a;

  /* Text - Font Size */
  --fs-hero-title: 58px;
  --fs-section-title: 40px;
  --fs-body-lg: 18px;
  --fs-body: 16px;

  --border-color: #e6e6e6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
}

body:has(dialog[open]) {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-body);
  font-weight: 400;
}

button {
  font-family: var(--font-body);
}

/* BASIC SETUP END */
.section {
  padding: 48px 5%;
}

main {
  max-width: 1800px;
  margin: 0 auto;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

.contact-info {
  font-size: 14px;
  height: var(--toll-free-height);
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  border-bottom: 1px solid var(--border-color);
  padding-right: 20px;
}
.header-separator {
  color: #404040;
}

.footer-separator {
  color: #e3fff9;
}

header {
  position: sticky;
  top: calc(var(--toll-free-height) * -1);
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 999;
}

.ns-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 70px;
}

.ns-header-left {
  display: flex;
  gap: 20px;
}

.ns-header-left .logo {
  position: relative;
  width: 180px;
  height: 100%;
  cursor: pointer;
}

.ns-header-left-mobile .logo {
  position: relative;
  width: 180px;
  height: 100%;
  cursor: pointer;
}

.logo img {
  width: 90%;
}

.ns-desktop-navbar {
  display: flex;
  align-items: center;
}

.ns-desktop-navbar ul {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style-type: none;
  margin: 0;
}

.ns-desktop-navbar ul li a,
.ns-mobile-navbar ul li a {
  font-size: var(--fs-body);
  font-family: var(--font-body);
  font-weight: 400;
  text-decoration: none;
  color: var(--text-primary);
}

.ns-desktop-navbar li.dropdown,
.ns-mobile-navbar li.mobile-dropdown {
  position: relative;
  cursor: pointer;
}

.ns-desktop-navbar ul.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%);
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0;
  min-width: 120px;
  background-color: #fff;
  padding: 0;
  overflow: hidden;
  border-radius: 6px;
  opacity: 0;
  list-style: none;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
}

.ns-desktop-navbar li.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: #222;
  white-space: nowrap;
  text-decoration: none;
}

.dropdown-menu li a:hover,
.dropdown-menu li a:active {
  background: #f5f5f5;
}

.ns-desktop-navbar .dropdown > a .material-symbols-outlined,
.ns-mobile-navbar .mobile-dropdown > a .material-symbols-outlined {
  display: inline-block;
  transition: transform 0.25s ease;
  vertical-align: middle;
  color: #6b6b6b;
}

.ns-desktop-navbar .dropdown:hover > a .material-symbols-outlined,
.ns-mobile-navbar .mobile-dropdown.active > a .material-symbols-outlined {
  transform: rotate(180deg);
}

.ns-desktop-navbar li.dropdown:hover ul.dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ns-header-actions {
  display: flex;
  gap: 10px;
  position: relative;
}

.ns-header-actions button,
.ns-header-actions a {
  padding: 10px 18px;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 100px;
  text-decoration: none;
  color: #000;
}

.ns-header-actions button.contact-us-btn {
  background-color: var(--brand-color-02);
  color: #fff;
}

.ns-header-actions button.contact-us-btn:focus {
  outline-color: var(--brand-color-02);
}

.ns-mobile-nav-drawer {
  width: 100%;
  max-width: 500px;
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  background-color: #fff;
  transition: all 0.3s ease;
}

.ns-mobile-nav-drawer.active {
  right: 0;
  transition: all 0.3s ease;
}

.ns-mobile-nav-drawer-header {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.ns-mobile-nav-drawer-header .logo {
  position: relative;
  width: 180px;
  cursor: pointer;
}

.ns-mobile-navbar .mobile-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.ns-mobile-navbar .mobile-dropdown ul.dropdown-menu {
  display: none;
  position: static;
  width: 100%;
  min-width: unset;
  margin-top: 8px;
  overflow: hidden;
  padding: 0;
  background: transparent;
  list-style: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ns-mobile-navbar .mobile-dropdown .dropdown-menu li {
  width: 100%;
}

.ns-mobile-navbar .mobile-dropdown .dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 8px 16px;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--text-primary);
}

.ns-mobile-navbar .mobile-dropdown.active .dropdown-menu {
  display: block;
}

/* HERO SECTION */
.hero-section {
  min-height: calc(100vh - var(--toll-free-height) - 70px);
  position: relative;
  background: linear-gradient(
    to bottom,
    var(--brand-color-01),
    var(--brand-color-02)
  );
  display: flex;
  align-items: center;
}

.hero-section-content {
  width: 100%;
  max-width: 760px;
}

.hero-section-content h1 {
  font-size: var(--fs-hero-title);
  font-weight: 400;
  color: #fff;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.hero-section-content p {
  max-width: 500px;
  font-size: var(--fs-body-lg);
  font-weight: 500;
  color: var(--text-primary-dark);
  line-height: 1.3;
  font-family: var(--font-body);
  margin-top: 20px;
}

.hero-section-content p span {
  font-size: var(--fs-body-lg);
  font-weight: 700;
  color: var(--text-secondary-dark);
  font-family: var(--font-body);
}

.hero-section-content button {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-body);
  padding: 14px 28px;
  border-radius: 50px;
  border: 1px solid #67c1af91;
  border: none;
}

.hero-section-content button.trail-btn {
  color: var(--brand-color-02);
  background-color: #fffefb;
  /* margin-right: 16px; */
}

.hero-section-content button.trail-btn:focus {
  outline-color: var(--brand-color-02);
}

.hero-section-content button.request-demo-btn {
  color: #ffffff;
  background-color: var(--brand-color-02);
}

.hero-section-content button.request-demo-btn:focus {
  outline-color: var(--brand-color-02);
}

.hero-section-img {
  position: absolute;
  bottom: 0;
  right: 0px;
  width: 100%;
  max-width: 500px;
  height: auto;
}

.hero-section-img img {
  width: 100%;
  display: block;
}

.callback-dialog {
  width: min(90vw, 420px);
  border: none;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}

.callback-dialog::backdrop {
  background: rgba(0, 0, 0, 0.75);
  z-index: 999;
}

.callback-form {
  padding: 24px;
  background: #fff;
}

.callback-form h2 {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #555;
  text-align: left;
}

.form-group input {
  height: 45px;
  padding: 0 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
}

.form-group input:focus {
  border-color: #1f5b4d;
}

.submit-btn {
  width: 100%;
  height: 45px;
  border: none;
  border-radius: 999px;
  background: #1f5b4d;
  color: #fff;
  font-size: var(--fs-body);
  cursor: pointer;
  margin-top: 12px;
}

.submit-btn:focus {
  outline-color: var(--brand-color-02);
}

/*  */

.pin-spacer {
  max-width: 100% !important;
}

.ns-built-with-the-industry {
  width: 100%;
  background:
    linear-gradient(to right, #e0e0e0 1px, transparent 1px),
    linear-gradient(to bottom, #e0e0e0 1px, transparent 1px), #f2f2f2;

  background-size: 80px 80px;
  overflow: hidden;
}

.ns-built-with-the-industry h2 {
  width: 100%;
  text-align: center;
  font-size: var(--fs-section-title);
  font-weight: 400;
  font-family: var(--font-heading);
  color: var(--brand-color-01);
}

.ns-built-with-ind-card h3 {
  font-size: var(--fs-body-lg);
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--brand-color-02);
}

.ns-built-with-ind-cardcontainer {
  width: max-content;
  margin-top: 64px;
  display: flex;
  gap: 3rem;
}

.ns-built-with-ind-cardcontainer::-webkit-scrollbar {
  display: none;
}

.ns-built-with-ind-card {
  min-width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ns-card-body {
  max-width: 300px;
  width: 100%;
  min-height: 400px;
  background-image: url("/assets/nutshell/card-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 36px 12px 12px 12px;
}

.ns-card-body img {
  width: 100%;
}

.ns-card-body p {
  margin-top: 12px;
  text-align: left;
}

/* WHAT IS IT  */
.what-it-is {
  background-color: var(--bg-light);
}

.who-it-is-for {
  background-color: #fff7f0;
}

.what-it-is h2,
.who-it-is-for h2 {
  font-size: var(--fs-section-title);
  font-weight: 400;
  font-family: var(--font-heading);
  text-align: center;
}

.what-it-is .card-text,
.who-it-is-for .card-text {
  color: var(--text-secondary);
}

/* COMPLETE TRACEABILITY */

.complete-traceability {
  background-color: var(--bg-dark);
}

.complete-traceability-left h2 {
  font-size: var(--fs-section-title);
  font-family: var(--font-helvetica);
  color: var(--text-heading-dark);
  line-height: 1.05;
  font-weight: 500;
  margin: 0;
}

.complete-traceability-left h2 span {
  color: var(--text-secondary-dark);
}

.complete-traceability-left p {
  margin: 22px 0 36px;
  color: var(--text-subheading-dark);
  max-width: 600px;
  line-height: 1.6;
  font-size: var(--fs-body);
}

.chip-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-radius: 24px;
}

.chips {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #3d3d3d;
  background-color: transparent;
  color: #fff;
  font-size: var(--fs-body);
  font-weight: 500;
  transition: all 0.25s ease;
}

.chips .material-symbols-outlined {
  font-size: var(--fs-body-lg);
  line-height: 1;
}

.traceability-cta {
  margin-top: 100px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-btn {
  text-decoration: none;
  background-color: #eaf7f1;
  color: var(--brand-color-02);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
}

.complete-traceability-right {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.complete-traceability-img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
}

/* INDUSTRY SPECIFIC FEATURES */
.industry-specific-features {
  background-color: var(--bg-light);
}

.industry-specific-features h2 {
  font-size: var(--fs-section-title);
  font-weight: 400;
  font-family: var(--font-heading);
  text-align: center;
}

.industry-specific-features button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  color: #babfc2;
  background-color: transparent;
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.industry-specific-features button.active {
  background-color: var(--brand-color-02);
  color: #fff;
}

.industry-specific-features .card-img-top {
  width: 100px;
  height: 100px;
  padding: 10px;
  background-color: #fff5f5;
  border: none;
  border-radius: 50%;
}

.industry-specific-features .card-title {
  font-size: var(--fs-body-lg);
  font-weight: 500;
  font-family: var(--font-body);
  color: #000;
}

.industry-specific-features .card-text {
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--text-secondary);
}

.industry-specific-features .chip-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.industry-specific-features .chip {
  padding: 2px 6px;
  background: #f2f2f2;
  color: var(--brand-color-02);
  border-radius: 6px;
  white-space: nowrap;
}

.card-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 320px;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.card-slider::-webkit-scrollbar {
  display: none;
}

.custom-card {
  width: 320px;
  border-radius: 20px;
  border: 1px solid #e6e1da;
  background: #fff;
  flex-shrink: 0;
}

/* INTELLIGENCE */

.intelligence {
  background-color: var(--bg-light);
}

.intelligence h2 {
  font-size: var(--fs-section-title);
  font-weight: 500;
  font-family: var(--font-heading);
  color: var(--text-primary);
}

.intelligence-container {
  position: relative;
  /* padding-bottom: 450px; */
}

.intelligence-card {
  width: 100%;
  position: sticky;
  top: 100px;
  margin-bottom: 0;
}

.intelligence-card .row {
  height: 400px;
}

.intelligence-card + .intelligence-card {
  margin-top: 40px;
}

.intelligence-card:nth-child(1) {
  z-index: 1;
}
.intelligence-card:nth-child(2) {
  z-index: 2;
}
.intelligence-card:nth-child(3) {
  z-index: 3;
}
.intelligence-card:nth-child(4) {
  z-index: 4;
}

.intelligence-container .intelligence-card-left img {
  max-width: 50px;
}

.intelligence-card-left {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.intelligence-card-left h2 {
  font-size: 32px;
  font-weight: 500;
  font-family: var(--font-body);
  color: #000;
}

.intelligence-card-left p {
  font-size: var(--fs-body-lg);
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--text-secondary);
}

.intelligence-card-right {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.intelligence-card-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* THE COMPLETE ERP */
.the-complete-erp {
  background-color: var(--bg-dark);
}

.the-complete-erp h2 {
  font-size: var(--fs-section-title);
  font-weight: 500;
  font-family: var(--font-heading);
  color: var(--text-heading-dark);
}

.the-complete-erp h2 span {
  color: #88e3d1;
}

.the-complete-erp-btn-section .erp-tab-btn {
  background-color: #262626;
  font-size: var(--fs-body);
  font-weight: 500;
  font-family: var(--font-body);
  color: #e6e6e6;
}

.the-complete-erp-btn-section .erp-tab-btn.active {
  background-color: var(--bg-light);
  color: var(--brand-color-01);
}

.the-complete-erp .erp-card h2 {
  font-size: var(--fs-section-title);
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--text-heading-dark);
}

.the-complete-erp .erp-card p {
  font-size: var(--fs-body);
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--text-secondary);
}

.erp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  row-gap: 5px;
  align-items: center;
  margin-bottom: 24px;
  color: #67c1af;
  padding: 0;
  overflow: hidden;
}

.erp-tags li:first-child {
  list-style: none;
}

.erp-cards-wrapper {
  position: relative;
  height: 650px;
  overflow: hidden;
}

.erp-card {
  width: 70%;
  max-width: 800px;
  height: auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%) scale(0.94);
  opacity: 0.25;
  filter: blur(6px);
  pointer-events: none;
  transition: all 0.45s ease;
  background-color: #1f1f1f;
  border-radius: 20px;
}

.erp-card.active {
  width: 80%;
  max-width: 1100px;
  height: auto;
  transform: translateX(-50%) scale(1);
  opacity: 1;
  filter: blur(0);
  z-index: 3;
  pointer-events: auto;
}

.erp-card .image-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}

.erp-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.erp-card.next {
  transform: translateX(42%) scale(0.92);
  opacity: 0.35;
  filter: blur(3px);
  z-index: 2;
}

.erp-card.prev {
  transform: translateX(-142%) scale(0.92);
  opacity: 0.18;
  filter: blur(3px);
  z-index: 1;
}

.why-choose-us {
  background-color: var(--bg-dark);
}

.why-choose-us h2 {
  font-size: var(--fs-section-title);
  font-weight: 500;
  font-family: var(--font-heading);
  color: var(--text-heading-dark);
  text-align: center;
}

.why-choose-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
  align-items: stretch;
}

/* ---------- Left Card ---------- */

.why-left {
  background-color: #262626;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 450px;
}

.quote-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
}

.why-left h3 {
  font-size: var(--fs-section-title);
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--text-heading-dark);
}

/* ---------- Right Scroll Box ---------- */

.why-right {
  background-color: transparent;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  height: 450px;
  position: relative;
}

.scroll-track {
  display: flex;
  flex-direction: column;
  animation: scrollUp 16s linear infinite;
}

.list-item {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 80px;
  color: #e0e0e0;
  font-size: var(--fs-body-lg);
  border-bottom: 1px solid var(--border-color);
}

.list-item:last-child {
  border-bottom: none;
}

/* ---------- Animation ---------- */

@keyframes scrollUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

/* FAQ SECTION */
.faq-section {
  background-color: #fff7f0;
}

.faq-section-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.faq-section .faq-header h2 {
  font-size: var(--fs-section-title);
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-subheading);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-item[open] .arrow {
  transform: rotate(180deg);
}

.arrow {
  transition: transform 0.4s ease;
}

.faq-answer {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0 0 20px;
  line-height: 1.5;
}

.faq-answer button {
  color: #0070f3;
  font-size: var(--fs-body);
  font-weight: 400;
  text-decoration: none;
  margin-right: 6px;
  background: none;
  border: none;
}

/* AI SECTION */
.ns-ai-section {
  width: 100%;
}

.ns-ai-section-container {
  background: linear-gradient(
    to bottom,
    var(--brand-color-01),
    var(--brand-color-02)
  );
  border-radius: 16px;
  max-width: 90%;
  margin: 0 auto;
  margin-block: 48px;
}

.ns-ai-section .ns-ai-section-content {
  width: 100%;
  max-width: 760px;
}

.ns-ai-section h1 {
  font-size: var(--fs-section-title);
  font-weight: 400;
  color: var(--text-heading-dark);
  font-family: var(--font-body);
}

.ns-ai-section h1 span {
  color: #efb158;
}

.ns-ai-section p {
  font-size: var(--fs-body-lg);
  font-weight: 500;
  color: #e5e5e5;
}

.ns-ai-section button.trail-btn {
  font-size: var(--fs-body-lg);
  font-weight: 500;
  font-family: var(--font-body);
  padding: 14px 28px;
  border-radius: 50px;
  border: 1px solid #67c1af91;
  border: none;
  color: var(--brand-color-02);
  background-color: #fffefb;
}

/* FOOTER */
footer {
  background-color: var(--bg-dark);
}

footer h2 {
  font-size: var(--fs-section-title);
  font-weight: 400;
  font-family: var(--fs-body);
  color: var(--text-heading-dark);
}

footer p {
  font-size: var(--fs-body);
  font-weight: 500;
  color: #e5e5e5;
  font-family: var(--fs-body);
}

footer .footer-btn {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-body);
  padding: 14px 28px;
  border-radius: 50px;
  background-color: #fffefb;
  border: 1px solid var(--bg-light);
  color: var(--brand-color-02);
  border: none;
}

footer .footer-btn:hover {
  background-color: #fffefb;
  border: 1px solid var(--bg-light);
  color: var(--brand-color-02);
}

.footer-links-body h4 {
  color: #fff;
  font-size: var(--fs-body-lg);
  display: flex;
  align-items: center;
  margin: 0;
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
}

.footer-links-body {
  border: 1px solid var(--border-color);
  margin-inline: 0 !important;
}

.footer-links-body .col-md-3 {
  border-right: 1px solid var(--border-color);
  padding-inline: 0;
}

.footer-links-body ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 24px;
}

.footer-links-body a {
  color: var(--text-primary-dark);
  font-size: var(--fs-body-lg);
  text-decoration: none;
}

.footer-link-footer {
  border: 1px solid var(--border-color);
  border-top: none;
  padding: 24px;
}

.footer-link-footer h4 {
  color: var(--text-primary-dark);
  display: flex;
  align-items: center;
  margin: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-social h5 {
  font-size: 18px;
  font-family: var(--font-helvetica);
  font-weight: 400;
  color: var(--text-heading-dark);
}

.footer-social a {
  font-size: 18px;
  color: #e3fff9;
  text-decoration: none;
}

.footer-contact-us-btn .contact-us-btn {
  width: 100%;
  height: 100%;
  background: var(--brand-color-02);
  color: var(--text-heading-dark);
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-us-btn .contact-us-btn img {
  width: 26px;
  margin-right: 10px;
}

.footer-contact-us-btn .contact-us-btn:active {
  background: var(--brand-color-02);
  color: var(--text-heading-dark);
  border: 1px solid #e6e6e6;
}

.border-end {
  border-right: 1px solid var(--border-color);
}

.footer-bottom {
  width: 100%;
  margin-top: 150px;
  pointer-events: none;
}

@media screen and (min-width: 1440px) {
  :root {
    /* Text - Font Size */
    --fs-hero-title: 64px;
    --fs-section-title: 40px;
    --fs-body-lg: 22px;
    --fs-body: 16px;
  }

  .hero-section {
    min-height: auto;
    justify-content: space-between;
  }

  .hero-section-img {
    position: static;
  }

  .erp-cards-wrapper {
    position: relative;
    height: 750px;
  }
}

@media (max-width: 1150px) {
  .hero-section {
    min-height: auto;
  }

  .hero-section-img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .erp-card {
    width: 70%;
    max-width: 800px;
    height: auto;
  }

  .erp-card.active {
    display: block;
    height: auto;
  }

  .erp-cards-wrapper {
    height: 570px;
  }
}

@media (max-width: 996px) {
  :root {
    /* Text - Font Size */
    --fs-hero-title: 48px;
    --fs-section-title: 32px;
    --fs-body-lg: 20px;
    --fs-body: 14px;
  }

  .ns-header-wrapper {
    padding: 0 16px;
  }

  .ns-desktop-navbar,
  .ns-header-actions {
    display: none;
  }

  .hero-section {
    min-height: auto;
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding-bottom: 0;
  }

  .hero-section-content {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .hero-section-img {
    opacity: 1;
    position: static;
  }

  .card-slider {
    grid-auto-columns: 320px;
    gap: 24px;
  }

  .erp-card {
    width: 70%;
    max-width: 800px;
    height: auto;
  }

  .erp-card.active {
    display: block;
    height: auto;
  }

  .erp-cards-wrapper {
    height: 550px;
  }

  .footer-contact-us-btn button {
    height: 70px;
  }
}

@media screen and (min-width: 996px) {
  .ns-mobile-nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .footer-links-body > .col-md-7,
  .footer-links-body > .col-md-5 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  .contact-info {
    font-size: 12px;
    justify-content: center;
    padding-right: 0px;
  }

  .card-slider {
    grid-auto-columns: 100%;
    gap: 24px;
  }

  .hero-section-img {
    opacity: 1;
  }

  .hero-section-img {
    position: static;
  }

  .hero-section-content button {
    font-size: 18px;
    padding: 12px 24px;
  }

  .custom-card {
    width: 100%;
  }

  .intelligence-card + .intelligence-card {
    margin-top: 50px;
  }

  .intelligence-card .row {
    height: auto;
  }

  .intelligence-card-right {
    height: auto;
  }

  .intelligence-card-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .erp-cards-wrapper {
    height: auto;
  }

  .erp-card,
  .erp-card.active,
  .erp-card.next,
  .erp-card.prev {
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
    opacity: 1;
    filter: none;
    display: none;
  }

  .erp-card.active {
    display: block;
    height: auto;
  }

  .why-choose-wrapper {
    grid-template-columns: 1fr;
  }

  .why-left {
    min-height: 320px;
    padding: 32px;
  }

  .why-left h3 {
    font-size: 34px;
  }

  .why-right {
    height: 420px;
  }

  .list-item {
    min-height: 72px;
    font-size: var(--fs-body-lg);
    padding: 0 20px;
  }

  .traceability-cta {
    margin-top: 60px;
  }

  .footer-links-body .col-md-3 {
    border-top: 1px solid var(--border-color);
  }

  .footer-contact-us-btn button {
    height: 70px;
  }

  .border-end {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .footer-social h5 {
    font-size: 16px;
  }

  .footer-social a {
    font-size: 16px;
  }
}

.error-message {
  font-size: 10px;
  color: red;
}
