/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/*****************************************
* Colors
*****************************************/
:root {
  --hance-primary-color: #dae0ff;
  --hance-primary-color-rgb: 218, 224, 255;

  --Blue-gradient: linear-gradient(
    130deg,
    #0e202f -8.88%,
    #233d55 -8.87%,
    #204e75 36.72%,
    #122435 78.66%
  );

  --grey-100: #f5f5f5;
  --grey-100-rgb: 245, 245, 245;
  --grey-200: #e0e0e0;
  --grey-200-rgb: 224, 224, 224;
  --grey-300: #bdbdbd;
  --grey-300-rgb: 189, 189, 189;
  --grey-400: #a2a2a2;
  --grey-400-rgb: 162, 162, 162;
  --grey-500: #828282;
  --grey-500-rgb: 130, 130, 130;
  --grey-600: #4f4f4f;
  --grey-600-rgb: 79, 79, 79;
  --grey-700: #333333;
  --grey-700-rgb: 51, 51, 51;
  --grey-800: #191919;
  --grey-800-rgb: 25, 25, 25;
  --grey-850: #0f0f0f;
  --grey-850-rgb: 15, 15, 15;
  --grey-900: #080808;
  --grey-900-rgb: 8, 8, 8;

  --blue-100: #deeafd;
  --blue-100-rgb: 222, 234, 253;
  --blue-200: #c2d8fc;
  --blue-200-rgb: 194, 216, 252;
  --blue-300: #9ac2fa;
  --blue-300-rgb: 154, 194, 250;
  --blue-400: #6da1f8;
  --blue-400-rgb: 109, 161, 248;
  --blue-500: #497df4;
  --blue-500-rgb: 73, 125, 244;
  --blue-600: #305ce8;
  --blue-600-rgb: 48, 92, 232;
  --blue-700: #2449d6;
  --blue-700-rgb: 36, 73, 214;
  --blue-800: #213cad;
  --blue-800-rgb: 33, 60, 173;
  --blue-900: #213788;
  --blue-900-rgb: 33, 55, 136;

  --teal-400: #75d5c6;
  --teal-400-rgb: 117, 213, 198;

  --orange-300: #e6b594;
  --orange-300-rgb: 230, 181, 148;
  --orange-500: #ed6e30;
  --orange-500-rgb: 237, 110, 48;

  --muted-1: #ede0c0;
  --muted-1-rgb: 237, 224, 192;
  --muted-2: #c8c8fa;
  --muted-2-rgb: 200, 200, 250;
  --muted-3: #607abb;
  --muted-3-rgb: 96, 122, 187;
  --muted-4: #558873;
  --muted-4-rgb: 85, 136, 115;
  --muted-5: #9d83c4;
  --muted-5-rgb: 157, 131, 196;
  --muted-6: #9dc1b1;
  --muted-6-rgb: 157, 193, 177;
  --muted-7: #87ea71;
  --muted-7-rgb: 135, 234, 113;
  --muted-8: #faf4eb;
  --muted-8-rgb: 250, 244, 235;

  --p-color: var(--blue-200);
}

/*****************************************
* Global
******************************************/
body,
.hs-blog-post,
.post-page-full {
  background: black;
}

.body-wrapper > footer.footer {
  h5:empty {
    display: none;
  }
  p {
    color: var(--grey-400);
    font-size: 16px;
  }

  li {
    margin-bottom: 0;
    font-size: unset;
  }
}

#return-to-top {
  display: none !important;
}

/*****************************************
* Layout
*****************************************/
:root {
  --content-width-xs: 600px;
  --content-width-s: 800px;
  --content-width-m: 1040px;
  --content-width-l: 1200px;
}

.content-width-xs {
  max-width: var(--content-width-xs);
}
.content-width-s {
  max-width: var(--content-width-s);
}
.content-width-m {
  max-width: var(--content-width-m);
}
.content-width-l {
  max-width: var(--content-width-l);
}

.center-h {
  margin: 0 auto;
}

.body-container {
  overflow-x: hidden;
}

/*****************************************
* Header
*****************************************/
nav.sc-site-header__menu:not(.show-active-on-items) li:after {
  display: none;
}

/*****************************************
* Global contact us button
*****************************************/
.floating-contact-us-button {
  position: fixed;
  right: 20%;
  bottom: 5px;
  transform: translateX(50%) translateY(20px);
  z-index: 1000;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid var(--orange-500);
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  color: var(--orange-500);
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease-in-out, transform 500ms ease-in-out;
  
  /* Hide on desktop/larger screens */
  @media (min-width: 769px) {
    display: none;
  }
}

/* Add this new class */
.floating-contact-us-button.visible {
  opacity: 1;
  transform: translateX(50%) translateY(0);
  pointer-events: auto;
}

/*****************************************
* Get started and Read Announcement
*****************************************/


/* Target the Get Started button - add radius and control transitions */
.hs-button {
  border-radius: 40px !important;
  transition: background 300ms ease, color 300ms ease !important; /* Allow background/color transitions only */
  white-space: nowrap !important; /* Keep text on one line */
}

/* Remove scaling and transform effects on hover, but allow background changes */
.hs-button:hover {
  transform: none !important;
  scale: 1 !important; /* Prevent scaling */
  filter: none !important;
}


/* Remove all padding and margins from the Get Started button */
.hs-button {
  margin-right: 0 !important;
}

/* Secondary Button (Read Announcement) - Different styling */
#hs-button_module_1762864861047:hover {
  color: #000000 !important; /* Black text on hover */
  /* Background will change based on HubSpot module settings */

  /*****************************************
* Logo slider
*****************************************/
 #hs_cos_wrapper_widget_1708442904432 img {
  border: 5px solid red !important;
}
  
  
  
/*****************************************
* Blog
*****************************************/
.hhs-post-summary {
  color: var(--grey-400);
}
.hhs-post-feat-img {
  border-radius: 10px;
}

.blog-listing__post-title {
  text-align: left;
  font-size: 2em;
}
.blog-listing__post-author {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
}

.blog-listing--2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;

  .blog-listing__post {
    width: 100% !important;
  }
}

/*****************************************
* Buttons
*****************************************/
.cta-primary,
.cta-secondary,
.cta-link {
  font-size: clamp(18px, 2.5vh, 1em);

  @media (max-width: 768px) {
    padding: 8px 16px;
    font-size: 16px;
  }
}

.cta-primary {
  box-shadow: 0 0 50px 0 rgba(var(--blue-100-rgb), 0.75);
}
.cta-link {
  display: flex;
  align-items: center;
  padding: 0;
  box-shadow: none;
  background: transparent;
  color: var(--blue-100);
  gap: 0.5em;
}

/*****************************************
* Typography
*****************************************/
:root {
  --font-size-h1: 72px;
  --font-size-h2: 64px;
}
h1,
.h1 {
  text-align: center;
  letter-spacing: -0.015em;
}
.h1 {
  font-size: var(--font-size-h1);
}

h2,
¨ .h2 {
  text-align: center;
  letter-spacing: -0.015em;
}
.h2 {
  font-size: var(--font-size-h2);
}

/*****************************************
 * Custom classes
 ****************************************/
.software-hardware-heading {
  font-size: clamp(44px, 7vw, 96px);
}

/*****************************************
 * Logos slider
 ****************************************/
.logo-item.slick-slide {
  a {
    transition: filter 150ms ease-in-out;
    &:hover {
      filter: brightness(1.5);
    }
  }
  img {
    width: auto;
    height: 40px !important;
  }
}

/*****************************************
 * Timeline
 ****************************************/
.timeline .timeline-container {
  h5 {
    color: var(--blue-400);
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 600;
  }

  .timeline-text {
    p {
      font-size: 16px !important;
    }
  }

  .timeline-continue {
    .timeline-date {
      color: var(--blue-400) !important;
      font-weight: 400 !important;
      &:after {
        display: none;
      }
    }
    &:after {
      /* Vertical line */
      background: var(--grey-700) !important;
    }
  }
  .timeline-end,
  .timeline-start,
  .timeline-launch {
    display: none;
  }

  .timeline-box {
    background: transparent !important;
    border-color: var(--grey-700) !important;
  }

  .timeline-left .timeline-box {
    &:before,
    &:after {
      border-color: transparent transparent transparent var(--grey-700) !important;
    }
  }

  .timeline-right .timeline-box {
    &:before,
    &:after {
      border-color: transparent var(--grey-700) transparent transparent !important;
    }
  }
}

/*****************************************
 * Gradient background shines
 ****************************************/
/***** 1 *****/
.gradient-background-shine-1 {
  position: relative;
  &:before {
    position: absolute;
    top: 0;
    left: 40%;
    width: 600px;
    height: 80%;
    background: linear-gradient(
      30deg,
      rgba(var(--blue-300-rgb), 1),
      rgba(var(--blue-500-rgb), 0),
      rgba(var(--blue-600-rgb), 0.7)
    );
    border-radius: 50%;
    transform: translateX(-50%);
    content: '';
    filter: blur(100px);
    @media (max-width: 768px) {
      width: 400px;
    }
    animation: gradient-background-shine-1-before 5s linear infinite alternate;
  }
  &:after {
    position: absolute;
    bottom: 0;
    left: 60%;
    width: 300px;
    height: 60%;
    background: linear-gradient(
      -15deg,
      rgba(var(--orange-500-rgb), 1),
      rgba(var(--muted-3-rgb), 0.7)
    );
    border-radius: 50%;
    transform: translateX(-50%);
    content: '';
    filter: blur(100px);
    @media (max-width: 768px) {
      width: 150px;
    }
    animation: gradient-background-shine-1-after 7s linear infinite alternate;
  }
}

@keyframes gradient-background-shine-1-before {
  0% {
    transform: translateX(-50%) scaleY(1) scaleX(1.2) rotate(0deg);
  }
  50% {
    transform: translateX(-50%) scaleY(1.5) rotate(10deg);
  }
  100% {
    transform: translateX(-50%) scaleY(1.2) rotate(20deg);
  }
}

@keyframes gradient-background-shine-1-after {
  0% {
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8) rotate(-15deg);
  }
  50% {
    transform: translateX(-50%) scaleY(1.5) scaleX(1.5) rotate(10deg);
  }
  100% {
    transform: translateX(-50%) scaleY(1.2) scaleX(1.2) rotate(-5deg);
  }
}