@import url(https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;600;700;900&family=Red+Hat+Text:wght@400;500;600;700&display=swap);
:root {
  --ink: #102027;
  --ink-soft: #385058;
  --sand: #f7f3eb;
  --mint: #d9f2e8;
  --teal: #0f766e;
  --teal-strong: #0b5e57;
  --line: #d6ddd8;
}

html,
body {
  height: 100%;
}

body {
  background:
    radial-gradient(circle at 85% -10%, #d7ece7 0%, transparent 55%),
    radial-gradient(circle at 5% 10%, #f0e7d7 0%, transparent 45%),
    linear-gradient(180deg, #f5f8f6 0%, #eef4f2 100%);
  color: var(--ink);
  font-family: "Red Hat Text", "Segoe UI", sans-serif;
}

.site-shell {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.nav-link.active {
  font-weight: 700;
}

.homepage-shell {
  max-width: 1120px;
  padding: 0.8rem 0.9rem 2.5rem;
}

.hero-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(18, 51, 58, 0.26);
}

.home-carousel {
  margin: 0;
}

.home-carousel-item {
  background: #07191f;
}

.hero-image {
  min-height: 360px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
}

.hero-caption {
  text-align: left;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.2rem;
}

.caption-panel {
  max-width: 680px;
  background: linear-gradient(
    120deg,
    rgba(8, 30, 38, 0.78),
    rgba(15, 118, 110, 0.72)
  );
  border: 1px solid rgba(228, 241, 237, 0.3);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  backdrop-filter: blur(4px);
}

.caption-panel h3 {
  margin: 0.25rem 0 0.4rem;
  font-family: "Red Hat Display", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 3.8vw, 2.3rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #f1fffd;
}

.caption-panel p {
  margin: 0;
  color: #daf9f1;
  font-size: clamp(0.86rem, 1.5vw, 1rem);
}

.caption-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #b9f5e6;
}

.homepage-intro {
  margin: 1.5rem 0 1.2rem;
  padding: 1.5rem 1.5rem 1.35rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.94),
    rgba(237, 247, 242, 0.92)
  );
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--teal);
}

.homepage-intro h2 {
  margin: 0.45rem 0 0.55rem;
  font-family: "Red Hat Display", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.homepage-intro > p {
  margin: 0;
  max-width: 760px;
  color: var(--ink-soft);
}

.homepage-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.05rem;
}

.cta-main {
  border-radius: 999px;
  padding: 0.58rem 1.15rem;
  font-weight: 600;
  background: var(--teal);
  border-color: var(--teal);
}

.cta-main:hover {
  background: var(--teal-strong);
  border-color: var(--teal-strong);
}

.cta-link {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}

.cta-link:hover {
  text-decoration: underline;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.content-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 1.2rem 1.2rem 1rem;
  box-shadow: 0 14px 32px rgba(25, 42, 39, 0.09);
}

.accent-card {
  background: linear-gradient(170deg, #ffffff 0%, var(--mint) 100%);
}

.mtd-home-card {
  background: linear-gradient(170deg, #ffffff 0%, #e8f0fe 100%);
}

.card-tag {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal-strong);
}

.content-card h4 {
  margin: 0.12rem 0 0.18rem;
  font-family: "Red Hat Display", "Segoe UI", sans-serif;
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.content-card p {
  margin: 0;
  color: #23363b;
  line-height: 1.54;
}

/** MTD page **/
.mtd-shell {
  max-width: 1120px;
  padding: 2rem 1rem 3rem;
}

.mtd-heading {
  font-family: "Red Hat Display", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.mtd-subheading {
  color: var(--ink-soft);
  max-width: 680px;
  font-size: 1.05rem;
}

.mtd-offer-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem 1.1rem 1rem;
  height: 100%;
  box-shadow: 0 10px 28px rgba(25, 42, 39, 0.07);
}

.mtd-offer-card h4 {
  margin: 0 0 0.45rem;
  font-family: "Red Hat Display", "Segoe UI", sans-serif;
  font-weight: 600;
  color: var(--ink);
}

.mtd-offer-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.52;
}

.mtd-offer-card ul {
  margin: 0.7rem 0 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.mtd-offer-card li {
  margin-bottom: 0.35rem;
}

.mtd-offer-cta {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--teal-strong);
  font-weight: 700;
  font-size: 0.92rem;
}

.mtd-common-box {
  background: linear-gradient(120deg, var(--mint), rgba(255, 255, 255, 0.95));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.65rem 1.5rem;
}

.mtd-common-box h3 {
  margin: 0 0 0.45rem;
  font-family: "Red Hat Display", "Segoe UI", sans-serif;
  font-weight: 600;
}

.mtd-common-box p {
  margin: 0;
  color: var(--ink-soft);
}

.mtd-common-box ul {
  margin: 0.7rem 0 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.mtd-common-box li {
  margin-bottom: 0.35rem;
}

.mtd-pricing-title {
  margin: 0;
  font-family: "Red Hat Display", "Segoe UI", sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
}

/** ERP page **/
.erp-shell {
  max-width: 1120px;
  padding: 2rem 1rem 3rem;
}

.erp-heading {
  font-family: "Red Hat Display", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0.4rem 0 0.7rem;
}

.erp-subheading {
  color: var(--ink-soft);
  max-width: 700px;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.erp-module-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.2rem 1.1rem;
  height: 100%;
  box-shadow: 0 10px 28px rgba(25, 42, 39, 0.07);
}

.erp-module-card h4 {
  margin: 0 0 0.65rem;
  font-family: "Red Hat Display", "Segoe UI", sans-serif;
  font-weight: 600;
  color: var(--ink);
}

.erp-module-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.erp-module-card li {
  margin-bottom: 0.28rem;
}

.erp-module-footnote {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
  color: var(--teal-strong);
  font-weight: 600;
}

.erp-common-row {
  margin-top: 2rem;
}

.erp-common-box {
  background: linear-gradient(120deg, var(--mint), rgba(255, 255, 255, 0.95));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
}

.erp-common-box h3 {
  font-family: "Red Hat Display", "Segoe UI", sans-serif;
  margin: 0 0 0.9rem;
  color: var(--ink);
}

.erp-common-box ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.erp-common-box li {
  margin-bottom: 0.45rem;
}

/** Locator page **/
.locator-shell {
  max-width: 1120px;
  padding: 2rem 1rem 3rem;
}

.locator-hero {
  padding: 2.5rem 0 1.5rem;
}

.locator-heading {
  font-family: "Red Hat Display", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0.4rem 0 0.7rem;
}

.locator-subheading {
  color: var(--ink-soft);
  max-width: 700px;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.locator-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(25, 42, 39, 0.09);
  background: #fff;
}

.locator-hero-image {
  width: 100%;
  height: clamp(240px, 32vw, 360px);
  object-fit: contain;
  object-position: center;
  background: #f7faf9;
  display: block;
}

.locator-rd-intro {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.2rem 1.1rem;
  height: 100%;
  box-shadow: 0 10px 28px rgba(25, 42, 39, 0.07);
}

.locator-rd-intro h3 {
  font-family: "Red Hat Display", "Segoe UI", sans-serif;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.locator-rd-intro p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.locator-feature-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.2rem 1.1rem;
  height: 100%;
  box-shadow: 0 10px 28px rgba(25, 42, 39, 0.07);
}

.locator-feature-title {
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.locator-feature-desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.locator-cta-row {
  margin-top: 3rem;
}

.locator-cta-box {
  background: linear-gradient(120deg, var(--mint), rgba(255, 255, 255, 0.95));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.locator-cta-box h2 {
  font-family: "Red Hat Display", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.locator-cta-box p {
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 1.4rem;
}

/** About page **/
.about-shell {
  max-width: 1120px;
  padding: 2rem 1rem 3rem;
}

.about-heading {
  font-family: "Red Hat Display", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0.4rem 0 0.7rem;
}

.about-subheading {
  color: var(--ink-soft);
  max-width: 760px;
  font-size: 1.05rem;
}

.about-principle-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.2rem 1.1rem;
  height: 100%;
  box-shadow: 0 10px 28px rgba(25, 42, 39, 0.07);
}

.about-principle-card h4 {
  margin: 0 0 0.5rem;
  font-family: "Red Hat Display", "Segoe UI", sans-serif;
  font-weight: 600;
  color: var(--ink);
}

.about-principle-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.about-section-box {
  background: linear-gradient(120deg, var(--mint), rgba(255, 255, 255, 0.95));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.65rem 1.5rem;
}

.about-section-box h3 {
  margin: 0 0 1rem;
  font-family: "Red Hat Display", "Segoe UI", sans-serif;
  font-weight: 600;
}

.about-section-box p {
  margin: 0;
  color: var(--ink-soft);
}

.about-leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-leader-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.about-leader-card h4 {
  margin: 0 0 0.5rem;
  font-family: "Red Hat Display", "Segoe UI", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.about-leader-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.56;
}

.reveal-up {
  animation: reveal-up 680ms ease-out both;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 220ms;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

/** Footer **/
.Footer-color {
  background-color: rgba(40, 40, 40);
  color: rgb(219, 216, 216);
}

.footer-contact-card {
  background: transparent;
}

.footer-contact-body {
  padding-left: 0;
  padding-right: 0;
}

.footer-contact-footer {
  padding-left: 0;
  padding-right: 0;
  border-top: 0;
}

/*** Social icons Horizontal ***/
.horizontalNoBullets {
  display: flex;
  list-style: none;
  line-height: 2em;
  margin-inline-start: 0;
  padding-left: 0;
}

.horizontalNoBullets li {
  margin-right: 17%;
}

@media (max-width: 992px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .about-leadership-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 310px;
  }
}

@media (max-width: 768px) {
  .homepage-shell {
    padding-top: 0.45rem;
  }

  .hero-caption {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.75rem;
  }

  .homepage-intro {
    margin-top: 1rem;
    padding: 1.05rem;
  }

  .homepage-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

