:root {
  /* Brand Colors */
  --ht-brand-navy: #061C37;
  --ht-brand-blue: #1d4ed8;
  --ht-brand-black: #0d0d0d;
  --ht-brand-black-alt: #0b0b0b;
  --ht-brand-white: #ffffff;

  /* Neutrals & Backgrounds */
  --ht-bg-light: #f8f9fa;
  --ht-bg-soft: #D8D8D8;
  --ht-bg-muted: #f5f5f5;
  --ht-bg-alt: #e6e6e6;
  --ht-border-light: #e5e5e5;
  --ht-dot-bg: #f1f1f1;

  /* Text Colors */
  --ht-text-main: #111111;
  --ht-htag:#000;
  --ht-text-body: #9D9D9D;
  --ht-text-muted: #AAAAAA;
  --ht-text-light: #777777;
  --ht-text-soft: #888888;
  --ht-text-footer: #555555;

  /* Overlays & Shadows */
  --ht-shadow-sm: rgba(0, 0, 0, 0.06);
  --ht-shadow-md: rgba(0, 0, 0, 0.08);
  --ht-shadow-lg: rgba(0, 0, 0, 0.10);
  --ht-overlay-white: rgba(255, 255, 255, 0.12);
}

@import url('https://fonts.googleapis.com/css2?family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap');

body { 
  font-family: "DM Mono", monospace; 
  color: var(--ht-text-body); 
}

h1, h2, h3, h4, h5, h6 { 
  font-family: "TikTok Sans", sans-serif; 
  color: var(--ht-brand-navy);
      line-height: 95%;
}
.text-muted{
  color: var(--ht-text-muted) !important;
}
p{
     font-weight: 400;
     font-size: 18px;
}
.ht-hero { padding: 120px 0 20px; }
.ht-hero-workforce{
       padding: 220px 0 120px; 
}
.ht-hero-career{
       padding: 220px 0 80px; 
}
.ht-hero-title {  color: var(--ht-htag);   font-size: 54px;
    font-weight: 500;line-height: 95%; }
.ht-sub { color: var(--ht-text-muted); max-width: 520px; }
.ht-btn { border-radius: 30px; padding: 10px 24px;     background: var(--ht-brand-navy);
    color: var(--ht-brand-white);}

.ht-section { padding: 40px 0; }
.ht-card { 
  border-radius: 16px; 
margin: 10px;

  height: 100%; 
}
.ht-img { width: 100%; border-radius: 16px; object-fit: cover; }

.ht-dark { 
  background: var(--ht-brand-black); 
  color: var(--ht-brand-white); 
}
.ht-footer { 
  padding: 80px 0 40px; 
  color: var(--ht-text-light); 
  font-size: 14px; 
}
.pdleft{
        padding-left: 32px;
}
/* NAVBAR */
.ht-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  padding: 28px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.ht-navbar.is-sticky {
  background: var(--ht-brand-white);
  box-shadow: 0 8px 24px var(--ht-shadow-md);
  padding: 14px 0;
}
.ht-nav-inner {
  display: flex;
  align-items: center;
}
.ht-logo {
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ht-brand-navy);
}

.ht-nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.ht-nav-link {
  text-decoration: none;
  color: var(--ht-text-body);
  font-weight: 400;
}
.ht-nav-link:hover { text-decoration: underline; }
.ht-cta {
  background: var(--ht-brand-navy);
  color: var(--ht-brand-white);
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
}
.ht-cta span { margin-left: 6px; }

/* PROCESS */
.ht-process {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.ht-process-line {
       position: absolute;
top: 20px;
    left: 50%;
    width: 2px;
    height: 0;
    background: #000;
    transform: translateX(-50%);
    transition: background 0.6s ease;
    z-index: 2;
}
  body.is-dark-blue .ht-process-line-bg {
      /* background: rgba(255,255,255,0.1); */
    }
  .ht-process-line-bg {
     position: absolute;
    top: 20px;
    left: 50%;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
    z-index: 1;
    height: 80%;
    }
.ht-process-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 0;
}
.ht-process-row.reverse { flex-direction: row-reverse; }
.ht-process-left, .ht-process-right { width: 42%; }
.ht-process-left { text-align: right; }
.ht-process-row.reverse .ht-process-left { text-align: left; }
.ht-process-right img { max-width: 260px; }
.ht-process-right{
    text-align: right;
}
.ht-process-left p{
        line-height: 123%;
            margin: 0;
    margin-top: 16px;
        font-size: 16px;
}
.text-left{
    text-align: left;

}
.ht-po-horz{
    position: relative;
    border-left: 1px solid #EBEBEB;
        padding: 20px 0;
}
.fullmax{
    max-width: 100%;
}
.ht-process-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background: var(--ht-dot-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ht-brand-navy);
      z-index: 9;
}
.ht-process-dot.active {
  background: var(--ht-text-main);
  color: var(--ht-brand-white);
}



/* GROUNDING SECTION */
.ht-grounding-image {
  background: var(--ht-bg-soft);
  border-radius: 20px;
  padding: 6px;
}
.ht-grounding-image img { width: 100%; border-radius: 16px; }
.ht-grounding-steps {
  background: var(--ht-bg-soft);
  border-radius: 12px;
  padding: 6px;
  height: 100%;
}
.ht-step-item {
  background: var(--ht-brand-white);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ht-brand-navy);
}
.ht-step-item:last-child { margin-bottom: 0; }

/* ENVIRONMENTS SECTION */
.ht-env-card {
  border-radius: 20px;
  /* overflow: hidden; */
  background: var(--ht-brand-white);
  height: 100%;
  margin: 10px;
}
.ht-env-card img { width: 100%; }
.ht-env-content { padding: 16px 4px 0; }
.ht-env-content h6 { margin-bottom: 8px !important;font-size: 20px; }
.ht-env-content p { font-size: 14px; color: var(--ht-text-muted);    line-height: 100%; }

/* DATA BOTTLENECK */
.ht-bottleneck-card {
  background: var(--ht-brand-white);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  box-shadow: 0 8px 24px var(--ht-shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.ht-bottleneck-card:hover {
  box-shadow: 0 14px 40px var(--ht-shadow-lg);
  transform: translateY(-4px);
}
.ht-bottleneck-icon {
  font-size: 22px;
  margin-bottom: 35px;
  opacity: 0.6;
}
.ht-bottleneck-card h6 {     font-weight: 500;    line-height: 146%;
    margin-bottom: 10px;
    font-size: 20px; }
.ht-bottleneck-card p { font-size: 16px; color: var(--ht-text-muted);margin: 0;line-height: 120%; }

/* PRODUCT OVERVIEW */
#product-overview {     padding: 50px 0;}
.ht-po-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #1E1E1E;
    background: #F4F4F4;
    padding: 10px;
}
.ht-po-visual img { width: 100%;  }
.ht-po-item {
  position: relative;
  padding-left: 32px;
  margin-bottom: 44px;
  opacity: 0;
}
.ht-po-item:last-child{
    margin-bottom: 0;
}
.ht-po-line {
  position: absolute;
left: -1px;
  top: 19px;
  width: 2px;
  height: 0;
      /* height: 21%; */
  background: #000;
}
.ht-po-item h6 { font-weight: 600; margin-bottom: 8px; color: var(--ht-brand-navy);}
.ht-po-item p {
  font-size: 14px;
  /* line-height: 1.8; */
  color: var(--ht-text-light);
}

/* WHY HUMATRACK */
.ht-why-card {
  background: var(--ht-bg-muted);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
}
.ht-why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ht-brand-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 18px;
  box-shadow: 0 6px 16px var(--ht-shadow-md);
}
.ht-why-card h6 { font-weight: 500;     margin-bottom: 12px;   font-size: 20px;color: #202020; }
.ht-why-card p { font-size: 14px; color: #9D9D9D;font-size: 16px;

    line-height: 146%; }

/* FINAL ENGINE CTA */
#final-engine { padding: 40px 0; }
.ht-engine-box {
  background: var(--ht-brand-black-alt);
  color: var(--ht-brand-white);
  border-radius: 32px;
  padding: 100px 24px;
  text-align: center;
  background-image: radial-gradient(var(--ht-overlay-white) 1px, transparent 1px);
  background-size: 8px 8px;
}
.ht-engine-box h2 {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 32px;
  color: #fff;
}
.ht-engine-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ht-brand-white);
  color: var(--ht-brand-black-alt);
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 400;
  text-decoration: none;
}
.ht-engine-bars { margin-top: 5px; }
.ht-engine-bars span {
  display: block;
  height: 14px;
  background: var(--ht-brand-black-alt);
  border-radius: 999px;
  margin-bottom: 5px;
}
.ht-engine-bars span:nth-child(1) { height: 40px; }
.ht-engine-bars span:nth-child(2) { height: 20px; }
.ht-step-dot { left: 8px; transform: translateY(-50%); }

/* EXACT FOOTER (REFERENCE MATCH) */
.ht-footer-ref {
  padding: 48px 0 24px;
  font-size: 14px;
  color: var(--ht-text-footer);
}
.ht-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.ht-footer-logo {
  font-size: 26px;
  font-weight: 700;
  color: var(--ht-brand-navy);
  margin-bottom: 6px;
}
.ht-footer-desc {
  /* max-width: 520px; */
  line-height: 1.6;
  margin: 0;
}
.ht-footer-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ht-footer-right a {
  color: var(--ht-text-footer);
  text-decoration: underline;
  font-weight: 400;
}
.ht-footer-line {
  height: 1px;
  background: var(--ht-border-light);
  margin: 28px 0 16px;
}
.ht-footer-bottom {
  text-align: center;
  font-size: 13px;
  color: var(--ht-brand-navy);
}

@media (max-width: 768px) {
  .mobile_text_left{
    text-align: left !important;
  }
  .cusWidth{
width: 100% !important;

  }
  .ht-footer-top { flex-direction: column; gap: 24px; }
  .ht-footer-right { align-items: flex-start; }
}
.humanPad{
    padding: 80px;
    border-radius: 24px;
}
.humanPadAbt{
   padding: 80px;
    border-radius: 24px;
}
.pad_32{
    padding: 32px;
    border-radius: 20px;
}
.ht-watermark{
  padding:40px;
  overflow:hidden;
}
.ht-watermark-text{
  font-size:14vw;
  font-weight:700;
  color:#e9ecef;
  line-height:1;
  letter-spacing:-0.04em;
  user-select:none;
}
.ht-nav-toggle{display:none;background:none;border:0;margin-left:auto;flex-direction:column;gap:5px;}
.ht-nav-toggle span{width:22px;height:2px;background:#111;display:block;}
@media (max-width: 991px){
  .ht-nav-toggle{display:flex;}

  .ht-nav-actions{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
    padding:24px;
    opacity:0;
    transform:translateY(-12px);
    pointer-events:none;
    transition:opacity .25s ease, transform .25s ease;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    z-index:999;
  }

  .ht-nav-actions.is-open{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }
}
.cusWidth{
        width: 80%;
    margin: 0 auto;
}
@media (max-width: 991px){
    .ht-why-card p{
            line-height: 120%;
    }
    #product-overview .text-center{
        text-align: left !important;
    }
    .ht-po-item h6{
            margin-bottom: 12px;
    }
    .moblineheight{
        line-height: 100%;
    }
    .ht-hero-title{
        font-size: 32px;
                line-height: 100%;
    }
    .ht-sub{
        line-height: 120%;
    }
    .ht-po-horz{
        border: 0;
    }
    .ht-po-line{
        display: none;
    }
    .ht-po-item,.pdleft{
        padding-left: 0;
    }
    .ht-po-item{
        background: #F4F4F4;
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 8px;
    }
    .humanPad{
        padding: 0;
    }
    .humanPadAbt{
   padding: 40px;
    border-radius: 24px;
}
}
.hideDesk{
    display: none;
}
.desktop-br{
  display: none;
}
@media(max-width: 768px) {
  .ht-env-content p{
        font-size: 18px;
  }
  .mobilePad{
        padding-right: 15px;

  }
  .mobilePad2{
        padding-right: 60px;
  }
  .mobilePad3{
            padding-right: 70px;
  }
  .desktop-br{
display: inline-block;
}
      .mobile-br {
        display: none;
    }
    .ht-process-right img { margin-top: 30px; }
    #grounding{
            background: #f8f9fa;
                margin: 10px;
    border-radius: 24px;
    border-radius: 24px;
    }
    #grounding .text-center,#process .text-center{
        text-align: left !important;
    }
    #process .bg-light{
        background-color: transparent !important;
    }
    .hideMob{
        display: none;
    }
    .hideDesk{
    display: block;
}
    .ht-logo img{
        width: 120px;

}
  .ht-process-line {     left: 26px; }
  .ht-process-row, .ht-process-row.reverse {
    flex-direction: column;
    padding-left: 70px;
  }
  .ht-process-left, .ht-process-right {
    width: 100%;
    text-align: left;
  }
  .ht-process-dot {
    left: 0;
    transform: none;
  }
  .ht-process-line-bg{
        left: 26px;
  }
  .pad_32{
        padding: 16px 5px;
  }
  .ht-grounding-image{
    margin-bottom: 5px;
  }
  .ht-step-item{
    margin-bottom: 5px;
    padding: 14px 9px;
  }
  .ht-grounding-steps{
    padding: 5px;
  }
}
 /* Custom Arrow Styling */
    .slider-nav-container {
      display: flex;
      gap: 15px;
      /* margin-top: 20px; */
          justify-content: end;
    }

    .custom-arrow {
      /* background: #1e293b;
      border: 1px solid #334155; */
      color: white;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 10;
    }

    /* .custom-arrow:hover {
      background: #3b82f6;
      border-color: #3b82f6;
    } */

    .custom-arrow svg {
      /* width: 20px;
      height: 20px; */
      fill: currentColor;
    }
     .custom-arrow.slick-disabled {
      opacity: 0.3;
      cursor: not-allowed;
      pointer-events: none;
    }
    .custom-arrow svg path{
              fill: #1e293b;
    }
    
    /* Remove default slick arrows */
    .slick-prev, .slick-next {
      display: none !important;
    }
    
    /* Remove column padding for slick container to prevent misalignment */
    .slick-slider .col-md-4 {
      width: 100%;
      padding: 0;
    }
    .iframeHeight{
    min-height: 75vh;
    }