:root {
  --blue: #005fc7;
  --sky: #04a9ea;
  --text: #16324f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #f3f8fd;
  color: var(--text);
  overflow-x: hidden;
}

/* LOADER */
#loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #039bd8, #013a70);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-direction: column;
}

.loader-circle {
  width: 65px;
  height: 65px;
  border: 6px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 18px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* HERO */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #079bd8;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("images/trackez-bg.jpg") right center / cover no-repeat;
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  display: none;
  background: #000;
}

.video-close {
  position: absolute;
  top: 90px;
  right: 30px;
  z-index: 20;
  display: none;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 20px;
}

/* TOP HEADER */
.main-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 15;
  padding: 14px 0;
  background: transparent;
}

.main-header .nav-link {
  color: #fff !important;
  font-weight: 800;
  margin-left: 24px;
  font-size: 14px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.main-header .nav-link:hover {
  color: #ffe071 !important;
}

.top-logo img {
  height: 52px;
  object-fit: contain;
}

.invisible-logo {
  width: 170px;
  height: 55px;
  display: block;
  visibility: hidden;
}

/* FIXED HEADER */
.scroll-header {
  position: fixed;
  top: -95px;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(0, 32, 76, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: all 0.35s ease;
  padding: 10px 0;
}

.scroll-header.show {
  top: 0;
}

.scroll-header .nav-link {
  color: #fff !important;
  font-weight: 800;
  margin-left: 22px;
  margin-right: 0;
  font-size: 14px;
}

.sticky-logo-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sticky-maple-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.scroll-logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  color: #fff;
  padding-top: 145px;
}

.hero-brand-block {
  display: inline-block;
}

.maple-hero-logo {
  width: 90px;
  height: 90px;
  margin-bottom: 12px;
  margin-left: 50px;

  background: #ffffff;
  border: 3px solid #ffffff;
  border-radius: 50%;
  padding: 8px;

  object-fit: contain;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.hero-brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.hero-complete-logo {
  width: min(620px, 90vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
}

.hero-title {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 850;
  line-height: 1.18;
  max-width: 700px;
  margin-bottom: 24px;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}

.hero-title span {
  color: #00aaff;
}

.hero-subtext {
  font-size: 18px;
  max-width: 650px;
  line-height: 1.7;
  margin-bottom: 26px;
  color: #eefaff;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.hero-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 34px;
}

.hero-mini-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 750;
  line-height: 1.25;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.mini-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 25px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.mini-blue {
  background: #079cff;
}

.mini-purple {
  background: #7549e6;
}

.mini-green {
  background: #2fbf66;
}

.mini-orange {
  background: #ff9700;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-main {
  background: #fff;
  color: #005fc7;
  border-radius: 50px;
  padding: 14px 30px;
  font-weight: 850;
  border: none;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-main:hover {
  background: #eaf7ff;
  color: #004fa8;
}

.btn-video {
  background: linear-gradient(135deg, #00b7ff, #006edb);
  color: #fff;
  border-radius: 50px;
  padding: 14px 30px;
  font-weight: 850;
  border: none;
  box-shadow: 0 14px 35px rgba(0, 80, 180, 0.35);
  display: inline-flex;
  align-items: center;
}

.btn-video:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* SECTIONS */
section {
  padding: 85px 0;
}

.section-title {
  text-align: center;
  font-weight: 900;
  color: #17345b;
  font-size: 38px;
  margin-bottom: 12px;
}

.section-subtitle {
  max-width: 760px;
  margin: auto;
  text-align: center;
  color: #60738c;
  margin-bottom: 45px;
  line-height: 1.7;
}

/* FEATURE CARDS */
.feature-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 18px 45px rgba(20, 70, 120, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #006edb, #00afe7);
  color: white;
}

.feature-card:hover p,
.feature-card:hover h5 {
  color: white;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #eaf3ff;
  color: #6f43d8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.feature-card h5 {
  font-weight: 850;
  color: #12284c;
}

.feature-card p {
  color: #66758c;
  font-size: 14px;
  line-height: 1.7;
}

/* INDUSTRIES */
.industry-card {
  border-radius: 22px;
  padding: 28px;
  min-height: 135px;
  font-weight: 850;
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.industry-card i {
  font-size: 28px;
  margin-bottom: 18px;
  display: block;
}

.industry-card:hover {
  transform: scale(1.05);
  color: white !important;
  background: #005fc7 !important;
  box-shadow: 0 20px 45px rgba(0, 95, 199, 0.25);
}

.bg-purple-light {
  background: #f0e4ff;
  color: #7836d6;
}

.bg-blue-light {
  background: #e3f2ff;
  color: #0069c9;
}

.bg-green-light {
  background: #e5faef;
  color: #00945d;
}

.bg-orange-light {
  background: #fff0df;
  color: #e57200;
}

.bg-red-light {
  background: #ffe8e8;
  color: #dd3030;
}

.bg-cyan-light {
  background: #e0fbfb;
  color: #009898;
}

.bg-yellow-light {
  background: #fff7da;
  color: #c58a00;
}

.bg-pink-light {
  background: #ffe8f3;
  color: #d62a83;
}

/* INFO BOX */
.info-box {
  background: white;
  border-radius: 24px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 18px 45px rgba(20, 70, 120, 0.08);
}

.info-box h4 {
  font-weight: 900;
  margin-bottom: 25px;
  color: #14345c;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 13px 0;
  border-bottom: 1px solid #edf2f7;
  font-size: 15px;
}

.info-list i {
  color: #006edb;
  margin-right: 10px;
}

/* CTA */
.cta-box {
  background: linear-gradient(135deg, #006ad1, #7038cf);
  border-radius: 26px;
  padding: 42px;
  color: white;
  box-shadow: 0 25px 60px rgba(0, 90, 190, 0.25);
}

.cta-box h2 {
  font-weight: 900;
}

/* FOOTER */
footer {
background: linear-gradient(135deg, #0059b8, #003f8a);  color: #dbe8ed;
  padding-top: 70px;
}

footer h5 {
  color: white;
  font-weight: 800;
  margin-bottom: 24px;
}

footer p,
footer li {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.8;
}

footer ul {
  list-style: none;
  padding: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  margin-top: 50px;
  font-size: 13px;
  color: #93a9b0;
}

/* GO TOP */
.go-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  background: #006edb;
  color: white;
  border-radius: 50%;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* TABLET */
@media (max-width: 991px) {
  .main-header {
    background: rgba(0, 61, 110, 0.65);
  }

  .navbar-collapse {
    background: rgba(0, 48, 95, 0.95);
    padding: 18px;
    border-radius: 18px;
    margin-top: 15px;
  }

  .main-header .nav-link,
  .scroll-header .nav-link {
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
  }

  .hero-content {
    text-align: center;
  }

  .hero-brand-row,
  .hero-feature-row,
  .hero-actions {
    justify-content: center;
  }

  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .scroll-header .container {
    flex-direction: row;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .hero-section {
    min-height: 100vh;
  }

  .hero-bg {
    background-position: 72% center;
    background-size: cover;
  }

  .hero-content {
    padding-top: 120px;
    align-items: flex-start;
  }

  .hero-brand-row {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
  }

  .hero-complete-logo {
    width: min(430px, 90vw);
  }

  .maple-hero-logo {
    width: 150px;
    margin-left: 20px;
  }

  .hero-title {
    font-size: 31px;
    margin-bottom: 16px;
  }

  .hero-subtext {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .hero-feature-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    width: 100%;
    margin-bottom: 24px;
  }

  .hero-mini-feature {
    width: 100%;
    justify-content: flex-start;
    background: #000000;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
  }

  .mini-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 20px;
    flex: 0 0 42px;
  }

  .hero-actions {
    justify-content: center;
  }

  .btn-video,
  .btn-main {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }

.sticky-maple-logo {
  width: 58px;
  height: 58px;

  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50%;
  padding: 6px;

  object-fit: contain;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

  .scroll-logo img {
    height: 42px;
  }

  .scroll-header .nav-link {
    margin-left: 0;
    font-size: 13px;
  }

  .scroll-header {
    overflow-x: auto;
  }

  .section-title {
    font-size: 30px;
  }

  section {
    padding: 65px 0;
  }
}
@media (max-width: 576px) {
  .scroll-header {
    display: none !important;
  }
}
@media (max-width: 576px) {
  .main-header {
    display: none !important;
  }

  .scroll-header {
    display: none !important;
  }
}
 .trackez-section *,
  .trackez-section *::before,
  .trackez-section *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  .trackez-section {
    font-family: 'Poppins', sans-serif;
    background: #f4f8fc;
    color: #263238;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    position: relative;
  }

  .trackez-section a {
    text-decoration: none;
  }

  .trackez-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .trackez-top-nav {
    background: linear-gradient(90deg, #0d47a1, #1565c0);
    padding: 14px 20px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 8px 22px rgba(13, 71, 161, 0.18);
  }

  .trackez-top-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .trackez-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }

  .trackez-menu a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.25s ease;
  }

  .trackez-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.25s ease;
  }

  .trackez-menu a:hover::after {
    width: 100%;
  }

  .section-trackez {
    padding: 75px 20px;
    scroll-margin-top: 90px;
  }

  .section-heading {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 45px;
  }

  .section-heading h2 {
    font-size: 38px;
    color: #17365d;
    margin: 0 0 12px;
    font-weight: 800;
    letter-spacing: -0.4px;
  }

  .section-heading p {
    font-size: 16px;
    color: #607283;
    margin: 0;
    line-height: 1.8;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  .feature-box {
    background: #fff;
    border-radius: 22px;
    padding: 28px 22px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border: 1px solid #e7eef8;
    transition: all 0.32s ease;
    height: 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .feature-click-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.28);
    z-index: 2;
    transition: all 0.3s ease;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, #eef5ff, #dceaff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #6a35b1;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
  }

  .feature-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #22344a;
    margin: 0 0 10px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
  }

  .feature-box p {
    font-size: 14px;
    color: #5d6d7d;
    margin: 0;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
  }

  .feature-box:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
    border-color: #1565c0;
    background: linear-gradient(135deg, #0d47a1, #1565c0, #6a35b1);
  }

  .feature-box:hover h3,
  .feature-box:hover p {
    color: #fff;
  }

  .feature-box:hover .feature-icon {
    background: rgba(255,255,255,0.16);
    color: #fff;
  }

  .feature-box:hover .feature-click-icon {
    background: rgba(255,255,255,0.16);
    color: #fff;
    box-shadow: none;
  }

  .industries-section {
    background: linear-gradient(180deg, #f9fbff 0%, #f2f7fd 100%);
  }

  .industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  .industry-box {
    border-radius: 22px;
    padding: 24px 20px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
  }

  .industry-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.12);
  }

  .industry-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
  }

  .industry-box h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
    transition: all 0.3s ease;
  }

  .industry-box.industry-purple {
    background: #f4ecff;
    border-color: #e3d0ff;
  }
  .industry-box.industry-purple .industry-icon {
    background: #e2ccff;
    color: #7a31d3;
  }
  .industry-box.industry-purple h3 {
    color: #6c2bc0;
  }
  .industry-box.industry-purple:hover {
    background: linear-gradient(135deg, #7a31d3, #9c4dff);
    border-color: #7a31d3;
  }
  .industry-box.industry-purple:hover .industry-icon {
    background: rgba(255,255,255,0.18);
    color: #fff;
  }
  .industry-box.industry-purple:hover h3 {
    color: #fff;
  }

  .industry-box.industry-blue {
    background: #eaf4ff;
    border-color: #cfe4ff;
  }
  .industry-box.industry-blue .industry-icon {
    background: #d4e9ff;
    color: #1565c0;
  }
  .industry-box.industry-blue h3 {
    color: #1255a3;
  }
  .industry-box.industry-blue:hover {
    background: linear-gradient(135deg, #1565c0, #1e88e5);
    border-color: #1565c0;
  }
  .industry-box.industry-blue:hover .industry-icon {
    background: rgba(255,255,255,0.18);
    color: #fff;
  }
  .industry-box.industry-blue:hover h3 {
    color: #fff;
  }

  .industry-box.industry-green {
    background: #eafbf3;
    border-color: #c9f0da;
  }
  .industry-box.industry-green .industry-icon {
    background: #d1f5e1;
    color: #1f9d63;
  }
  .industry-box.industry-green h3 {
    color: #198754;
  }
  .industry-box.industry-green:hover {
    background: linear-gradient(135deg, #198754, #2fbf71);
    border-color: #198754;
  }
  .industry-box.industry-green:hover .industry-icon {
    background: rgba(255,255,255,0.18);
    color: #fff;
  }
  .industry-box.industry-green:hover h3 {
    color: #fff;
  }

  .industry-box.industry-orange {
    background: #fff4e8;
    border-color: #ffdcbc;
  }
  .industry-box.industry-orange .industry-icon {
    background: #ffe5cc;
    color: #f57c00;
  }
  .industry-box.industry-orange h3 {
    color: #d96a00;
  }
  .industry-box.industry-orange:hover {
    background: linear-gradient(135deg, #f57c00, #ff9f1a);
    border-color: #f57c00;
  }
  .industry-box.industry-orange:hover .industry-icon {
    background: rgba(255,255,255,0.18);
    color: #fff;
  }
  .industry-box.industry-orange:hover h3 {
    color: #fff;
  }

  .industry-box.industry-red {
    background: #fff0f0;
    border-color: #ffd1d1;
  }
  .industry-box.industry-red .industry-icon {
    background: #ffdada;
    color: #d64545;
  }
  .industry-box.industry-red h3 {
    color: #bf3030;
  }
  .industry-box.industry-red:hover {
    background: linear-gradient(135deg, #d64545, #ef5350);
    border-color: #d64545;
  }
  .industry-box.industry-red:hover .industry-icon {
    background: rgba(255,255,255,0.18);
    color: #fff;
  }
  .industry-box.industry-red:hover h3 {
    color: #fff;
  }

  .industry-box.industry-teal {
    background: #eafcfc;
    border-color: #c9efef;
  }
  .industry-box.industry-teal .industry-icon {
    background: #d5f5f5;
    color: #0f9d9d;
  }
  .industry-box.industry-teal h3 {
    color: #0a7f7f;
  }
  .industry-box.industry-teal:hover {
    background: linear-gradient(135deg, #0f9d9d, #20c7c7);
    border-color: #0f9d9d;
  }
  .industry-box.industry-teal:hover .industry-icon {
    background: rgba(255,255,255,0.18);
    color: #fff;
  }
  .industry-box.industry-teal:hover h3 {
    color: #fff;
  }

  .industry-box.industry-yellow {
    background: #fffbe8;
    border-color: #f7ecb5;
  }
  .industry-box.industry-yellow .industry-icon {
    background: #fff2b8;
    color: #b8860b;
  }
  .industry-box.industry-yellow h3 {
    color: #9a7300;
  }
  .industry-box.industry-yellow:hover {
    background: linear-gradient(135deg, #b8860b, #d4a017);
    border-color: #b8860b;
  }
  .industry-box.industry-yellow:hover .industry-icon {
    background: rgba(255,255,255,0.18);
    color: #fff;
  }
  .industry-box.industry-yellow:hover h3 {
    color: #fff;
  }

  .industry-box.industry-pink {
    background: #fff0f7;
    border-color: #ffd3e8;
  }
  .industry-box.industry-pink .industry-icon {
    background: #ffdff0;
    color: #d63384;
  }
  .industry-box.industry-pink h3 {
    color: #b8256f;
  }
  .industry-box.industry-pink:hover {
    background: linear-gradient(135deg, #d63384, #ec5aa7);
    border-color: #d63384;
  }
  .industry-box.industry-pink:hover .industry-icon {
    background: rgba(255,255,255,0.18);
    color: #fff;
  }
  .industry-box.industry-pink:hover h3 {
    color: #fff;
  }

  .contact-cta-wrap {
    padding-top: 10px;
  }

  .contact-cta-box {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 45%, #6a35b1 100%);
    border-radius: 30px;
    padding: 42px 36px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(13, 71, 161, 0.24);
  }

  .contact-cta-box::before,
  .contact-cta-box::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
  }

  .contact-cta-box::before {
    width: 240px;
    height: 240px;
    top: -100px;
    right: -70px;
  }

  .contact-cta-box::after {
    width: 180px;
    height: 180px;
    bottom: -80px;
    left: -60px;
  }

  .contact-cta-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 26px;
    align-items: center;
  }

  .contact-cta-content h3 {
    font-size: 34px;
    margin: 0 0 14px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.4px;
  }

  .contact-cta-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.95);
    max-width: 760px;
  }

  .book-demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fff;
    color: #0d47a1;
    font-weight: 700;
    font-size: 18px;
    padding: 18px 34px;
    min-width: 220px;
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.16);
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.35);
  }

  .book-demo-btn:hover {
    transform: translateY(-3px);
    color: #0d47a1;
  }

  .spec-benefits-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
  }

  .info-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border: 1px solid #e8eef8;
    height: 100%;
    transition: all 0.3s ease;
  }

  .info-card h3 {
    font-size: 28px;
    color: #17365d;
    margin: 0 0 20px;
    font-weight: 800;
    transition: all 0.3s ease;
  }

  .spec-list,
  .benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .spec-list li,
  .benefit-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #edf2f8;
    transition: all 0.3s ease;
  }

  .spec-list li:last-child,
  .benefit-list li:last-child {
    border-bottom: none;
  }

  .spec-list i,
  .benefit-list i {
    color: #1565c0;
    font-size: 18px;
    margin-top: 5px;
    min-width: 20px;
    transition: all 0.3s ease;
  }

  .spec-list strong,
  .benefit-list strong {
    color: #18385f;
    transition: all 0.3s ease;
  }

  .spec-list div,
  .benefit-list div {
    color: #536577;
    transition: all 0.3s ease;
  }

  .info-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #0d47a1, #1565c0, #6a35b1);
    border-color: #1565c0;
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
  }

  .info-card:hover h3,
  .info-card:hover .spec-list i,
  .info-card:hover .benefit-list i,
  .info-card:hover .spec-list strong,
  .info-card:hover .benefit-list strong,
  .info-card:hover .spec-list div,
  .info-card:hover .benefit-list div {
    color: #fff;
  }

  .info-card:hover .spec-list li,
  .info-card:hover .benefit-list li {
    border-bottom-color: rgba(255,255,255,0.18);
  }

  .go-top-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d47a1, #1565c0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 10px 24px rgba(13, 71, 161, 0.28);
    z-index: 9999;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .go-top-btn:hover {
    color: #fff;
    transform: translateY(-3px);
  }

  .go-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .trackez-modal {
    position: fixed;
    inset: 0;
    background: rgba(8, 20, 40, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
  }

  .trackez-modal.active {
    opacity: 1;
    visibility: visible;
  }

  .trackez-modal-box {
    width: 100%;
    max-width: 620px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
    transform: translateY(20px) scale(0.96);
    transition: all 0.25s ease;
  }

  .trackez-modal.active .trackez-modal-box {
    transform: translateY(0) scale(1);
  }

  .trackez-modal-header {
    background: linear-gradient(135deg, #0d47a1, #6a35b1);
    color: #fff;
    padding: 24px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }

  .trackez-modal-title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .trackez-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
  }

  .trackez-modal-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
  }

  .trackez-modal-close {
    border: none;
    background: rgba(255,255,255,0.16);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
  }

  .trackez-modal-body {
    padding: 28px 26px 26px;
  }

  .trackez-modal-body p {
    font-size: 15px;
    line-height: 1.8;
    color: #536577;
    margin: 0 0 16px;
  }

  .trackez-modal-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
  }

  .trackez-modal-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    color: #314659;
    border-bottom: 1px solid #edf2f8;
  }

  .trackez-modal-list li:last-child {
    border-bottom: none;
  }

  .trackez-modal-list i {
    color: #1565c0;
    margin-top: 4px;
  }

  @media (max-width: 1100px) {
    .features-grid,
    .industries-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .spec-benefits-grid,
    .contact-cta-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 767px) {
    .trackez-top-nav-inner {
      justify-content: center;
    }

    .trackez-menu {
      gap: 16px;
      justify-content: center;
    }

    .trackez-menu a {
      font-size: 14px;
    }

    .section-trackez {
      padding: 60px 15px;
      scroll-margin-top: 85px;
    }

    .section-heading h2,
    .info-card h3,
    .contact-cta-content h3 {
      font-size: 28px;
    }

    .features-grid,
    .industries-grid {
      grid-template-columns: 1fr;
    }

    .feature-box,
    .industry-box,
    .info-card {
      padding: 22px 18px;
    }

    .contact-cta-box {
      padding: 30px 20px;
      border-radius: 24px;
    }

    .book-demo-btn {
      width: 100%;
      min-width: 100%;
    }

    .trackez-modal-header,
    .trackez-modal-body {
      padding-left: 18px;
      padding-right: 18px;
    }

    .trackez-modal-title {
      font-size: 20px;
    }
  }




/* =====================================================
   RESPONSIVE FIX FOR HERO + BOOK DEMO POPUP
   Add this at the END of your CSS
===================================================== */

/* Better full screen handling */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* HERO SHOULD GROW WHEN CONTENT IS BIG */
.hero-section {
  min-height: 100vh;
  height: auto;
}

.hero-content {
  min-height: 100vh;
  padding-top: clamp(90px, 11vh, 145px);
  padding-bottom: 55px;
  align-items: center;
}

.hero-title {
  font-size: clamp(34px, 4vw, 58px);
}

.hero-subtext {
  font-size: clamp(15px, 1.35vw, 18px);
}

.hero-complete-logo {
  width: clamp(300px, 42vw, 620px);
}

.hero-feature-row {
  gap: clamp(12px, 1.8vw, 26px);
}

.hero-actions {
  margin-bottom: 20px;
}

/* FIX FOR SMALL LAPTOP / LOW HEIGHT SCREENS */
@media (max-height: 760px) and (min-width: 992px) {
  .hero-content {
    padding-top: 105px;
    padding-bottom: 45px;
    align-items: flex-start;
  }

  .hero-complete-logo {
    width: 470px;
  }

  .hero-title {
    font-size: 42px;
    line-height: 1.12;
    margin-bottom: 16px;
  }

  .hero-subtext {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px;
    max-width: 600px;
  }

  .hero-feature-row {
    gap: 14px;
    margin-bottom: 22px;
  }

  .mini-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .hero-mini-feature {
    font-size: 14px;
  }

  .btn-main,
  .btn-video {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* VERY LOW HEIGHT SCREENS */
@media (max-height: 650px) and (min-width: 992px) {
  .hero-content {
    padding-top: 88px;
  }

  .hero-complete-logo {
    width: 410px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtext {
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-feature-row {
    margin-bottom: 16px;
  }

  .mini-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .hero-actions {
    gap: 10px;
  }
}

/* POPUP RESPONSIVE FIX */
.demo-popup-overlay {
  padding: 16px;
  overflow-y: auto;
  align-items: center;
}

.demo-popup-card {
  width: min(980px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}

.demo-popup-grid {
  min-height: auto;
}

.demo-popup-left,
.demo-popup-right {
  min-height: auto;
}

/* Reduce popup size on laptop low resolution */
@media (max-height: 760px) and (min-width: 769px) {
  .demo-popup-card {
    max-height: calc(100vh - 24px);
  }

  .demo-popup-left {
    padding: 26px 28px;
  }

  .demo-popup-right {
    padding: 26px 30px;
  }

  .demo-popup-left h2 {
    font-size: 27px;
    margin-bottom: 12px;
  }

  .demo-popup-left p {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .demo-popup-badge {
    margin-bottom: 14px;
    padding: 7px 12px;
  }

  .demo-popup-benefits {
    gap: 10px;
  }

  .demo-popup-benefit {
    padding: 10px 12px;
  }

  .demo-popup-benefit strong {
    font-size: 13px;
  }

  .demo-popup-benefit span {
    font-size: 11px;
  }

  .demo-form-title {
    margin-bottom: 14px;
  }

  .demo-form-title h3 {
    font-size: 24px;
    margin-bottom: 4px;
  }

  .demo-form-title p {
    font-size: 12px;
  }

  .demo-form .form-group {
    margin-bottom: 12px;
  }

  .demo-form label {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .demo-form input,
  .demo-form textarea {
    padding: 12px 14px 12px 42px;
    font-size: 13px;
    border-radius: 14px;
  }

  .demo-form textarea {
    min-height: 78px;
  }

  .demo-submit-btn {
    padding: 13px 18px;
    border-radius: 15px;
    font-size: 14px;
  }

  .demo-form-note {
    margin-top: 8px;
    font-size: 11px;
  }

  .demo-popup-close {
    width: 36px;
    height: 36px;
    right: 14px;
    top: 14px;
  }
}

/* Popup becomes one column on medium/small screens */
@media (max-width: 850px) {
  .demo-popup-overlay {
    align-items: flex-start;
    padding: 12px;
  }

  .demo-popup-card {
    width: 100%;
    max-height: calc(100vh - 24px);
    border-radius: 22px;
  }

  .demo-popup-grid {
    grid-template-columns: 1fr;
  }

  .demo-popup-left {
    padding: 24px 20px;
  }

  .demo-popup-right {
    padding: 24px 20px;
  }

  .demo-popup-left h2 {
    font-size: 25px;
  }

  .demo-popup-left p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Mobile hero fix */
@media (max-width: 576px) {
  .hero-section {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding-top: 55px;
    padding-bottom: 40px;
    text-align: center;
  }

  .hero-complete-logo {
    width: min(330px, 88vw);
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.15;
  }

  .hero-subtext {
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-feature-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hero-mini-feature {
    padding: 10px;
    font-size: 12px;
  }

  .mini-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
    flex: 0 0 38px;
  }

  .hero-actions {
    width: 100%;
    gap: 12px;
  }

  .btn-video,
  .btn-main {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
  }

  .demo-popup-overlay {
    padding: 10px;
    align-items: flex-start;
  }

  .demo-popup-card {
    width: 100%;
    max-height: calc(100vh - 20px);
    border-radius: 20px;
  }

  .demo-popup-left {
    padding: 22px 18px;
  }

  .demo-popup-right {
    padding: 22px 18px;
  }

  .demo-popup-left h2 {
    font-size: 23px;
  }

  .demo-form-title h3 {
    font-size: 23px;
  }

  .demo-form input,
  .demo-form textarea {
    font-size: 13px;
  }
}


/* =====================================================
   FINAL POPUP FIX - BUTTON ALWAYS VISIBLE
   Paste at the VERY BOTTOM of CSS
===================================================== */

.demo-popup-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  overflow: hidden !important;
  padding: 14px !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
}

.demo-popup-overlay.active {
  display: flex !important;
}

.demo-popup-card {
  width: min(980px, calc(100vw - 28px)) !important;
  height: calc(100dvh - 28px) !important;
  max-height: calc(100dvh - 28px) !important;
  overflow: hidden !important;
  border-radius: 28px !important;
}

.demo-popup-grid {
  height: 100% !important;
  min-height: 0 !important;
  display: grid !important;
  grid-template-columns: 0.95fr 1.05fr !important;
}

.demo-popup-left {
  height: 100% !important;
  overflow: hidden !important;
  padding: 32px 34px !important;
}

.demo-popup-right {
  height: 100% !important;
  overflow-y: auto !important;
  padding: 32px 38px 20px !important;
}

/* Form compact spacing */
.demo-popup-left h2 {
  font-size: clamp(25px, 3vw, 34px) !important;
  line-height: 1.12 !important;
  margin-bottom: 14px !important;
}

.demo-popup-left p {
  font-size: 14px !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.demo-popup-badge {
  margin-bottom: 18px !important;
}

.demo-popup-benefits {
  gap: 12px !important;
}

.demo-popup-benefit {
  padding: 11px 13px !important;
}

.demo-form-title {
  margin-bottom: 18px !important;
}

.demo-form-title h3 {
  font-size: 27px !important;
  margin-bottom: 6px !important;
}

.demo-form-title p {
  font-size: 13px !important;
}

.demo-form .form-group {
  margin-bottom: 13px !important;
}

.demo-form label {
  margin-bottom: 6px !important;
  font-size: 13px !important;
}

.demo-form input,
.demo-form textarea {
  padding: 12px 14px 12px 45px !important;
  font-size: 13px !important;
  border-radius: 15px !important;
}

.demo-form textarea {
  min-height: 82px !important;
}

.demo-submit-btn {
  padding: 13px 18px !important;
  font-size: 15px !important;
  border-radius: 15px !important;
  margin-top: 4px !important;
}

.demo-form-note {
  margin-top: 8px !important;
  font-size: 11px !important;
}

/* Close button */
.demo-popup-close {
  width: 36px !important;
  height: 36px !important;
  right: 16px !important;
  top: 16px !important;
}

/* Extra fix for laptop screens like your screenshot */
@media (max-height: 650px) and (min-width: 769px) {
  .demo-popup-card {
    height: calc(100dvh - 18px) !important;
    max-height: calc(100dvh - 18px) !important;
  }

  .demo-popup-overlay {
    padding: 9px !important;
  }

  .demo-popup-left {
    padding: 24px 30px !important;
  }

  .demo-popup-right {
    padding: 24px 34px 16px !important;
  }

  .demo-popup-left h2 {
    font-size: 28px !important;
  }

  .demo-popup-left p {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  .demo-popup-benefit span {
    display: none !important;
  }

  .demo-popup-benefit {
    padding: 10px 12px !important;
  }

  .demo-form textarea {
    min-height: 68px !important;
  }

  .demo-form input {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .demo-submit-btn {
    padding: 12px 16px !important;
  }
}

/* Tablet and mobile popup */
@media (max-width: 768px) {
  .demo-popup-overlay {
    align-items: flex-start !important;
    overflow-y: auto !important;
    padding: 10px !important;
  }

  .demo-popup-card {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    border-radius: 22px !important;
  }

  .demo-popup-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    height: auto !important;
  }

  .demo-popup-left,
  .demo-popup-right {
    height: auto !important;
    overflow: visible !important;
    padding: 22px 18px !important;
  }

  .demo-popup-left h2 {
    font-size: 24px !important;
  }

  .demo-form textarea {
    min-height: 80px !important;
  }
}
/* Smaller Book Demo Popup Window */
.demo-popup-card {
  width: min(880px, calc(100vw - 40px)) !important;
  height: auto !important;
  max-height: calc(100dvh - 40px) !important;
  border-radius: 24px !important;
}

.demo-popup-grid {
  grid-template-columns: 0.9fr 1fr !important;
  min-height: auto !important;
}

.demo-popup-left {
  padding: 30px 28px !important;
}

.demo-popup-right {
  padding: 30px 32px 22px !important;
}

.demo-popup-left h2 {
  font-size: 30px !important;
}

.demo-popup-left p {
  font-size: 14px !important;
}

.demo-form-title h3 {
  font-size: 26px !important;
}

.demo-form input,
.demo-form textarea {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.demo-form textarea {
  min-height: 80px !important;
}

/* Small laptop height fix */
@media (max-height: 700px) and (min-width: 769px) {
  .demo-popup-card {
    width: min(840px, calc(100vw - 36px)) !important;
    max-height: calc(100dvh - 24px) !important;
  }

  .demo-popup-left {
    padding: 24px 26px !important;
  }

  .demo-popup-right {
    padding: 24px 28px 18px !important;
  }

  .demo-popup-left h2 {
    font-size: 26px !important;
  }

  .demo-popup-benefit span {
    display: none !important;
  }

  .demo-form textarea {
    min-height: 65px !important;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  margin-top: 50px;
  font-size: 13px;
  color: #93a9b0;
  text-align: center;
  width: 100%;
}
.footer-logo {
  width: 90px;
  height: auto;
  display: block;
  margin-bottom: 18px;
  background: #ffffff;
  padding: 8px;
  border-radius: 10%;
}
