  @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
    :root {
      --bg-main: #f3f3f3;
      --bg-header: #00152e;
      --bg-panel: #f1f1f2;
      --bg-card: #ffffff;
      --bg-card-hover: #f7f9fc;
      --bg-button: #0a58ca;
      --bg-button-hover: #0849a8;
      --border-soft: rgba(0, 21, 46, 0.10);
      --border-strong: rgba(0, 21, 46, 0.16);
      --cyan: #20c4e8;
      --text-main: #222222;
      --text-soft: #6f6f6f;
      --text-muted: #9a9a9a;
      --navy: #00152e;
      --light-panel: #f1f1f2;
      --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.18);
      --radius-lg: 28px;
      --radius-md: 20px;
      --radius-sm: 14px;
      --transition: 0.22s ease;
      --announcement-orange: #f58220;
      --nav-pill: #0a3b82;
      --launch-bg: #D8690A;
      --launch-accent: #ffffff;
      --launch-text: #ffffff;
      --launch-muted: rgba(255, 255, 255, 0.8);
      --launch-pill-bg: rgba(255, 255, 255, 0.2);
      --launch-border: rgba(255, 255, 255, 0.3);
      --font-body: "Space Grotesk", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      color: var(--text-main);
      font-family: "Space Grotesk";
      min-height: 100vh;
    }

    a {
      color: inherit;
      text-decoration: none;
    }
    a:hover {
       text-decoration: none; 
    }

    button {
      font: inherit;
      border: 0;
      background: none;
      cursor: pointer;
    }

    .container {
      width: min(1440px, calc(100% - 40px));
      margin: 0 auto;
    }

    .announcement-bar {
      background: #f58220;
      color: #fff;
    }

    .announcement-inner {
      min-height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      text-align: center;
    }

    .announcement-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 3px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.18);
      color: #fff;
      font-size: 12px;
    font-weight: bold;
    font-family: "Space Grotesk", sans-serif;
    }
    .announcement-badge img {
    padding-right: 5px;
    position: relative;
    bottom: 1px;
    width: 23px;
    }

    .announcement-text {
      margin: 0;
      font-size: 12px;
      font-weight: 500;
      line-height: 1.3;
      color: #fff;
    }

    .announcement-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 42px;
      padding: 0 18px;
      border-radius: 999px;
      background: #fff;
      color: var(--announcement-orange);
      font-size: 1rem;
      font-weight: 600;
      white-space: nowrap;
      transition: var(--transition);
    }

    .announcement-link:hover {
      transform: translateY(-1px);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: #00152e;
      padding: 12px 0px;
    }

    .header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      position: relative;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
    }

    .brand-logo {
      width: 80%;
      display: block;
    }

    section#desktop-view {
      padding-top: 0;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 28px;
      margin-left: auto;
    }

    .nav-link,
    .nav-dropdown {
      color: rgba(255, 255, 255, 0.96);
      font-size: 14px;
      font-weight: 500;
      transition: var(--transition);
    }

    .nav-link {
      padding: 0;
      background: transparent;
      border-radius: 999px;
    }

    .nav-link:hover {
      color: #ffffff;
    }

    .nav-dropdown {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 15px;
      border-radius: 999px;
      background: transparent;
      color: rgba(255, 255, 255, 0.96);
    }

    .nav-dropdown:hover {
      color: #ffffff;
    }

    .nav-dropdown.active,
    .nav-dropdown[aria-expanded="true"] {
      background: #1b314d;
      color: #ffffff;
    }

    .nav-chevron {
      width: 8px;
      height: 8px;
      border-right: 1.8px solid currentColor;
      border-bottom: 1.8px solid currentColor;
      transform: rotate(45deg) translateY(-1px);
      transition: transform 0.22s ease;
      flex: 0 0 auto;
    }

    .nav-dropdown.active .nav-chevron,
    .nav-dropdown[aria-expanded="true"] .nav-chevron {
      transform: rotate(-135deg) translateY(-1px);
    }

    .desktop-cta {
      margin-left: 18px;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border-radius: 999px;
      background: var(--bg-button);
      color: white;
      padding: 15px 26px;
      font-size: 1rem;
      font-weight: 700;
      transition: var(--transition);
    }

    .cta-button:hover {
      background: var(--bg-button-hover);
      transform: translateY(-1px);
    }

    .mobile-menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      position: relative;
    }

    .mobile-menu-toggle span,
    .mobile-menu-toggle::before,
    .mobile-menu-toggle::after {
      content: "";
      position: absolute;
      left: 10px;
      right: 10px;
      height: 2px;
      background: white;
      transition: var(--transition);
    }

    .mobile-menu-toggle span {
      top: 21px;
    }

    .mobile-menu-toggle::before {
      top: 14px;
    }

    .mobile-menu-toggle::after {
      top: 28px;
    }

    .mega-menu {
      position: absolute;
      top: calc(100% + 5px);
      left: 50%;
      transform: translateX(-50%);
      width: min(1150px, calc(100vw - 32px));
      z-index: 95;
      opacity: 0;
      visibility: hidden;
      translate: 0 10px;
      transition: opacity 0.22s ease, visibility 0.22s ease, translate 0.22s ease;
      max-height: calc(100vh - 120px);
    }

    .mega-menu.open {
      opacity: 1;
      visibility: visible;
      translate: 0 0;
    }

    .mega-shell {
      overflow: hidden;
      border-radius: 8px;
      border: 0px solid rgba(0, 0, 0, 0.08);
      background: transparent;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
      display: grid;
      grid-template-columns: 300px minmax(0, 1fr);
      max-height: calc(100vh - 120px);
      height: min(730px, calc(100vh - 100px));
    }

    .category-column {
      background: #00152e;
      border-right: 1px solid rgba(0, 0, 0, 0.08);
      display: flex;
      flex-direction: column;
      min-height: 0;
      overflow: hidden;
      height: 100%;
    }

    .category-list-scroll {
      flex: 1;
      min-height: 0;
      padding-bottom: 20px;
      padding-top: 20px;
    }

    .content-column {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 240px;
      grid-template-rows: minmax(0, 1fr) auto;
      column-gap: 15px;
      row-gap: 2px;
      padding: 20px 28px 20px !important;
      min-height: 0;
      height: 100%;
      overflow: hidden;
      background:#fff;
    }

    .blog-rail {
      grid-column: 2;
      grid-row: 1;
      border-left: 1px solid #c9d8e8;
      padding-left: 22px;
      min-height: 0;
      overflow-y: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
      max-height: 100%;
    }

    .category-list-scroll > * {
      direction: ltr;
    }

    .category-list-scroll::-webkit-scrollbar {
      width: 6px;
    }

    .category-list-scroll::-webkit-scrollbar-thumb {
      background: #20c4e8;
      border-radius: 10px;
    }

    .category-item {
      width: 100%;
      text-align: left;
      padding: 15px 24px;
      color: rgba(255, 255, 255, 0.92);
      font-size: 15px;
      line-height: 1.2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: var(--transition);
      flex: 0 0 auto;
      position: relative;
      font-weight: normal !important;
    }

    .category-item.active {
      background: #1b314d;
      color: #ffffff;
    }

    .category-item.active::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: #19c2e6;
    }

    .view-all-services {
      flex: 0 0 auto;
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: #19c2e6;
      font-size: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      background: #00152e;
      transition: var(--transition);
    }

    .view-all-services:hover {
      color: #fff;
    }

    .content-main {
      min-width: 0;
      min-height: 0;
      overflow: hidden;
      grid-column: 1;
      grid-row: 1;
    }

    .content-scroll-area {
      height: 100%;
      overflow-y: auto;
      padding-right: 6px;
      padding-bottom: 8px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .content-scroll-area::-webkit-scrollbar {
      display: none;
    }

    .eyebrow {
      margin-bottom: 16px;
      color: #6f6f6f;
      font-size: 0.92rem;
      line-height: 1.2;
      font-weight:700;
    }

    .section-block + .section-block {
      margin-top: 34px;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      max-width: 100%;
    }

    .service-card {
      background: #ffffff;
      border: 1px solid #d9d9d9;
      border-radius: 14px;
      padding: 15px 20px;
      transition: var(--transition);
      min-height: 92px;
      position: relative;
    overflow: hidden;
    padding-bottom: 64px;
    }
    .service-card:hover .card-tag,
.service-card:focus-within .card-tag {
  max-width: 220px;
  padding-left: var(--tag-pad-x);
  padding-right: 9px;
  transform: translateY(-1px);
}

.service-card:hover .card-tag-text,
.service-card:focus-within .card-tag-text {
  max-width: 180px;
  opacity: 1;
  margin-right: 12px;
}

/* gradient layer */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #F2FDFF, #A2EFFF);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* hover effect */
.service-card:hover::before {
    opacity: 1;
}

/* keep content above gradient */
.service-card > * {
    position: relative;
    z-index: 1;
}
    /*.service-card:hover {
    background: linear-gradient(135deg, #F2FDFF, #A2EFFF);
    }*/
    /*.service-card:hover {
      background: #fcfcfc;
      border-color: #c8d8ea;
    }*/

    .card-title {
      font-family: "Space Grotesk", sans-serif;
      font-size: 0.94rem;
      line-height: 1.35;
      color: #1f2d3d;
      font-weight:500;
    }

    .card-desc {
      margin-top: 7px;
      color: #7b7b7b;
      font-size: 0.78rem;
      line-height: 1.45;
    }

    .info-section {
      margin-top: 26px;
    }

    .info-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 12px;
    }

    .info-head-left {
      color: #6f6f6f;
      font-size: 0.92rem;
      font-weight:700;
    }

    .info-head-right {
      color: #2b2b2b;
      font-size: 0.92rem;
      display: inline-flex;
      align-items: center;
      gap: 0px;
      transition: var(--transition);
      font-weight:700;
    }

    .info-block {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 18px;
      align-items: center;
    }

    .info-visual {
      width: 100%;
      border-radius: 6px;
      overflow: hidden;
      background: #ffffff;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
      display: block;
    }

    .info-visual img {
      width: 100%;
      object-fit: cover;
      display: block;
    }

    .info-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
    }

    .info-title {
      font-family: "Space Grotesk", sans-serif;
      font-size: 0.98rem;
      line-height: 1.35;
      color: #222222;
      max-width: 340px;
    }

    .info-desc {
      margin-top: 8px;
      color: #7b7b7b;
      font-size: 0.9rem;
      line-height: 1.5;
      max-width: 340px;
    }

    .info-link,
    .blog-link,
    .simple-link {
      display: inline-flex;
      align-items: center;
      gap: 0px;
      margin-top: 5px;
      color: #2b2b2b;
      font-size: 12px;
      transition: var(--transition);
      width: fit-content;
      font-weight:500;
    }

    .content-footer {
      grid-column: 1 / 3;
      grid-row: 2;
      border-top: 1px solid #b7cfe8;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 10px 38px;
      background: #00152e;
      min-height: 70px;
      z-index: 2;
      border-radius: 8px;
      margin-top: 6px;
    }

    .footer-copy {
      min-width: 0;
    }

    .footer-title {
      font-size: 12px;
      font-weight: 600;
      color: #fff;
    }

    .footer-text {
      max-width: 560px;
      color: #c7c4c4;
      font-size: 12px;
      line-height: 1.35;
      margin-top: 6px;
    }
.tech-button .demo-btn.fill.desktop-btn {
    background: #f58220 !important;
    border: 0px !important;
    color: #fff !important;
    font-size: 12px !important;
    padding: 12px 24px !important;
}
.tech-button .demo-btn.fill.desktop-btn:hover {
    background: #fff !important;
    border: 0px !important;
    color: var(--nav-pill) !important;
}

    .blog-rail::-webkit-scrollbar {
      display: none;
    }

    .rail-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 3px;
      position: sticky;
      top: 0;
      background: #ffffff;
      z-index: 2;
      padding-bottom: 8px;
      padding-right: 10px;
    }

    .rail-title {
      color: #6f6f6f;
      font-size: 0.92rem;
      line-height: 1.2;
      font-weight:700;
    }

    .blog-list {
      display: grid;
      gap: 15px;
    }

    .blog-tile {
      border-radius: 12px;
      background: transparent;
      border: 0;
      padding: 0;
      transition: var(--transition);
    }

    .blog-thumb {
      border-radius: 4px;
      background: linear-gradient(135deg, rgba(10, 164, 211, 0.7), rgba(155, 234, 255, 0.08));
      margin-bottom: 12px;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
      height: 120px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .blog-rail .blog-title {
      color: #2b2b2b;
    font-size: 12px !important;
    line-height: 1.35;
    font-weight: 500 !important;
    letter-spacing: normal;
    margin-bottom: 0px;
    }

    .page-hero {
      padding: 150px 0 90px;
    }

    .hero-label {
      color: var(--cyan);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 12px;
    }

    .hero-title {
      margin: 18px 0 0;
      font-family: "Space Grotesk", sans-serif;
      font-size: clamp(3rem, 7vw, 5.25rem);
      line-height: 1.05;
      max-width: 980px;
    }

    .hero-text {
      margin-top: 18px;
      max-width: 780px;
      color: rgba(255, 255, 255, 0.75);
      font-size: 1.3rem;
      line-height: 1.5;
    }

    .mobile-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 120;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
    }

    .mobile-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .mobile-panel {
      position: fixed;
      inset: 0 auto 0 0;
      width: 100%;
      max-width: 420px;
      background: white;
      z-index: 9999;
      overflow-y: auto;
      transform: translateX(-100%);
      transition: transform 0.28s ease;
      color: #0f172a;
    }

    .mobile-panel.open {
      transform: translateX(0);
    }

    .mobile-panel-head {
      position: sticky;
      top: 0;
      z-index: 2;
      background: white;
      border-bottom: 1px solid #e5e7eb;
      padding: 20px;
    }

    .mobile-title-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .mobile-panel-title {
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.8rem;
      color: var(--navy);
      display: none;
    }

    .mobile-close {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      position: relative;
      background: #f3f4f6;
    }

    .mobile-close::before,
    .mobile-close::after {
      content: "";
      position: absolute;
      top: 19px;
      left: 11px;
      right: 11px;
      height: 2px;
      background: var(--navy);
    }

    .mobile-close::before {
      transform: rotate(45deg);
    }

    .mobile-close::after {
      transform: rotate(-45deg);
    }

    .mobile-search {
      margin-top: 16px;
      border: 1px solid #e5e7eb;
      border-radius: 18px;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      display: none;
    }

    .search-icon {
      width: 16px;
      height: 16px;
      border: 2px solid #64748b;
      border-radius: 50%;
      position: relative;
      flex: 0 0 auto;
    }

    .search-icon::after {
      content: "";
      position: absolute;
      width: 7px;
      height: 2px;
      background: #64748b;
      bottom: -5px;
      right: -4px;
      transform: rotate(45deg);
      border-radius: 2px;
    }

    .mobile-search input {
      border: 0;
      outline: 0;
      width: 100%;
      font: inherit;
      color: #0f172a;
    }

    .mobile-body {
      padding: 20px;
      position: relative;
      overflow: hidden;
      min-height: calc(100vh - 130px);
    }

    .mobile-menu-stage {
      display: none;
      animation: mobileStageIn 0.22s ease;
    }

    .mobile-menu-stage.active {
      display: block;
    }

    @keyframes mobileStageIn {
      from {
        opacity: 0;
        transform: translateX(18px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .mobile-section-label {
      color: #64748b;
      font-size: 0.88rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-bottom: 10px;
    }

    .mobile-category-list,
    .mobile-top-links,
    .mobile-blog-list {
      display: grid;
      gap: 10px;
    }

    .mobile-category {
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-align: left;
      width: 100%;
      border-radius: 18px;
      padding: 16px;
      background: #f8fafc;
      color: #0f172a;
      font-size: 1.08rem;
    }

    .mobile-category.active {
      background: var(--navy);
    }

    .mobile-back-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #2563eb;
      font-size: 0.98rem;
      padding: 0;
      margin-bottom: 14px;
    }

    .mobile-back-arrow {
      width: 8px;
      height: 8px;
      border-left: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg);
      margin-top: 1px;
    }

    .mobile-detail-hero {
      border-radius: 20px;
      background: #f8fafc;
      padding: 18px;
      margin-bottom: 14px;
      border: 1px solid #e5e7eb;
      display:inline-block;
    }

    .mobile-detail-title {
      display: block;
    font-family: "Space Grotesk", sans-serif;
    color: var(--navy);
    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: bold;
    }

    .mobile-detail-text {
      display: block;
    margin-top: 4px;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.4;
    }

    .mobile-featured-grid {
      display: grid;
      gap: 10px;
      margin-top: 16px;
    }

    .mobile-featured-card {
      border-radius: 18px;
      background: #f8fafc;
      border: 1px solid #e5e7eb;
      padding: 14px;
    }

    .mobile-featured-card strong {
      display: block;
      font-family: "Space Grotesk", sans-serif;
      color: var(--navy);
      font-size: 1.05rem;
      line-height: 1.3;
    }

    .mobile-featured-card span {
      display: block;
      margin-top: 4px;
      color: #475569;
      font-size: 0.92rem;
      line-height: 1.4;
    }

    .mobile-top-link,
    .mobile-blog-item,
    .mobile-resources-trigger {
      border-radius: 18px;
      background: #f8fafc;
      padding: 16px;
      color: #0f172a;
      width: 100%;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: 0;
    }

    .mobile-blog-thumb {
      height: 112px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(10, 164, 211, 0.45), rgba(148, 163, 184, 0.22));
      margin-bottom: 10px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .mobile-demo {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      width: 100%;
      margin-top: 20px;
      border-radius: 999px;
      background: #f7941d;
      color: white;
      padding: 16px;
      font-size: 1.1rem;
      transition: var(--transition);
    }

    .mobile-demo:hover {
      background: #e18416;
    }

    .mobile-resources-list {
      display: grid;
      gap: 10px;
    }

    .mobile-resource-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px;
      border-radius: 18px;
      background: #f8fafc;
      border: 1px solid #e5e7eb;
      color: #0f172a;
    }

    .mobile-resource-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: #dff7ff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 40px;
    }

    .mobile-resource-icon img {
      width: 24px;
      height: 24px;
      object-fit: contain;
    }

    .mobile-resource-content {
      min-width: 0;
    }

    .mobile-resource-title {
      display: block;
      font-size: 15px;
      line-height: 1.25;
      font-weight: 600;
      color: #2b2b2b;
    }

    .mobile-resource-desc {
      display: block;
      margin-top: 4px;
      font-size: 13px;
      line-height: 1.4;
      color: #6f6f6f;
    }

    .demo-link {
      text-decoration: none;
      position: relative;
      display: inline !important;
    }

    .btn_right_sec .demo-btn {
      border-radius: 50px !important;
      border: 2px solid #fff;
      background: transparent;
      color: #fff;
      padding: 7px 14px;
    }

    .demo-btn.fill {
      background: #f58220 !important;
      border: 2px solid #f58220;
      color: #fff;
    }

    .demo-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      padding: 8px 10px;
      border: 2px solid #f97316;
      border-radius: 999px;
      background: #fff;
      font-weight: 500;
      font-size: 14px;
      transition: all 0.3s ease;
      letter-spacing: 0.7px;
    }

    .demo-btn:hover {
      background: #fff !important;
      border: 2px solid #f58220;
      color: #f58220 !important;
    }

    .RegisterSec_btn .icon-wrapper {
      top: 0px !important;
    }

    .icon-wrapper {
      position: relative;
      width: 20px;
      height: 20px;
      overflow: hidden;
    }

    .icon.top {
      transform: translate(0, 0);
    }

    .icon.bottom {
      transform: translate(-120%, 120%);
    }

    .demo-btn:hover .icon.top {
      transform: translate(120%, -120%);
    }

    .demo-btn:hover .icon.bottom {
      transform: translate(0, 0);
    }

    .icon-wrapper .icon {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* SafeAeon header arrow fix */
.nav-chevron,
.icon-arrow {
  width: 9px;
  height: 8px;
  display: inline-block;
  flex: 0 0 9px;
  background-color: #00152E;
  transition: background-color 0.25s ease, transform 0.25s ease;

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='9' height='8' viewBox='0 0 9 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.3705 0.175806C4.48824 0.0632317 4.64784 -1.90239e-07 4.81425 -1.82965e-07C4.98066 -1.75691e-07 5.14026 0.0632317 5.258 0.175806L8.81636 3.58228C8.93395 3.69499 9 3.84778 9 4.00709C9 4.16639 8.93395 4.31918 8.81635 4.43189L5.258 7.83837C5.13898 7.94468 4.9815 8.0026 4.81874 7.99991C4.65598 7.99722 4.50068 7.93413 4.38557 7.82394C4.27047 7.71375 4.20457 7.56507 4.20175 7.40926C4.19894 7.25345 4.25944 7.10269 4.3705 6.98875L6.85716 4.60823L0.627945 4.60823C0.461404 4.60823 0.301684 4.54489 0.183921 4.43216C0.0661583 4.31942 -4.11559e-07 4.16652 -4.0459e-07 4.00709C-3.97621e-07 3.84765 0.0661583 3.69475 0.183921 3.58201C0.301684 3.46928 0.461404 3.40594 0.627945 3.40594L6.85716 3.40594L4.3705 1.02542C4.25291 0.912706 4.18686 0.759917 4.18686 0.600613C4.18686 0.44131 4.25291 0.28852 4.3705 0.175806Z' fill='%2300152E'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='9' height='8' viewBox='0 0 9 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.3705 0.175806C4.48824 0.0632317 4.64784 -1.90239e-07 4.81425 -1.82965e-07C4.98066 -1.75691e-07 5.14026 0.0632317 5.258 0.175806L8.81636 3.58228C8.93395 3.69499 9 3.84778 9 4.00709C9 4.16639 8.93395 4.31918 8.81635 4.43189L5.258 7.83837C5.13898 7.94468 4.9815 8.0026 4.81874 7.99991C4.65598 7.99722 4.50068 7.93413 4.38557 7.82394C4.27047 7.71375 4.20457 7.56507 4.20175 7.40926C4.19894 7.25345 4.25944 7.10269 4.3705 6.98875L6.85716 4.60823L0.627945 4.60823C0.461404 4.60823 0.301684 4.54489 0.183921 4.43216C0.0661583 4.31942 -4.11559e-07 4.16652 -4.0459e-07 4.00709C-3.97621e-07 3.84765 0.0661583 3.69475 0.183921 3.58201C0.301684 3.46928 0.461404 3.40594 0.627945 3.40594L6.85716 3.40594L4.3705 1.02542C4.25291 0.912706 4.18686 0.759917 4.18686 0.600613C4.18686 0.44131 4.25291 0.28852 4.3705 0.175806Z' fill='%2300152E'/%3E%3C/svg%3E");

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* arrow spacing */
.arrow-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}

/* hover color */
a:hover .icon-arrow,
button:hover .icon-arrow,
.category-item:hover .icon-arrow,
.category-item.active .icon-arrow,
.nav-dropdown:hover .nav-chevron,
.nav-dropdown.active .nav-chevron {
  background-color: #19C2E6;
}

/* optional small hover movement */
a:hover .icon-arrow,
button:hover .icon-arrow,
.category-item:hover .icon-arrow {
  transform: translateX(2px);
}

    .info-link:hover,
    .blog-link:hover,
    .simple-link:hover,
    .info-head-right:hover {
      color: #18d3ff;
    }

    .announcement-bar .demo-btn.fill {
      background: #fff !important;
      border: 2px solid #f58220 !important;
      color: #f58220 !important;
      padding: 5px 12px;
      font-size: 12px;
    }

    .announcement-bar .demo-btn.fill:hover {
      background: transparent !important;
      color: #fff !important;
      border: 2px solid #fff !important;
    }

    .resources-menu {
      width: min(880px, calc(100vw - 32px));
      max-height: calc(100vh - 120px);
      left: 60%;
      transform: translateX(-50%);
    }

    .resources-shell {
      background: #f1f1f2;
      border-radius: 18px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.08);
      height: auto;
    }

    .resources-main {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 240px;
      gap: 20px;
      padding: 20px 20px 0;
      min-height: 0;
    }

    .resources-left {
      min-width: 0;
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

    .resources-label {
      font-size: 12px;
      font-weight: 700;
      color: #4a4a4a;
      letter-spacing: 0.04em;
      margin-bottom: 16px;
    }

    .resources-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(120px, 1fr));
      gap: 16px 18px;
      align-content: start;
    }

    .resource-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: #222;
      padding: 0;
    }

    .resource-content {
      min-width: 0;
    }

    .resource-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: #dff7ff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 32px;
      margin-bottom: 8px;
    }

    .resource-icon img {
      width: 23px;
      height: 23px;
      object-fit: contain;
    }

    .resource-title {
      display: block;
      font-size: 15px;
      line-height: 1.2;
      font-weight: 500;
      color: #00152e;
      opacity:0.6;
    }
    a.resource-item:hover span.resource-title {
    opacity: 1;
}
.resources-bottom-links a:hover {
    text-decoration: underline !important;
}

    .resource-desc {
      margin-top: 4px;
      font-size: 13px;
      line-height: 1.3;
      color: #9a9a9a;
      display: block;
    }

    .resources-bottom-links {
      margin-top: 28px;
      border-top: 1px solid #d6d6d6;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      min-height: 50px;
    }

    .resources-bottom-links a {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #333;
      font-size: 15px;
    }

    .resources-feature {
      padding-top: 2px;
      display: flex;
      flex-direction: column;
    }

    .resources-feature-label {
      font-size: 14px;
      color: #4a4a4a;
      margin-bottom: 12px;
      font-weight:700;
    }

    .resource-feature-card {
      display: block;
      border-radius: 14px;
      overflow: hidden;
    }

    .resource-feature-card img {
      width: 100%;
      display: block;
      border-radius: 14px;
      object-fit: cover;
    }

    .card-tag {
  --tag-h: 24px;
  --tag-pad-x: 14px;
  --tag-bg: #19c2e6;
  --tag-text: #ffffff;
  --tag-dot: #ffffff;
  --tag-dot-size: 7px;

  position: absolute;
  left: 16px;
  bottom: 16px;
  height: var(--tag-h);
  max-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--tag-bg);
  overflow: hidden;
  white-space: nowrap;
  transition:
    max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.35s ease,
    transform 0.25s ease;
  z-index: 2;
}

.card-tag::after {
  content: "";
  width: var(--tag-dot-size);
  height: var(--tag-dot-size);
  min-width: var(--tag-dot-size);
  border-radius: 50%;
  background: var(--tag-dot);
  margin-left: auto;
  flex: 0 0 auto;
}

.card-tag-text {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  color: var(--tag-text);
  font-size: 11px;
  font-weight: 500;
  line-height: 30px;
  transition:
    max-width 0.4s ease,
    opacity 0.25s ease,
    margin-right 0.35s ease;
}


    @media (max-width: 1279px) {
      .desktop-nav,
      .desktop-cta,
      .mega-menu,
      .resources-menu {
        display: none !important;
      }

      .mobile-menu-toggle {
        display: inline-flex;
      }

      .announcement-inner {
        padding: 10px 0;
        gap: 10px;
      }

      .announcement-text {
        width: 100%;
        font-size: 0.94rem;
      }
           .header-demo-btn {
    display: none;
}
    }

    @media (max-height: 800px) {
      .mega-menu {
        max-height: calc(100vh - 90px);
      }

      .mega-shell {
        height: calc(100vh - 90px);
      }

      .category-item {
        padding: 15px 24px;
        font-size: 15px;
      }

      .view-all-services {
        min-height: 68px;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 32px, 1440px);
      }

      .brand-logo {
        height: 46px;
        width: auto;
      }
      #announce-bar {
          display:none;
      }

      .announcement-badge {
        min-width: 64px;
        height: 34px;
        font-size: 0.92rem;
      }

      .announcement-link {
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.92rem;
      }

      .mobile-body {
        padding: 16px;
      }

      .mobile-top-link,
      .mobile-blog-item,
      .mobile-resource-item,
      .mobile-category,
      .mobile-resources-trigger {
        border-radius: 14px;
      }

      .mobile-resource-title {
        font-size: 14px;
      }

      .mobile-resource-desc {
        font-size: 12px;
      }
      .header-demo-btn {
    display: none;
}
    }
    .category-name,
.mobile-category-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.category-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  color:#fff;
  font-size: 10px;
    font-weight: bold;
    line-height: 1;
    font-family: "Space Grotesk", sans-serif;
}

.category-badge img{
  width:16px;
  padding-right:4px;
  position:relative;
  bottom:0;
}

.mobile-category-label .category-badge{
  background:#f58220;
  color:#fff;
}

    /* ── ANNOUNCEMENT BAR ── */
    #announce-bar {
      background: var(--launch-bg);
      border-bottom: 1px solid var(--launch-border);
      padding: 0;
      overflow: hidden;
      position: relative;
      /*animation: slideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;*/
    }

    /*@keyframes slideDown {
      from { transform: translateY(-100%); opacity: 0; }
      to   { transform: translateY(0);     opacity: 1; }
    }*/

    /* animated gradient background */
    /*#announce-bar::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, #F79D51 0%, #D8690A 50%, #F79D51 100%);
      background-size: 200% 100%;
      animation: shimmer 3.5s linear infinite;
      pointer-events: none;
    }

    @keyframes shimmer {
      from { background-position: -200% 0; }
      to   { background-position:  200% 0; }
    }*/

    .announce-inner {
      width: min(1440px, calc(100% - 40px));
      margin: 0 auto;
      padding: 6px 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      position: relative;
      z-index: 1;
    }
    
    .announce-copy a {
    padding-left: 20px;
    text-decoration: underline;
}

    .announce-left {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    /* pulsing dot */
    .live-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--launch-accent);
      flex-shrink: 0;
      position: relative;
    }

    .live-dot::after {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      border: 1.5px solid var(--launch-accent);
      animation: pulse-ring 2s ease-out infinite;
      opacity: 0;
    }

    @keyframes pulse-ring {
      0%   { transform: scale(0.8); opacity: 0.8; }
      100% { transform: scale(2);   opacity: 0; }
    }

    .launch-pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: var(--launch-pill-bg);
      border: 1px solid var(--launch-border);
      color: var(--launch-accent);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 999px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .launch-pill img {
      width: 16px;
      position: relative;
      bottom: 1px;
    }

    .announce-copy {
      font-size: 13.5px;
      color: var(--launch-text);
      font-weight: 500;
      line-height: 1.3;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .announce-copy strong {
      font-weight: 700;
      color: #ffffff;
    }

    .announce-right {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }

    /*.announce-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 6px 16px;
      border-radius: 999px;
      background: #fff;
      color: var(--launch-bg);
      font-weight: 600;
      font-size: 13px;
      text-decoration: none;
      transition: all 0.3s ease;
      white-space: nowrap;
      box-shadow: inset 0 0 0 2px transparent;
    }

    .announce-cta:hover {
      background: transparent;
      color: #fff;
      box-shadow: inset 0 0 0 2px #fff;
    }

    .announce-cta svg {
      transition: transform 0.2s;
    }

    .announce-cta:hover svg {
      transform: translateX(2px);
    }

    .announce-divider {
      width: 1px;
      height: 14px;
      background: var(--launch-border);
      display: none;
    }*/

    .announce-close {
      background: none;
      border: none;
      color: var(--launch-muted);
      cursor: pointer;
      padding: 4px;
      display: flex;
      align-items: center;
      border-radius: 4px;
      transition: color 0.2s, background 0.2s;
      position: absolute;
      right: 0;
    }

    .announce-close:hover {
      color: #ffffff;
      background: rgba(255,255,255,0.15);
    }

    /* collapse animation */
    #announce-bar.collapsing {
      animation: collapseBar 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes collapseBar {
      from { max-height: 60px; opacity: 1; padding-top: 0; }
      to   { max-height: 0;    opacity: 0; padding-top: 0; }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .announce-copy { font-size: 12.5px; }
      .announce-cta span { display: none; }
      .announce-cta { padding: 6px 10px; }
      .announce-right { gap: 10px; }
    }
    @media (max-width: 480px) {
      .launch-pill { display: none; } /* Hide NEW badge on very small screens to fit text */
    }
.announce-cta .demo-btn.fill.desktop-btn {
    background: transparent !important;
    border: 0px solid transparent !important;
    padding: 0px;
    font-size: 13.5px;
    color: var(--launch-text);
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.announce-cta .demo-btn.fill.desktop-btn:hover {
    background: transparent !important;
    border: 0px !important;
    color: #fff !important;
    text-decoration: underline !important;
}
.announcement-bar-cta {
    font-size: 13.5px;
    color: var(--launch-text);
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.announcement-bar-cta:hover a {
    color: #fff;
}
.announcement-bar-cta svg {
    position: relative;
    right: 0;
    -webkit-transition: right .2s ease;
    -o-transition: right .2s ease;
    transition: right .2s ease;
    width:13px;
}
.announcement-bar-cta:hover svg {
    right: -5px;
}
.announcement-bar-cta a span {
    padding-left:12px;
}
/* Header (example fixed header) */
.site-header {

  z-index: 1000;
}

/* Announcement bar */
#announce-bar {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #f58220;
  color: #fff;
  transition: transform 0.3s ease;
}

/* Hide state */
#announce-bar.hide {
  transform: translateY(calc(-100% - 60px)); /* fully hide above header */
}
.site-header .brand {
    margin-top: 0px;
}
.announce-copy p {
    margin-bottom: 0px;
}
.announce-copy p a {
    text-decoration:none;
}
/* Outline dropdown chevron for top nav */
.nav-dropdown {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}

/* reset old arrow styles */
.nav-dropdown .nav-chevron {
  width: 8px !important;
  height: 8px !important;
  display: inline-block !important;
  flex: 0 0 8px;

  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  margin: -4px 0 0 2px !important;

  position: relative;
  transform: rotate(45deg) !important;
  transition: transform 0.25s ease, border-color 0.25s ease !important;

  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* outline chevron */
.nav-dropdown .nav-chevron::before {
  content: "" !important;
  display: block !important;
  width: 8px !important;
  height: 8px !important;

  border-right: 2px solid #ffffff !important;
  border-bottom: 2px solid #ffffff !important;

  background: transparent !important;
  transition: border-color 0.25s ease !important;
}

/* remove old pseudo arrow if present */
.nav-dropdown .nav-chevron::after {
  content: none !important;
  display: none !important;
}

/* hover color and rotate */
.nav-dropdown:hover .nav-chevron {
  transform: rotate(225deg) !important;
}

.nav-dropdown:hover .nav-chevron::before {
  border-color: #19C2E6 !important;
}

/* active/open state */
.nav-dropdown.active .nav-chevron {
  transform: rotate(225deg) !important;
}

.nav-dropdown.active .nav-chevron::before {
  border-color: #19C2E6 !important;
}
.category-item span.icon-arrow {
    display: none;
}

.blog-rail span.arrow-wrap {
    display: none;
}
/* Nav hover and active pill */
.desktop-nav .nav-link,
.desktop-nav .nav-dropdown {
  padding: 10px 15px !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #ffffff !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;

  border: 0 !important;
  text-decoration: none !important;
  transition: background-color 0.25s ease, color 0.25s ease !important;
}

/* hover */
.desktop-nav .nav-link:hover,
.desktop-nav .nav-dropdown:hover {
  background: #073B78 !important;
  color: #ffffff !important;
}

/* active/open/current */
.desktop-nav .nav-link.active,
.desktop-nav .nav-link.current,
.desktop-nav .nav-dropdown.active,
.desktop-nav .nav-dropdown.current {
  background: #073B78 !important;
  color: #ffffff !important;
}

/* arrow stays white on active and hover */
.desktop-nav .nav-dropdown:hover .nav-chevron::before,
.desktop-nav .nav-dropdown.active .nav-chevron::before,
.desktop-nav .nav-dropdown.current .nav-chevron::before {
  border-color: #ffffff !important;
}

/* arrow rotates on active/open */
.desktop-nav .nav-dropdown.active .nav-chevron,
.desktop-nav .nav-dropdown.current .nav-chevron {
  transform: rotate(225deg) !important;
  position:relative;
  top:5px;
}
