﻿:root {
  --ds-color-white: #fff;
  --ds-color-white-a0: #ffffff00;
  --ds-color-black: #000;
  --ds-color-text: #080808;
  --ds-main-primary:#8026FF;
  --ds-purple-950: #3d265a;
  --ds-purple-900: #241834;
  --ds-brand-violet: #873aff;
  --ds-brand-blue: #027fff;
  --ds-brand-purple: #5f21cd;
  --ds-violet-600: #6d28d9;
  --ds-violet-600b: #642bf7;
  --ds-violet-700: #7735e7;
  --ds-fuchsia-500: #dd2cf8;
  --ds-slate-900: #0f172a;
  --ds-slate-600: #475569;
  --ds-slate-500: #64748b;
  --ds-slate-100: #f1f5f9;
  --ds-slate-50: #f8fafc;
  --ds-surface-lilac: #f0e6ff;
  --ds-surface-lilac-soft: #efe0ff;
  --ds-text-muted: #a9a5ab;
  --ds-text-muted-2: #b8b3bc;
  --ds-danger: #ff6b6b;
  --ds-gray-mid: #888;
  --border: 1vh;
  --radius: 75vh;
}
body.ni-page {
  --ni-bg: #050507;
  --ni-surface: #0f0f12;
  --ni-surface-2: var(--ds-color-white);
  --ni-elev: #14141a;
  --ni-border: rgba(255, 255, 255, 0.08);
  --ni-text: #f4f4f5;
  --ni-text-3:var(--ds-color-white);
  --ni-muted: #a1a1aa;
  --ni-dim: #71717a;
  --ni-accent: #a78bfa;
  --ni-accent-2: #22d3ee;
  --ni-procure: #fb923c;
  --ni-commercial: #38bdf8;
  --ni-ops: #4ade80;
  --ni-radius: 20px;
  --ni-text-1:#291E39;
  /* Inter: UI/body · Sora: headlines (readable, modern product feel) */
  --ni-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ni-display: "Sora", var(--ni-font);
  /* background: var(--ds-color-white) !important; */
  font-family: var(--ni-font) !important;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}
body.ni-page.ni-page--light {
  --ni-bg: var(--ds-slate-50);
  --ni-surface: var(--ds-color-white);
  --ni-surface-dark:#1B102C;
  --ni-surface-2:#F6F5F6;
  
  --ni-bg-1:#F3EAFF;
  --ni-border-1:rgba(128, 38, 255, 0.20);

  --ni-elev: var(--ds-slate-100);
  --ni-border: rgba(15, 23, 42, 0.08);
  --ni-text: #291E39;
  --ni-muted: #84779d;
  --ni-dim: #88769b;
  --ni-accent: var(--ds-main-primary);
  --ni-accent-2: #0891b2;
  --ni-procure: #ea580c;
  --ni-commercial: #0284c7;
  --ni-ops: #16a34a;

}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  
}
Body {
  font-family: "inter", sans-serif;
  overflow: auto; /* Allow scrolling */
  -ms-overflow-style: none; /* IE & Edge */
  scrollbar-width: none; /* Firefox */
  position: relative;
  background-color: #f9f7ff;
  background-image: url('../Assets/herobg.webp');
  background-repeat: no-repeat;
  background-size: cover;
}
body.no-scroll {
  overflow: hidden;
}
main{
  overflow: hidden;
}
body::-webkit-scrollbar {
  display: none; /* Hides scrollbar */
}
ul {
  list-style: none;
  text-decoration: none;
}
a {
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6, ul, ul, p {
  margin: 0;
  padding: 0;
}
/* ======================================================================================================================== */

/* Footer */
.Footer h5.ni-section-head__title {
  color: var(--ni-text-3);
  width: 100%;
  text-align: left;
  margin-bottom: 80px;
  font-size: 2rem !important;
}

/* ======================================================================================================================== */

/* Layout */
.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.container-2 {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.page-hero-wrapper{
  position: relative;
  display: flex;
  gap: 32px;
  align-items: center;
}
.page-hero-wrapper-2{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 48px;
}
.page-hero-wrapper-2 > .content-box {
  flex: 1 1 100%;
  width: 100%;
  min-width: 0;
}
.page-hero-wrapper-2 > .newsroom-banner-image {
  max-width: min(780px, 100%);
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}
.fourgrid .item_wrapper{
  gap: 20px!important;
}
.fourgrid .item_wrapper .item_box{
  flex: 1 1 calc(25% - 20px)!important;
}
.fourgrid .item_wrapper .item_box img{
  width: 120px;
}
.twogrid .item_wrapper .item_box{
  flex: 1 1 calc(50% - 20px)!important;
}
.text-center{
  text-align: center!important;
}
.ni-grid-1{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.ni-grid-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ni-grid-2and3{
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 20px;
}
.ni-grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ni-grid-4{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ni-grid-6{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.ni-grid-12{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.content-box{
  position: relative;
  flex: 1 1 calc(50% - 32px);
}
.content-box img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-sizing: border-box;
}
.ni-hero {
  padding: 76px 0 0;
  min-height: auto;
  align-items: flex-start;
}
.page-hero{
  position: relative;
  padding: 100px 0 0px;
  margin-top: 0;
  box-sizing: border-box;
}
.border-radius-16{
  border-radius: 16px;
}
.gap-32{
  gap: 32px!important;
}
.gap-12{
  gap: 12px!important;
}
.m-0{
  margin: 0!important;
}
.align-item-center{
  align-items: center!important;
}
.justify-content-center{
  justify-content: center!important;
}
.bg-none{
  background: transparent!important;
}
.border-none{
  border: none !important;;
}
.p-0{
  padding:0!important;
}
.b-r-0{
  border-radius:0!important;
}
.mb-16{
  margin-bottom: 16px!important;
}
.image-100{
  width: 100%!important;
  border-radius: 14px;
}
.d-flex{
  display: flex;
  align-items: center;
}
.max-w-100{
  max-width: 100%!important;
}
.item_box.image_box .item_content img[src$=".svg"] {
  height: 35px;
  width: auto;
  object-fit: contain;
}
.text-left{
  text-align: left!important;
}
.align-item-left{
  align-items: baseline!important;
}
img.small{
  width: 18px!important;
}
a.ni-card__link {
  color: var(--ni-accent);
}
.item_wrapper{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.item_wrapper .item_box{
  position: relative;
  flex: 1 1 calc(33.33% - 20px);
  border-radius: 14px;
}
.item_box img{
  width: 45px;
  margin-bottom: 16px;
}
.item_content{
  position: relative;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: right;
  align-items: center;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  border-radius: 14px;
  box-sizing: border-box;
  background: var(--ni-surface);
  border: 1px solid var(--ni-border);
  text-align: center;
}

/* ======================================================================================================================== */

/* Chip Component */
.chip{
  background: var(--ds-color-white);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
}
.chip-outlined{
  background: transparent;
}
.chip-outlined:hover{
  background: rgba(128, 38, 255, 0.04);
}
.chip-primary-outlined{
  border: 1px solid var(--ni-accent);
  color: var(--ni-accent);
}
.inherit{
  background-color: #ECEBEE;
  color: #251A34;
}

/* ======================================================================================================================== */

/* Spacing */
.ni-section{
  padding: 100px 0 0px;
}
.inner_m {
  margin-bottom: 42px;
}
.inner_m2 {
  margin-bottom: 48px;
}
.sec_m {
  margin-bottom: 96px;
}

/* ======================================================================================================================== */

/* Font Styles */
p.style-1{
  color: #B672FF !important;
  font-size: 60px!important;
}
.text-style-2{
  font-size: 20px!important;
  color: var(--ni-text);
}
.inner-page--h3-style-2{
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 1rem !important;
  font-weight: 500 !important;
  margin: 0 0 8px;
  color: var(--ni-text);
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.25;
}
.ni-section-head__title {
  font-size: clamp(1.5rem, 5.5vw, 2.25rem);
}

/* ======================================================================================================================== */

/* Empty */
a:empty {
  pointer-events: none;
}

/* ======================================================================================================================== */
/* header */
header {
  background: #fff;
  box-shadow: 0px 4px 10px 1px rgb(174 0 255 / 8%);
}
header.sticky_header {
  position: fixed;
  top: -100px; /* Initially hidden */
  left: 0;
  width: 100%;
  background: rgb(255 255 255 / 80%);
  -webkit-backdrop-filter: blur(22px);
          backdrop-filter: blur(22px);
  color: white;
  text-align: center;
  transition: top 0.4s ease-in-out;
  z-index: 9991;
  will-change: transform;
}
header.sticky_header .header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0px;
}
header.sticky_header .header_wrapper .dropdown {
  background: var(--ni-surface);
}
.header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  position: relative;
}
.nav {
  border-radius: 8px;
  display: flex;
}
.nav .nav_item, .nav > a {
  list-style: none;
  color: var(--ds-color-white);
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  font-weight: 500;
  border-radius: 8px;
  position: relative;
}
.nav .nav_item a, .nav .nav_item label {
  color: var(--ni-text);
  padding: 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.nav .nav_item img, .nav > a img {
  padding-left: 12px;
}
.nav .nav_item a:hover, .nav .nav_item label:hover {
  background: rgba(128, 38, 255, 0.04);
}
.nav .nav_item ul.dropdown li a:hover {
  background: rgba(128, 38, 255, 0.04);
}
.nav .nav_item {
  margin-right: 12px;
}
.nav .nav_item .dropdown, .nav > a .dropdown {
  position: absolute;
  top: calc(100% - 0px);
  right: 0px;
  background: var(--ni-surface);
  -webkit-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);
  border-radius: 5px;
  overflow: hidden;
  padding: 16px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  display: none;
  max-width: 900px;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 99;
  margin: 0 auto;
}
.nav .nav_item ul.dropdown, .nav > a ul.dropdown {
  flex-direction: column;
  padding: 8px;
  width: 250px;
}
.nav .nav_item ul.dropdown li a, .nav > a ul.dropdown li a {
  color: var(--ni-text);
  padding: 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.nav .nav_item:hover .dropdown, .nav > a:hover .dropdown {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.nav .nav_item:last-child, .nav > a:last-child {
  margin-left: 12px;
  padding: 0;
}
.nav .nav_item:hover, .nav > a:hover {
  background-color: rgba(255, 255, 255, 0.07);
}
.nav .nav_item:nth-child(4), .nav .nav_item:nth-child(2), .nav > a:nth-child(4), .nav > a:nth-child(2) {
  position: relative;
}
.nav .nav_item:nth-child(4) .dropdown, .nav .nav_item:nth-child(2) .dropdown, .nav > a:nth-child(4) .dropdown, .nav > a:nth-child(2) .dropdown {
  right: 0;
  left: unset;
  min-width: auto;
  top: 100%;
}
.mobile_menu {
  display: none;
}
.mobile_menu button {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 8px;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.mobile_nav {
  display: none;
}
.nav .nav_item:last-child button.req_demo,
.mobile_menu button {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
}
/* ======================================================================================================================== */

/* Button */
.ni-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ni-font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.ni-btn--primary {
  background: var(--ds-main-primary)!important;
  color: var(--ds-color-white) !important;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(109, 40, 217, 0.35);
}
.ni-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(109, 40, 217, 0.45);
}
.ni-btn--ghost {
  background: #fff;
  color: var(--ni-text) !important;
  border-color: var(--ni-border);
}
.ni-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}
.hk-button {
  padding: 14px 18px;
  background: var(--ds-color-black);
  color: var(--ds-color-white);
  font-family: monospace;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  font-family: 'Inter', sans-serif;
}
.hk-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1 / 1;
  width: 150%;
  height: auto;
  border-radius: 50%;
  background: conic-gradient(var(--ds-color-white) 0%, var(--ds-violet-700) 3%, var(--ds-violet-700) 60%, var(--ds-color-white) 100%);
  animation: spin linear 2s infinite;
}
.hk-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background: var(--ds-violet-700);
  transform: translate(-50%, -50%);
  border-radius: var(--radius);
  backdrop-filter: blur(100px);
}
.hk-button span {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 14px;
}
.outlined-button{
  background: var(--ni-bg-1);
  border: 1px solid var(--ni-border-1);
  color: var(--ni-accent);
}
.outlined-button-g1{
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, var(--ds-brand-violet), var(--ds-brand-blue)) border-box;
  border: 2px solid transparent !important;
  color: var(--ds-brand-violet);
}
.link-button-g1{
  color: var(--ds-brand-violet);
  display: flex;
  align-items: center;
}
.link-button-g1 img {
  width: 24px;
    margin-top: 1px;
}

/* Interactive states — hover and keyboard focus */
.hk-button {
  transition: transform 0.2s ease;
}
.hk-button::after {
  transition: background 0.2s ease;
}
@media (hover: hover) {
  .hk-button:hover {
    transform: translateY(-2px);
  }
  .hk-button:hover::after {
    background: #6d28d9;
  }
  a.ni-btn.outlined-button:hover,
  button.ni-btn.outlined-button:hover,
  .ni-btn.outlined-button:hover {
    border-color: var(--ni-accent);
    background: rgba(128, 38, 255, 0.06);
    transform: translateY(-1px);
  }
  .arrow:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 14px rgba(109, 40, 217, 0.35);
  }
  .dot:hover:not(.active) {
    border-color: var(--ni-accent);
    background: rgba(128, 38, 255, 0.12);
  }
  .close-gallery:hover {
    opacity: 0.85;
    background: rgba(255, 255, 255, 0.12);
  }
  .request-demo-modal .close-icon:hover {
    background: rgba(15, 23, 42, 0.08);
  }
  header .mobile_menu button:hover,
  header .header_wrapper .mobile_nav .nav button#closeBtn:hover,
  header .header_wrapper .mobile_nav .nav button#closeBtn1:hover {
    opacity: 0.85;
    background: rgba(128, 38, 255, 0.06);
  }
  .newsroomcontent .tabs .tab-buttons-2 .tab-btn-2:hover:not(.active) {
    color: var(--ni-accent);
    background: rgba(128, 38, 255, 0.08);
  }
  .tabs .tab-buttons .tab-btn:hover:not(.active) {
    border-color: rgba(128, 38, 255, 0.35);
    background: rgba(244, 237, 255, 0.9);
    color: var(--ni-accent);
  }
  .mobile_nav .accordion-toggle > label:hover {
    background: rgba(128, 38, 255, 0.04);
  }
  a.ni-card__link:hover {
    color: #7c3aed !important;
  }
  a.ni-stat:hover {
    color: #7c3aed !important;
    opacity: 0.92;
  }
  a.copy-page-link:hover {
    opacity: 0.8;
  }
  a.link-button-g1:hover {
    color: #6d28d9;
    opacity: 0.92;
  }
}
.hk-button:focus-visible {
  transform: translateY(-2px);
  outline: 2px solid var(--ni-accent);
  outline-offset: 3px;
}
.hk-button:focus-visible::after {
  background: #6d28d9;
}
a.ni-btn.outlined-button:focus-visible,
button.ni-btn.outlined-button:focus-visible,
.ni-btn.outlined-button:focus-visible {
  border-color: var(--ni-accent);
  background: rgba(128, 38, 255, 0.06);
  outline: 2px solid var(--ni-accent);
  outline-offset: 2px;
}
.arrow:focus-visible {
  transform: translateY(-50%) scale(1.05);
  outline: 2px solid var(--ni-accent);
  outline-offset: 2px;
}
.dot:focus-visible {
  outline: 2px solid var(--ni-accent);
  outline-offset: 2px;
}
.close-gallery:focus-visible {
  outline: 2px solid var(--ds-color-white);
  outline-offset: 4px;
}
.request-demo-modal .close-icon:focus-visible {
  background: rgba(15, 23, 42, 0.08);
  outline: 2px solid var(--ni-accent);
  outline-offset: 2px;
}
header .mobile_menu button:focus-visible,
header .header_wrapper .mobile_nav .nav button#closeBtn:focus-visible,
header .header_wrapper .mobile_nav .nav button#closeBtn1:focus-visible {
  outline: 2px solid var(--ni-accent);
  outline-offset: 2px;
}
.newsroomcontent .tabs .tab-buttons-2 .tab-btn-2:focus-visible:not(.active) {
  color: var(--ni-accent);
  background: rgba(128, 38, 255, 0.08);
  outline: 2px solid var(--ni-accent);
  outline-offset: 2px;
}
.tabs .tab-buttons .tab-btn:focus-visible:not(.active) {
  border-color: var(--ni-accent);
  outline: 2px solid var(--ni-accent);
  outline-offset: 2px;
}
.mobile_nav .accordion-toggle > label:focus-visible {
  background: rgba(128, 38, 255, 0.04);
  outline: 2px solid var(--ni-accent);
  outline-offset: 2px;
}
a.ni-card__link {
  transition: color 0.2s ease, opacity 0.2s ease;
}
a.ni-card__link:focus-visible {
  color: #7c3aed !important;
  outline: 2px solid var(--ni-accent);
  outline-offset: 2px;
}
a.ni-stat {
  transition: color 0.2s ease, opacity 0.2s ease;
}
a.ni-stat:focus-visible {
  color: #7c3aed !important;
  outline: 2px solid var(--ni-accent);
  outline-offset: 2px;
}
a.copy-page-link {
  transition: opacity 0.2s ease;
}
a.copy-page-link:focus-visible {
  opacity: 0.8;
  outline: 2px solid var(--ni-accent);
  outline-offset: 2px;
  border-radius: 4px;
}
a.link-button-g1 {
  transition: color 0.2s ease, opacity 0.2s ease;
}
a.link-button-g1:focus-visible {
  color: #6d28d9;
  outline: 2px solid var(--ni-accent);
  outline-offset: 2px;
}

.ni-btn--ghost:hover {
  background: rgba(15, 23, 42, 0.07);
  border-color: rgba(15, 23, 42, 0.12);
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes glow {
  0% {
    border: 0 transparent solid;
  }
  25% {
    border: 15px #4094 solid;
  }
  50% {
    border: 30px transparent solid;
  }
  100% {
    border: 0 transparent solid;
  }
}
/* Button end */

/* ======================================================================================================================== */

/* Title styles  */
.ni-section-head__title em{
  font-style: normal;
  background: linear-gradient(120deg, var(--ds-brand-violet) 55%, var(--ds-brand-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.inner-page--h3{
  font-family: var(--ni-display);
  font-size: 1rem!important;
  font-weight: 700!important;
  margin: 0 0 8px;
  color: var(--ni-text);
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.25;
}
.inner-page--h2 {
  font-family: var(--ni-display);
  font-size: 1.5rem !important;
  font-weight: 700!important;
  margin: 0 0 8px;
  color: var(--ni-text);
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.25;
}
.inner-page--h4 {
  font-size: 0.875rem!important;;
  font-weight: 500!important;
  margin: 0 0 0.5rem;
  color: var(--ni-text);
  font-family: var(--ni-display);
  text-align: center;
  line-height: 1.25;
}
.inner-page-p{
  font-size: 14px;
  color: var(--ni-muted);
  text-align: center;
  line-height: 1.65;
}
.ni-section-head__sub {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ni-muted);
  margin: 0;
  font-weight: 400;
  text-align: center;
}
.ni-section-head__sub__left {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ni-muted);
  margin: 0 0 12px 0;
  font-weight: 400;
  text-align: left;
}
.ni-section-head__title {
  font-family: var(--ni-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem)!important;
  font-weight: 800!important;
  text-align: center;
  color: var(--ni-text-1);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.ni-section-head__title__left{
  font-family: var(--ni-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  text-align: left;
  color: var(--ni-text-1);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.inner-page-title{
  font-family: var(--ni-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ni-text);
  margin: 0 0 20px;
  text-align: left;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.inner-page-title em{
  font-style: normal;
  background: linear-gradient(120deg, var(--ds-brand-violet) 55%, var(--ds-brand-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.inner-page-subtext{
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ni-muted);
  max-width: 36rem;
  margin: 0 0 28px;
  font-weight: 400;
  text-align: left;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
strong{
  color: var(--ni-text-1);
}
sup {
  font-size: 9px; /* Adjust font size */
  vertical-align: super; /* Ensures proper positioning */
}
/* Title styles end */

/* ======================================================================================================================== */

/* Divider */
.divider-20::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #E2E1E4;
  margin: 20px 0 20px 0;
}
/* Divider end */

/* ======================================================================================================================== */

/* Input field */
.input_field {
  margin-bottom: 16px;
}
.input_field label {
  display: block;
  font-size: 12px;
  color: var(--ds-color-white);
  margin-bottom: 8px;
}
.input_field input, 
.input_field select, 
.input_field textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1215686275);
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.0705882353);
  box-sizing: border-box;
  color: var(--ds-color-white);
  font-family: "Inter";
}
.input_field select {
  color: gray; /* Default text color */
}
.input_field select option:first-child {
  color: var(--ds-color-white); /* Change color */
  opacity: 50%; /* Ensure full visibility */
}
.input_field input[type=radio] {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}
.input_field textarea {
  height: 100px;
  resize: vertical;
}
.input_field input[type=text]:focus,
.input_field input[type=email]:focus,
.input_field textarea:focus,
.input_field select:focus {
  border-color: var(--ds-color-white);
  box-shadow: 0 0 5px var(--ds-color-white);
}
.input_field .custom-radio-group {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 16px;
}
.input_field .custom-radio-group label {
  margin: 0;
}
.input_field .custom-radio-group div {
  display: flex;
  align-items: center;
}
.input_field input::-moz-placeholder, 
.input_field select::-moz-placeholder, 
.input_field textarea::-moz-placeholder {
  color: var(--ds-color-white); /* Change color */
  opacity: 50%; /* Ensure full visibility */
}
.input_field input::placeholder, 
.input_field select::placeholder, 
.input_field textarea::placeholder {
  color: var(--ds-color-white); /* Change color */
  opacity: 50%; /* Ensure full visibility */
}
.input_field .custom-select {
  cursor: pointer;
  max-width: 500px;
}
.input_field input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* Remove default radio */
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1215686275);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.input_field input[type=radio]:checked {
  background-color: rgba(161, 89, 255, 0.9882352941); /* Change background when selected */
  border-color: rgba(161, 89, 255, 0.9882352941);
}
.input_field input[type=radio]::before {
  content: "";
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.2s ease-in-out;
}
.input_field input[type=radio]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}
select.custom-select option {
  font-size: 14px;
  padding: 2px 6px;
  line-height: 1;
  background-color: rgb(38, 32, 45);
  color: var(--ds-color-white);
}
select.custom-select {
  min-height: 30px;
}

/* Input field end */

/* ======================================================================================================================== */

/* Request demo form */
#form-request-demo, .submit-btn {
  position: relative;
  border: 0;
  padding: 16px 24px;
  border-radius: 7px;
  background-image: linear-gradient(186deg, #1a0247, rgba(161, 89, 255, 0.9882352941));
  color: var(--ds-color-white);
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#form-request-demo:hover, .submit-btn:hover {
  box-shadow: 0px 18px 20px 0px rgba(88, 11, 227, 0.4117647059);
}
.request-demo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
.request-demo-modal .request-demo-form {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1294117647);
  width: 90%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: left;
  background: rgba(255, 255, 255, 0.01);
  -webkit-backdrop-filter: blur(32px);
          backdrop-filter: blur(32px);
}
.request-demo-modal .request-demo-form {
  background: var(--ds-color-white) !important;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
}
.request-demo-modal .request-demo-form .input_field {
  margin-bottom: 16px;
}
.request-demo-modal .request-demo-form .input_field label {
  display: block;
  font-size: 12px;
  color: var(--ni-text) !important;
  margin-bottom: 8px;
}
.request-demo-modal .request-demo-form .input_field input, 
.request-demo-modal .request-demo-form .input_field select, 
.request-demo-modal .request-demo-form .input_field textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.0705882353);
  box-sizing: border-box;
  color: var(--ni-dark);
  font-family: "Inter";
}
.request-demo-modal .request-demo-form .input_field select {
  color: gray; /* Default text color */
}
.request-demo-modal .request-demo-form .input_field select option:first-child {
  color: var(--ds-color-white); /* Change color */
  opacity: 50%; /* Ensure full visibility */
}
.request-demo-modal .request-demo-form .input_field input[type=radio] {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}
.request-demo-modal .request-demo-form .input_field textarea {
  height: 100px;
  resize: vertical;
}
.request-demo-modal .request-demo-form .input_field input:focus,
.request-demo-modal .request-demo-form .input_field select:focus,
.request-demo-modal .request-demo-form .input_field textarea:focus {
  border-color: var(--ni-accent) !important;
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.15);
}
.request-demo-modal .request-demo-form .input_field .custom-radio-group {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 16px;
}
.request-demo-modal .request-demo-form .input_field .custom-radio-group label {
  margin: 0;
}
.request-demo-modal .request-demo-form .input_field .custom-radio-group div {
  display: flex;
  align-items: center;
}
.request-demo-modal .request-demo-form .input_field input::-moz-placeholder, 
.request-demo-modal .request-demo-form .input_field select::-moz-placeholder, 
.request-demo-modal .request-demo-form .input_field textarea::-moz-placeholder {
  color: var(--ds-color-white); /* Change color */
  opacity: 50%; /* Ensure full visibility */
}
.request-demo-modal .request-demo-form .input_field input::placeholder, 
.request-demo-modal .request-demo-form .input_field select::placeholder, 
.request-demo-modal .request-demo-form .input_field textarea::placeholder {
  color: var(--ds-color-white); /* Change color */
  opacity: 50%; /* Ensure full visibility */
}
.request-demo-modal .request-demo-form .input_field .custom-select {
  cursor: pointer;
  max-width: 500px;
}
.request-demo-modal .request-demo-form .close-icon {
  position: absolute;
  top: 0;
  right: 0px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ni-dark);
  height: 48px;
  width: 48px;
  border-radius: 38px;
  transition: background 0.2s ease, color 0.2s ease;
}
.request-demo-modal .successfully_Submitted h1, 
.request-demo-modal .successfully_Submitted p, 
.request-demo-modal .successfully_Submitted span {
  color: var(--ni-text);
  text-align: center;
  display: block;
}
.request-demo-modal .successfully_Submitted h1 {
  margin-bottom: 12px;
}
.request-demo-modal .successfully_Submitted p {
  margin-bottom: 8px;
}
.request-demo-modal .successfully_Submitted span {
  font-size: 12px;
  color: var(--ni-muted);
}

/* Error message */
.error_message {
  display: block;
  font-size: 14px;
  margin-top: 5px;
}
.text-danger {
  color: #ff7e8a;
  background-color: rgba(247, 49, 49, 0.3019607843);
  /* padding: 8px; */
  display: block;
  box-sizing: content-box;
  margin-top: 8px;
  border-radius: 4px;
  padding-left: 12px;
  line-height: 30px;
}
.text-success {
  color: #2fa16e;
  background-color: rgba(49, 247, 172, 0.16);
  /* padding: 8px; */
  display: block;
  box-sizing: content-box;
  margin-top: 8px;
  border-radius: 4px;
  padding-left: 12px;
  line-height: 30px;
}
/* Error message end */
/* Request demo form end */

/* ======================================================================================================================== */

/* Home page hero title */
.ni-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ni-muted);
  margin: 0 0 20px;
  font-weight: 600;
  line-height: 1.2;
}
.ni-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ni-accent);
  margin: 0 0 12px;
  font-weight: 700;
  line-height: 1.2;
}
.ni-hero__title {
  font-family: var(--ni-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ni-text);
  margin: 0 0 20px;
}
.ni-hero {
  position: relative;
  padding: 90px 0 0;
  /* min-height: min(92vh, 900px); */
  display: flex;
  align-items: center;
}
.ni-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
em {
  font-style: normal;
  background: linear-gradient(120deg, var(--ds-brand-violet) 55%, var(--ds-brand-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.ni-hero__lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ni-muted);
  max-width: 36rem;
  margin: 0 0 28px;
  font-weight: 400;
}
.ni-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.ni-hero__video-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 904 / 451;
}
.ni-hero__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
#top.ni-hero .ni-hero__video-wrap {
  border-radius: 16px;
}
#top.ni-hero .ni-hero__video-wrap video {
  object-fit: cover;
  border-radius: inherit;
}
.ni-hero__video-controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ni-hero__video-wrap.is-native-controls .ni-hero__video-controls {
  display: none;
}
.ni-hero__video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(17, 12, 28, 0.55);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}
.ni-hero__video-btn:hover {
  background: rgba(17, 12, 28, 0.72);
  transform: scale(1.04);
}
.ni-hero__video-btn:focus-visible {
  outline: 2px solid var(--ds-brand-violet);
  outline-offset: 2px;
}
.ni-hero__video-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ni-hero__video-playback[data-playing="true"] .ni-hero__video-icon--play,
.ni-hero__video-playback[data-playing="false"] .ni-hero__video-icon--pause {
  display: none;
}
.ni-hero__video-sound[data-muted="true"] .ni-hero__video-icon--unmuted,
.ni-hero__video-sound[data-muted="false"] .ni-hero__video-icon--muted {
  display: none;
}
.ni-hero__video-fs[data-fullscreen="false"] .ni-hero__video-icon--exit-fs,
.ni-hero__video-fs[data-fullscreen="true"] .ni-hero__video-icon--enter-fs {
  display: none;
}
/* Fullscreen must beat #top.ni-hero … object-fit: cover and mobile aspect-ratio */
#top.ni-hero .ni-hero__video-wrap:fullscreen,
#top.ni-hero .ni-hero__video-wrap:-webkit-full-screen,
.ni-hero__video-wrap:fullscreen,
.ni-hero__video-wrap:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top.ni-hero .ni-hero__video-wrap:fullscreen video,
#top.ni-hero .ni-hero__video-wrap:-webkit-full-screen video,
.ni-hero__video-wrap:fullscreen video,
.ni-hero__video-wrap:-webkit-full-screen video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  border-radius: 0 !important;
}
#hero-video:fullscreen,
#hero-video:-webkit-full-screen {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain !important;
  background: #000;
  border-radius: 0 !important;
}
#top.ni-hero .ni-hero__video-wrap:fullscreen .ni-hero__video-controls,
#top.ni-hero .ni-hero__video-wrap:-webkit-full-screen .ni-hero__video-controls,
.ni-hero__video-wrap:fullscreen .ni-hero__video-controls,
.ni-hero__video-wrap:-webkit-full-screen .ni-hero__video-controls {
  right: 20px;
  bottom: 20px;
}
#top.ni-hero .ni-hero__video-wrap:fullscreen.is-native-controls .ni-hero__video-controls,
#top.ni-hero .ni-hero__video-wrap:-webkit-full-screen.is-native-controls .ni-hero__video-controls,
.ni-hero__video-wrap:fullscreen.is-native-controls .ni-hero__video-controls,
.ni-hero__video-wrap:-webkit-full-screen.is-native-controls .ni-hero__video-controls {
  display: none;
}
#top.ni-hero {
  overflow-x: hidden;
}
#top.ni-hero .ni-hero__inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  width: 100%;
  max-width: 1280px;
  box-sizing: border-box;
}
/* Shared hero type — V2 Default (final) */
#top.ni-hero .ni-hero__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
#top.ni-hero .ni-hero__lead {
  font-size: 1rem;
  line-height: 1.65;
  max-width: 32rem;
  margin: 0 0 20px;
  color: var(--ni-muted);
}
#top.ni-hero .ni-hero__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}
#top.ni-hero .ni-hero__copy {
  order: 1;
  min-width: 0;
}
#top.ni-hero .ni-hero__trust {
  order: 3;
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  margin-top: 8px;
  min-width: 0;
  overflow: hidden;
}
#top.ni-hero .ni-hero__media {
  order: 2;
  min-width: 0;
}
#top.ni-hero .ni-hero__trust-label {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ni-muted);
  text-align: center;
  font-family: var(--ni-font);
}
#top.ni-hero .ni-hero__trust .ni-trust__row img {
  height: clamp(64px, 5.5vw, 92px);
  max-width: 184px;
  width: auto;
  object-fit: contain;
}
#top.ni-hero .ni-hero__video-wrap {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 1280px) {
  #top.ni-hero .ni-hero__video-wrap {
    width: 108%;
    max-width: none;
    margin-left: auto;
  }
  #top.ni-hero .ni-hero__media {
    overflow: visible;
  }
}

/* Mobile / tablet: single-column hero */
@media (max-width: 1024px) {
  #top.ni-hero {
    padding: 40px 0 28px;
    overflow: hidden;
    align-items: stretch;
  }
  #top.ni-hero .ni-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    width: 100%;
    max-width: 1280px;
    box-sizing: border-box;
  }
  #top.ni-hero .ni-hero__copy,
  #top.ni-hero .ni-hero__media,
  #top.ni-hero .ni-hero__trust {
    grid-column: 1;
    min-width: 0;
    max-width: 100%;
  }
  #top.ni-hero .ni-hero__copy { order: 1; }
  #top.ni-hero .ni-hero__media { order: 2; }
  #top.ni-hero .ni-hero__trust { order: 3; margin-top: 0; }
  #top.ni-hero .ni-hero__title {
    font-size: clamp(2rem, 8vw, 60px);
  }
  #top.ni-hero .ni-hero__lead { max-width: none; }
  #top.ni-hero .ni-hero__video-wrap {
    width: 100% !important;
    max-width: 100%;
    margin: 0 !important;
    aspect-ratio: 16 / 10;
  }
  #top.ni-hero .ni-hero__trust .ni-trust__row img {
    height: clamp(72px, 19vw, 96px);
    max-height: 96px;
    max-width: 196px;
  }
  #top.ni-hero .ni-hero__trust .ni-trust__track {
    overflow: hidden;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  #top.ni-hero { padding: 28px 0 20px; }
  #top.ni-hero .ni-hero__inner { gap: 16px; }
  #top.ni-hero .ni-hero__video-controls { right: 10px; bottom: 10px; gap: 6px; }
  #top.ni-hero .ni-hero__video-btn { width: 36px; height: 36px; }
}.ni-platform__art img {
  position: relative;
  z-index: 1;
  max-width: 719px;
  width: auto;
}
/* hero end */

/* ======================================================================================================================== */

/* Proof */
.ni-proof {
  padding: 96px 0 20px;
}
.ni-proof .ni-stat-container{
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: var(--ni-surface);
  border: 1px solid var(--ni-border);
  border-radius: 16px;
  text-decoration: none !important;
  color: inherit !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.ni-proof .ni-stat-container:hover .ni-icon-container img{
  transform: scale(1.05) rotate(1deg);
}
.ni-proof .ni-stat-container .ni-stat{
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  color: var(--ni-accent);
  display: flex;
    align-items: center;
    gap: 12px;
}
.ni-proof .ni-stat-container .ni-stat img{
    width: 20px;
}
.ni-proof .ni-stat__value {
  font-family: var(--ni-display);
  font-weight: 500;
  font-size: 3rem;
  width: 100%;
  margin-bottom: 16px;
}
.ni-proof .ni-stat__label {
  font-size: 14px;
  color: var(--ni-muted);
  line-height: 1.45;
}
.ni-proof__cta {
  text-align: center;
  margin-top: 32px;
}
.ni-proof .ni-icon-container{
  width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 7px;
}
.ni-proof .ni-icon-container img {
  width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.ni-proof .ni-stat__content {
  display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 16px;
}
.ni-proof *{
  font-family: "Inter", sans-serif;
}
.ni-proof .card22 p {
  font-size: 22px;
  width: 100%;
  font-weight: 300;
  line-height: 1.65;
}
.ni-proof .divider ,.ni-agents .divider{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #ECEBEE;
  margin: 24px 0;
}
.ni-proof ul {
  width: 100%;
}
.ni-proof ul li {
  font-size: 14px;
  font-weight: 400;
  color: var(--ni-muted);
  margin-top: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ni-proof h6 {
  font-size: 14px;
  font-weight: 400;
  color: var(--ni-muted);
}
.carousel{
  position:relative;
}
.carousel-view{
  overflow:hidden;
}
.carousel-track{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:calc((100% - 40px)/3);
  gap:20px;
  transition:transform .45s ease;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.card22{
  min-width:calc((100% - 40px)/3);
  border-radius:18px;
  background:linear-gradient(135deg,#222,#333);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:32px;
  font-weight:bold;
}
.carousel-slide {
  min-width: calc((100% - 40px) / 3);
  display: block;
}
.ni-events__grid {
  position: relative;
}
.ni-events .carousel-view {
  container-type: inline-size;
  overflow: hidden;
}
.ni-events .carousel-track {
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  grid-auto-columns: calc((100cqw - 40px) / 3);
}
.ni-events .carousel-slide {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  width: calc((100cqw - 40px) / 3);
  min-width: calc((100cqw - 40px) / 3);
  max-width: calc((100cqw - 40px) / 3);
}
.ni-events__cta {
  text-align: center;
  margin-top: 32px;
}
.ni-events .carousel-slide .newsroom-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  min-height: 100%;
  box-sizing: border-box;
  padding: 16px;
  background: var(--ni-surface);
  border: 1px solid var(--ni-border);
  border-radius: 16px;
}
.ni-events .carousel-slide .newsroom-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
}
.ni-events .carousel-slide .newsroom-content .card-chip {
  align-self: flex-start;
  width: fit-content;
}
.ni-events .carousel-slide .newsroom-content .divider-20 {
  margin-top: auto;
}
.arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--ni-accent);
  color: var(--ni-surface);
  cursor: pointer;
  font-size: 22px;
  z-index: 10;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.left{     left: -28px; }
.right{ right: -28px; }
.indicators{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:22px;
}
.dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: .3s;
  background: var(--ni-surface);
  border: 1px solid rgb(225 225 225);
}
.dot.active{
  width:30px;
  border-radius:20px;
  background: var(--ds-brand-violet);
}
/* end of proof */

/* ======================================================================================================================== */

/* Chip */
body .chip{
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 20px;
}

body .chip.primary.standard{
  background-color: #E8D8FF;
  color: #5A02BD;
}
body .chip.info.standard{
  background-color: #ECF4FF;
  color: #285FB3;
}
body .chip.warning.standard{
  background-color: #FFF1EC;
  color: #C4542B;
}
body .chip.events.standard,
body .chip.info.standard.events{
  background-color: #ECF4FF;
  color: #285FB3;
}
/* Chip end */

/* ======================================================================================================================== */

/* Case study */
.casestudy_main_content .ni-stat__content {
  display: flex;
  justify-content: space-between;
}
.case-study-inner-content h6{
  font-size: 14px;
  font-weight: 400;
  color: var(--ni-muted);
}
.case-study-inner-content .ni-stat {
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  color: var(--ni-accent);
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-study-inner-content .ni-stat__value{
  font-family: var(--ni-display);
    font-weight: 500;
    font-size: 3rem;
    width: 100%;
    margin-bottom: 16px;
}
.case-study-inner-content p{
  font-size: 22px;
  width: 100%;
  font-weight: 300;
  color: var(--ni-text);
}
.case-study-inner-content ul li {
  font-size: 14px;
  font-weight: 400;
  color: var(--ni-muted);
  margin-top: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.casestudy .item_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.casestudy .item_wrapper .item_box {
  position: relative;
  flex: 1 1 calc(33.33% - 16px);
  width: 33.3%;
  animation: appear-left 1s linear;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
  border-radius: 14px;
}
.casestudy .item_wrapper .item_box .item_content {
  height: 100%;
  border-radius: 14px;
  box-sizing: border-box;
}
/* Case study end */

/* ======================================================================================================================== */

.page-hero-wrapper .ni-badge{
  margin-bottom: 12px;
}
.section_title p {
  width: 100%;
}

/* ======================================================================================================================== */

/* Platform page */
.compliance article {
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
article.soc img {
  width: 48px;
}
article.hipa img {
  width: 100px;
  filter: invert(1);
}
article.gdpr img {
  width: 66px;
}
.ni-platform__media--studio img {
  display: block;
  width: 100%;
  height: 479px;
  object-fit: contain;
}

/* ======================================================================================================================== */

/* footer */
.Footer .ni-grid-4 h5 {
  color: #fff;
  margin-bottom: 21px;
  font-family: var(--ni-display);
}
.Footer a {
  color: var(--ni-muted);
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.879rem;
}
.Footer .address-f p{
  color: var(--ni-muted);
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.879rem;
}
.Footer .ni-grid-4 .item_box {
  margin-bottom: 50px;
}
.compliance {
  display: flex;
  padding: 60px 0px 0px 0;
  margin-top: 60px;
  justify-content: center;
  border-top: 1px solid var(--ni-border-1);
  gap: 30px;
  align-items: center;
}
.compliance-f {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 13px;
}
.Footer .compliance-f img {
  width: 62px;
  height: 56px;
  background:  #ffffff14;
  border-radius: 8px;
  object-fit: scale-down;
  padding: 6px;
}
.Footer a:hover {
  color: #d5cee3;
  text-decoration: underline;
}
.footer_wrapper {
  background-image: url('../Assets/footerbg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0 0 0;
}
.footer_wrapper .item_wrapper .item_box .item_content ul li {
  margin-bottom: 8px;
  text-align: left;
}
.footer_wrapper .sub_footer {
  background: rgba(0, 0, 0, 0.2392156863);
  padding: 16px 0;
}
.footer_wrapper .sub_footer_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_wrapper .sub_footer_wrapper p {
  color: rgba(255, 255, 255, 0.6117647059);
  font-size: 14px;
  font-weight: 200;
}
.Footer {
  margin-top: 76px;
  background: var(--ni-surface-dark);
}

/* ======================================================================================================================== */

/* Dividers */
.divider::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgb(255 255 255 / 8%);
  margin: 40px 0 10px 0;
}
.divider-2::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(45deg, rgb(255 255 255 / 12%), transparent);
  margin: 40px 0 40px 0;
}
.divider-1::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #E2E1E4;
  margin: 40px 0 40px 0;
}

/* ======================================================================================================================== */

/* Agent Studio Page*/
.ni-studio-content img{
    width: 36px;
    margin-bottom: 12px;
}

/* ======================================================================================================================== */

/* AI Agents Page */
.commercialaipage .section_title .content_bg, 
.operatingaipage .section_title .content_bg {
  background-image: url(../Assets/futuristicimagec.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}
.tab_wrapper.agents-image-tab img{
  object-fit: contain;
  max-width: 800px;
}
.inside_dsilo_ai_Agents .item_content img {
  height: 60px!important;
  width: auto!important;
  object-fit: contain!important;
}
.content_bg h1{
color: #fff;
}
.content_bg p{
  color: #fff;
  }
/* ======================================================================================================================== */

/* Newsroom Page */
.newsroom-banner-image {
  aspect-ratio: 16 / 9;
  max-width: 780px;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.newsroom-banner-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}
.newsroom-content {
  text-align: left;
}


/* ======================================================================================================================== */

/* Article and pressrelease Content Page */
.article-content-link{
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ni-dark);
  margin: 0 0 12px 0;
  font-weight: 400;
  text-align: left;
}
.article-content-link a{
  color: var(--ni-accent);
}
.header-social-article-links img{
  width: 24px;
  height: 24px;
}
/* Back to Events / newsroom */
.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ni-accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.article-back-link:hover {
  opacity: 0.8;
}
.article-back-link img {
  width: 16px;
  height: 16px;
  margin: 0;
}

/* Press kit / gallery hero */
.page-hero .content-box,
.page-hero .ni-grid-1 > .item_box {
  min-width: 0;
  width: 100%;
}
.page-hero .section_title {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.page-hero .inner-page-subtext.text-center {
  margin-left: auto;
  margin-right: auto;
}

/* Article pagination prev/next */
.ni-section.article-pagination {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}
.article-pagination-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.article-pagination-nav.next-only {
  justify-content: flex-end;
}
.article-pagination-nav .ni-btn {
  gap: 8px;
}
.article-pagination-nav .ni-btn img {
  width: 20px;
  height: 20px;
  margin: 0;
}
.pagination-prev-arrow {
  transform: scaleX(-1);
}
/* Article and pressrelease Content Page end */

/* ======================================================================================================================== */

/* Gallery Page */
figure{
  margin: 0;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  border-radius: 12px;
}
.preview {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.preview img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.preview.show {
  display: flex;
}

.close-gallery {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  border-radius: 8px;
  padding: 4px 10px;
  line-height: 1;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.gallery-colom {
  row-gap: 20px;
  grid-template-columns: minmax(0, 1fr);
  display: grid;
}
.gallery-grid {
  column-count: 3;
  column-gap: 20px;
}
.gallery-grid.gallery-grid--profiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-count: unset;
  gap: 20px;
  align-items: start;
}
.gallery-grid.gallery-grid--profiles .gallery-item {
  margin: 0;
  break-inside: auto;
  -webkit-column-break-inside: auto;
  page-break-inside: auto;
}
@media (max-width: 992px) {
  .gallery-grid { column-count: 2; }
  .gallery-grid.gallery-grid--profiles {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid.gallery-grid--profiles .gallery-item--feature {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
}
@media (max-width: 600px) {
  .gallery-grid { column-count: 1; }
  .gallery-grid.gallery-grid--profiles {
    grid-template-columns: 1fr;
  }
  .gallery-grid.gallery-grid--profiles .gallery-item--feature {
    grid-column: auto;
    grid-row: auto;
  }
}
.gallery-grid .gallery-item {
  position: relative;
  display: block;
  margin: 0 0 20px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-grid .gallery-item img,
.gallery-grid .gallery-item video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-grid .gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 50%, rgba(0,0,0,0) 100%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.gallery-grid .gallery-overlay span {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .2px;
}
.gallery-grid .gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-grid .gallery-item.gallery-video:hover video {
  transform: none;
}
.gallery-grid .gallery-item.is-hidden {
  display: none;
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 32px;
}
.gallery-filters .filter-chip {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--ni-border);
  background: #fff;
  color: var(--ni-muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s ease;
}
.gallery-filters .filter-chip:hover {
  border-color: var(--ni-accent);
  color: var(--ni-accent);
}
.gallery-filters .filter-chip.active {
  background: var(--ni-accent);
  border-color: var(--ni-accent);
  color: var(--ds-color-white);
}
.event-media-gallery {
  padding-top: 0 !important;
  padding-bottom: 48px !important;
}
.event-media-gallery .ni-section-head__title {
  margin-bottom: 24px;
  text-align: left;
}
.event-detail-grid:has(.gallery-item:only-child) {
  column-count: 1;
  max-width: 720px;
  margin-left: 0;
  margin-right: auto;
}
.event-detail-grid:not(:has(.gallery-item:only-child)) {
  column-count: unset;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event-detail-grid:not(:has(.gallery-item:only-child)) .gallery-item {
  margin: 0;
  aspect-ratio: 1 / 1;
}
.event-detail-grid:not(:has(.gallery-item:only-child)) .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-detail-grid .gallery-item--focal-left img {
  object-position: left center;
}
@media (max-width: 992px) {
  .event-detail-grid:not(:has(.gallery-item:only-child)) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .event-detail-grid:not(:has(.gallery-item:only-child)) {
    grid-template-columns: 1fr;
  }
}
.event-detail-grid .gallery-video video {
  max-height: 420px;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #0f0f12;
}
@media (max-width: 600px) {
  .event-detail-grid .gallery-video video {
    max-height: min(420px, 70vh);
  }
}
/* gallery page end */

/* ======================================================================================================================== */

.leader-team-photo{
  position: relative;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
}
a.linkedin-icon-link {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  transition: transform 0.25s ease;
}
.leader-team-photo:hover .linkedin-icon-link{
  transform: translateY(-10px);
}
.leadership-team  .linkedin-icon {
  width: 36px !important;
  height: 36px;
  transition: transform 0.25s ease;
}
.item_box.image_box .item_content img{
  width: 100%;
  height: 100%;  
}

/* ======================================================================================================================== */

/* newsroom page, article pages, gallery page , logos page, awards page , pressrelease page common css */
.newsroom-card .image-wrapper:not(.download-link) {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.newsroom-card .image-wrapper:not(.download-link) img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
     border-radius: 8px;
}
.newsroom-card .image-wrapper.partnership-badge {
  background: #56219b;
}
.newsroom-card .image-wrapper.partnership-badge img {
  -o-object-fit: contain;
     object-fit: contain;
}
.newsroom-card .image-wrapper + .newsroom-content {
  margin-top: 20px;
}
.newsroom-card .newsroom-content  a{
  display: flex;
  align-items: center;
  gap: 12px;
}
.oneline{
  display: flex;
  align-items: center;
  gap: 12px;
}
.oneline h1{
  display: flex!important;
  white-space: nowrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0!important;
  font-weight: 400 !important;
}
.questions{
  width: 100%;
}
.newsroom-card .newsroom-content  p{
  overflow:hidden;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  line-clamp:3;
}
.newsroom-card .newsroom-content  H1{
  overflow:hidden;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  line-clamp:2;
}
.newsroom-card .newsroom-content  a img{
  width: 20px;
  height: 20px;
  margin-bottom: 0;
}
.newsroomcontent .tabs .tab-buttons-2 {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  width: max-content;
  justify-content: center;
  background: #fff;
  margin: 0 auto;
  padding: 4px;
  border: 1px solid var(--ni-border);
}
.newsroomcontent .tabs .tab-content-2{
  padding: 0;
}
.newsroomcontent .section_title p, 
.presskitcontent .section_title p, 
.gallery_main_content .section_title p{
  max-width: 100%;
}
.presskit-certifications .section_title .ni-section-head__title {
  margin: 0;
}

/* ======================================================================================================================== */

/* About us page */
span.chip-designation{
  background: var(--ni-accent);
  color: var(--ds-color-white);
  text-align: center;
  margin-top: 12px;
}

/* ======================================================================================================================== */

/* policy page */

.privacypolicy_main_content .item_content {
  margin-top: 30px;
  overflow: scroll;
  padding: 30px;
}
.privacypolicy_main_content .item_content > div {
  width: 100%;
}
.privacypolicy_main_content .item_content div {
  margin-bottom: 20px;
}
section.privacypolicycontent h1 {
  font-family: var(--ni-display);
  font-size: 2rem;
  font-weight: 700 !important;
  margin: 0 0 8px;
  color: var(--ni-text);
  text-align: left;
  width: 100%;
  line-height: 1.25;
}
section.privacypolicycontent h2 {
  font-family: var(--ni-display);
  font-size: 1rem;
  font-weight: 700 !important;
  margin: 0 0 8px;
  color: var(--ni-text);
  text-align: left;
  width: 100%;
  line-height: 1.25;
}
section.privacypolicycontent h3 {
  font-family: var(--ni-display);
  font-size: 0.875rem;
  font-weight: 700 !important;
  margin: 0 0 8px;
  color: var(--ni-text);
  text-align: left;
  width: 100%;
  line-height: 1.25;
}
section.privacypolicycontent .item_content > p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ni-text);
  margin: 0 0 12px 0;
  font-weight: 400;
  text-align: left;
  width: 100%;
}
section.privacypolicycontent p {
  font-family: var(--ni-display);
  font-size: 0.875rem;
  margin: 0 0 8px;
  color: var(--ni-text);
  text-align: left;
  width: 100%;
  line-height: 1.65;
}
section.privacypolicycontent ul {
  padding-left: 30px;
}
section.privacypolicycontent li {
  font-size: 0.875rem;
  color: var(--ni-text);
  margin: 0 0 12px 0;
  font-weight: 400;
  text-align: left;
}
section.privacypolicycontent li p {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ni-text);
}

/* ======================================================================================================================== */

/* cookie Consent popup */
section#cookieConsent {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.26);
  bottom: 0;
  top: 0;
  z-index: 9995;
  overflow: hidden;
}
section#cookieConsent .cookie-policy {
  padding: 30px;
  background-color: var(--ni-surface);
  border: 1px solid rgba(255, 255, 255, 0.1490196078);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  margin: 80px auto 0px auto;
}
section#cookieConsent .Logo_wrapper {
  margin-bottom: 16px;
}
section#cookieConsent h2 {
  margin-bottom: 16px;
  color: var(--ni-text);
}
section#cookieConsent p {
  margin-bottom: 16px;
  color: var(--ni-muted);
}
section#cookieConsent p a {
  color: var(--ni-accent);
}
section#cookieConsent button {
  border: 0;
  padding: 12px 24px;
  color: var(--ds-color-white);
  border-radius: 8px;
  cursor: pointer;
}
section#cookieConsent button.accept {
  background-color: var(--ni-accent);
}
section#cookieConsent button.accept:hover {
  background-color: #4c12a7;
}
section#cookieConsent button.decline {
  background-color: var(--ni-bg);
  color: var(--ni-text);
}
section#cookieConsent button.decline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--ni-text);
}

/* ======================================================================================================================== */

/* Tabs for newsroom and procureaiagents page */
.tabs {
  width: 100%;
  overflow: hidden;
}
.tabs  .tab_wrapper{
    background: #f0eaff;
    overflow: hidden;
    border-radius: 16px;
}
.tabs .tab-content {
  display: none;
  margin-top: 24px;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.0901960784), rgba(255, 255, 255, 0));
  animation: fadeIn 0.3s ease-in-out;
  border-radius: 24px;
}
.tabs .tab-buttons {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  justify-content: center;
  gap: 20px;
}
.tabs .tab-buttons-2 {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  justify-content: center;
}
.tabs .tab-content.active {
  display: block;
}
.tabs .tab-content-2 {
  pointer-events:none;
  position:absolute;
  visibility:hidden;
  opacity:0;
  padding: 20px;
  margin-top: 24px;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.0901960784), rgba(255, 255, 255, 0));
  animation: fadeIn 0.3s ease-in-out;
  border-radius: 24px;
}
.tabs .tab-content-2.active {
  opacity:1;
  visibility:visible;
  position:relative;
  pointer-events:auto;
}
.tabs .tab-buttons .tab-btn {
  padding: 24px 24px;
  width: 100%;
  cursor: pointer;
  border: none;
  background: #F4EDFF;
  transition: 0.3s;
  color: var(--ni-text);
  font-size: 16px;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid #fff;
}
.tabs .tab-buttons .tab-btn.active {
  border: 2px solid var(--ni-accent);
  color: var(--ni-accent);
}
.tabs .tab-content .tab_content_wrapper {
  margin-bottom: 24px;
}
.tabs .tab-buttons .tab-btn h1 {
  font-size: 14px;
  font-weight: 500;
  font-family: "inter", sans-serif;
}
.tab_wrapper.agents-image-tab .tab_image {
  margin-top: 30px;
}
.tab_wrapper.agents-image-tab .item_content {
  height: auto;
}
.procureai_main_content .tabs .tab_wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.tabs .tab-content .procureai_main_content .item_wrapper .item_box {
  align-content: center;
}
.tabs .tab-content .procureai_main_content .item_wrapper .item_box .tab_wrapper {
  padding: 30px 30px 0px 30px;
  background: url('../Assets/procureaipatter.webp');
}
.newsroomcontent .tabs .tab-buttons-2 .tab-btn-2 {
  padding: 20px 12px;
  cursor: pointer;
  border: none;
  background: none;
  transition: 0.3s;
  color: var(--ni-muted);
  font-size: 16px;
  overflow: hidden;
  border-radius: 5px;
  font-size: 18px;
  width: 200px;
}
.newsroomcontent .tabs .tab-buttons-2 .tab-btn-2.active {
  color: var(--ds-color-white);
  background: var(--ni-accent);
}
.card-chip {
  display: inline-block;
  margin-bottom: 12px;
}
.newsroom-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}
.newsroom-pagination .page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid var(--ni-border);
  background: #fff;
  color: var(--ni-muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s ease;
}
.newsroom-pagination .page-btn:hover:not(:disabled) {
  border-color: var(--ni-accent);
  color: var(--ni-accent);
}
.newsroom-pagination .page-btn.active {
  background: var(--ni-accent);
  border-color: var(--ni-accent);
  color: var(--ds-color-white);
}
.newsroom-pagination .page-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}
.newsroom-pagination .page-btn.page-nav {
  font-size: 18px;
  line-height: 1;
}
/* ======================================================================================================================== */

/* Logos Page */
.image-wrapper.download-link {
  aspect-ratio: auto;
  height: 220px;
  background-color: #fff;
  background-image: linear-gradient(45deg, #e5e5e5 25%, transparent 25%), 
                    linear-gradient(-45deg, #e5e5e5 25%, transparent 25%), 
                    linear-gradient(45deg, transparent 75%, #e5e5e5 75%), 
                    linear-gradient(-45deg, transparent 75%, #e5e5e5 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}
.image-wrapper.download-link img {
  object-fit: contain !important;
}

/* ======================================================================================================================== */

/*# Yamini */
.mobile_nav.active .arrow-icon {
  display: block !important;
  position: absolute;
  top: 12px;
  right: 0;
  padding: 0;
}
.mobile_nav.active .nav_item.nav_item_1 {
  position: relative;
}

/* ======================================================================================================================== */

/* Career Page */
.careers-application-form {
  display: flex;
  flex-direction: column;
}
.careers-application-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.careers-application-form .input_field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.careers-application-form .input_field label {
  color: var(--ni-text);
    font-weight: 500;
    font-size: 14px;
}
.careers-application-form .input_field label sup {
  color: var(--ds-danger);
  font-size: 0.8rem;
}
.careers-application-form .input_field input,
.careers-application-form .input_field select,
.careers-application-form .input_field textarea {
  background: rgb(255 255 255);
    border: 1px solid rgb(0 0 0 / 9%);
    border-radius: 7px;
    padding: 9px 12px;
    color: var(--ni-text);
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: "Inter";
}
.careers-application-form .input_field input:focus,
.careers-application-form .input_field select:focus,
.careers-application-form .input_field textarea:focus {
  outline: none;
  border-color: #667eea;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}
.careers-application-form .input_field input.error,
.careers-application-form .input_field select.error,
.careers-application-form .input_field textarea.error {
  border-color: var(--ds-danger);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}
.careers-application-form .input_field input::-moz-placeholder, .careers-application-form .input_field textarea::-moz-placeholder {
  color: var(--ds-gray-mid);
}
.careers-application-form .input_field input::placeholder,
.careers-application-form .input_field textarea::placeholder {
  color: var(--ds-gray-mid);
}
.careers-application-form .input_field select {
  cursor: pointer;
}
.careers-application-form .input_field select option {
  background: #1a1a1a;
  color: white;
}
.careers-application-form .file-info {
  font-size: 0.85rem;
  color: var(--ds-gray-mid);
  margin-top: 5px;
}
.careers-application-form .error-message {
  color: var(--ds-danger);
  font-size: 12px;
  margin-top: 6px;
  display: none;
  box-sizing: border-box;
}
.careers-application-form .error-message:not(.hidden) {
  display: block;
}
.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  position: relative;
}
.careers-application-form .submit-btn {
  background-image: linear-gradient(186deg, #1a0247, rgba(161, 89, 255, 0.9882352941));
  color: white;
  border: none;
  padding: 18px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-family: "Inter";
}
.careers-application-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}
.careers-application-form .submit-btn:active {
  transform: translateY(0);
}
.loading-spinner {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 1rem;
}
.loading-spinner.hidden {
  display: none;
}
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin2 1s linear infinite;
}
@keyframes spin2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.form-messages {
  margin-top: 30px;
  text-align: center;
}
.success-message,
.error-message {
  border-radius: 8px;
  margin: 0 auto;
  width: 100%;
}
.success-message {
  color: #4caf50;
}
.error-message {
  color: #f44336;
}
.success-message h3,
.error-message h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
}
.success-message p,
.error-message p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}
.hidden {
  display: none !important;
}

/* ======================================================================================================================== */

/* Case Study Page */
.casestudypage .case-study-content .case-study-card-wrapper {
  justify-content: center;
}
.casestudydetailedpage  .casestudy_main_content .item_wrapper.layout-3 .item_box {
  flex: 1 1 calc(70% - 20px);
}
.casestudydetailedpage  .casestudy_main_content .item_wrapper.layout-3 .item_box.image_box {
  flex: 1 1 calc(30% - 20px);
}
.casestudydetailedpage  .casestudy_main_content .item_wrapper {
  gap: 20px;
}
.quick-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Case study detailed page */
.casestudydetailedpage  .casestudy_main_content.casestudy .item_wrapper .item_box .item_content {
  border: 0;
  background: transparent;
  justify-content: left;
  box-shadow: none;
  border-radius: 0;
}
.casestudydetailedpage  .casestudy_main_content.casestudy .item_wrapper .item_box .item_content.top-line {
  border-top: 1px solid #b577fa;
  background: linear-gradient(180deg, rgba(181, 119, 250, 0.1607843137), transparent);
}

/* Hero */
.ni-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--ni-dim);
}
.ni-hero__meta li {
  position: relative;
  padding-left: 16px;
}
.ni-hero__meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ni-accent);
  opacity: 0.7;
}

/* ======================================================================================================================== */

/* Enterprise logos */
.ni-trust__track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, var(--ds-color-black) 8%, var(--ds-color-black) 92%, transparent);
}
.ni-trust__row {
  display: flex;
  gap: 48px;
  align-items: center;
  width: max-content;
  flex-shrink: 0;
  will-change: transform;
  animation: ni-trust-marquee var(--marquee-duration, 40s) linear infinite;
}
.ni-trust__row img {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(0.2);
}
.ni-section-head {
  text-align: center;
  margin: 0 auto 48px;
}
@keyframes ni-trust-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--marquee-distance, 50%)), 0, 0); }
}

/* ======================================================================================================================== */

/* Home Page : Agents Teams Section */
.ni-agents__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ni-card {
  background: var(--ni-surface);
  border: 1px solid var(--ni-border);
  border-radius: var(--ni-radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.ni-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}
.ni-card__banner {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.ni-agents .ni-card .ni-card__banner img {
  /* width: 100%; */
}
.ni-card__title {
  color: var(--ni-text-1);
  font-family: var(--ni-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ni-text);
  margin: 0 0 6px;
  line-height: 1.25;
}
.ni-agents .ni-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ni-accent) !important;
  text-decoration: none;
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 10px;
  display: flex;
  gap: 12px;
  margin-bottom: 4px;
}
.ni-card__tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E8D8FF;
  margin: 0 0 14px;
  position: absolute;
  background: #320465;
  padding: 12px;
  border-radius: 12px;
  border-bottom-left-radius: 0;
  top: 0;
  left: 0;
  line-height: 1.2;
}
.ni-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ni-muted);
  margin: 0 0 20px;
  flex: 1;
}
.ni-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ni-agents .ni-list li {
  position: relative;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ni-accent);
  background-color: rgba(128, 38, 255, 0.04);;
  padding: 7px 12px;
  border-radius: 6px;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ni-agents a.ni-card__link img {
  width: 20px;
}
.ni-agents .ni-list li.title{
  padding: 0;
  color: var(--ni-muted);
  background: transparent;
}
.ni-runtime .ni-list li:last-child{
  margin-bottom: 0;
}

/* ======================================================================================================================== */

/* Builder */
.ni-builder {
  position: relative;
    z-index: 1;
}
.ni-builder {
  background-image: url('../Assets/patterncustombuilder2.webp');
  position: relative;
  z-index: 1;
}
.ni-builder__panel {
  overflow: hidden;
  background-image: url('	../Assets/patterncustombuilder.webp');
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}
.ni-builder__panel {
  display: grid;
  grid-template-columns: 0.8fr 0.5fr 1fr;
  align-items: center;
  border-radius: 24px;
  box-shadow: -8px 0px 16px rgb(181 166 199);
}
.ni-builder__title {
  font-family: var(--ni-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 16px;
  color: #E8D8FF;
  line-height: 1.25;
}
.ni-builder__panel .ni-builder__text{
  padding: 60px 20px 60px 60px;
}
a.copy-page-link {
  position: relative;
}
span.copy-text {
  background: #1b102c;
  color: #fff;
  padding: 5px 10px;
  border-radius: 25px;
  font-size: 12px;
  position: absolute;
  white-space: nowrap;
  left: 32px;
}
.ni-builder__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ni-builder__chips li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E8D8FF;
  font-size: 15px;
}
.ni-builder__panel .ni-builder__chips {
  padding: 60px 20px 60px 20px;
}
.ni-builder__lead {
  font-size: 1rem;
  line-height: 1.65;
  color: #d4d4d8;
  margin: 0 0 24px;
  max-width: 36rem;
}
.ni-builder__lead {
  color: #E8D8FF;
}
.ni-builder__lead strong {
  color: var(--ds-color-white);
}
.ni-builder__panel::after {
  content: "";
  background: #320465;
  height: 100%;
  width: 1280px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.agent-image {
  position: relative;
  height: 100%;
}
.agent-image img {
  position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
}

/* ======================================================================================================================== */

/* Platform */
.ni-platform#platform {
  background-image: url(../Assets/dsiloplatformpattern.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  position: relative;
  overflow: hidden;
}
#platform .ni-platform-head-break {
  display: none;
}
@media (min-width: 1025px) {
  #platform .ni-platform-head-break {
    display: inline;
  }
  #platform .ni-platform-head-break br {
    display: block;
  }
}
.ni-platform#platform::after {
  content: "";
  background: linear-gradient(0deg, #f5efff, transparent);
  display: block;
  height: 100%;
  width: 5000px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
section#platform .ni-platform__layout .ni-platform__art::after {
  content: "";
  display: block;
  position: absolute;
  height: 200px;
  width: 200px;
  right: 0;
  bottom: -78px;
  z-index: 0;
  filter: blur(54px);
  background: linear-gradient(45deg, #f75cff 23%, #4738ff);
}
.ni-platform__copy em {
  color: #e4e4e7;
  font-style: normal;
  font-weight: 600;
}
.ni-platform__art {
  text-align: center;
  position: relative;
  height: 100%;
}
.ni-tech__bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ni-tech__cell {
  padding: 24px 20px;
  background: var(--ni-surface);
  border: 1px solid var(--ni-border);
  border-radius: 16px;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.ni-tech__cell img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}
.ni-studio-grid__item {
  margin: 0;
  padding: 24px 20px;
  background: var(--ni-surface);
  border: 1px solid var(--ni-border);
  border-radius: 16px;
  text-align: center;
}
.ni-studio-grid__item img {
  margin: 0 0 12px;
}
.ni-platform__copy-col .ni-eyebrow {
  margin-bottom: 12px;
}
.ni-plat-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.ni-plat-stack__group {
  padding: 30px;
  background: var(--ni-surface);
  border: 1px solid var(--ni-border);
  border-radius: 16px;
  display: flex;
  gap: 20px;
}
.ni-plat-stack-row-2{
    background: #f4effe;
    border-radius: 16px;
}
.ni-plat-stack__group-head {
  display: flex;
  gap: clamp(16px, 3vw, 24px);
  align-items: flex-start;
  margin-bottom: 20px;
}
.ni-plat-features {
  display: grid;
  gap: 20px;
}
.ni-plat-feature__icon{
  margin-bottom: 1rem;
}
.ni-plat-feature {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 12px;
  background: var(--ni-surface-2);
}
.ni-studio-grid__item {
  padding: 18px 16px;
}
.ni-plat-feature {
  padding: 20px 18px;
}
.ni-platform__shell.enterprise-marquee::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 20px;
  background: linear-gradient(90deg, #fefdff, transparent);
  left: 0;
  bottom: 0;
}
.ni-platform__shell.enterprise-marquee::before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 20px;
  background: linear-gradient(270deg, #fefdff, transparent);
  right: 0;
  bottom: 0;
  z-index: 1;
}
.ni-studio-grid__item_2{
  background: linear-gradient(180deg, #f8e2ff, transparent);
  border-top: 2px solid #7735e7;
  padding-top: 30px;
  padding: 30px;
}
.ni-studio-grid__item_3{
  display: grid;
  grid-template: 1fr 1fr 1fr;
  grid-template-columns: 0.1fr 1fr 3fr;
  gap: 20px;
  padding: 16px 0 26px 16px;
  border-bottom: 1px solid #eee;
  align-items: center;
}
.ni-studio-grid__item_3 img{
    width: 50px;
}
.ni-studio-grid__item_2 img{
 margin-bottom: 12px;
 width: 32px;
}
p.credits {
  font-size: 12px;
  color: var(--ni-muted);
  text-align: center;
  margin-top: 24px;
  width: 80%;
  margin: 23px auto 0 auto;
  max-width: 600px;
}
.enterprise-marquee{
  width:100%;
  overflow:hidden;
  padding:20px 0;
}
.enterprise-track{
  display:flex;
  gap:20px;
  width:max-content;
  animation:scroll 22s linear infinite;
}
section.ni-section.trust {
  background-color: #f1eaf7;
  margin: 90px 0 0;
  padding-bottom: 90px;
}
/* ======================================================================================================================== */

/* Partner */
.ni-partner__logo {
  height: 48px;
  width: auto;
  opacity: 0.9;
}
.ni-partner{
  background-image: url('./Assets/light/assets/partnerwaves.svg');
}
.ni-partner .partner-logo{
  display:flex;
  justify-content: center;
  align-items: center;
}
.ni-partner__inner{
  position: relative;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ni-partner__inner{
  background: var(--ni-accent);
  padding: 30px 48px;
  border-radius: 16px;
}
.ni-partner .waves-shape{
  position:absolute;
  bottom:0;
  width:100%
}
.ni-partner .ni-eyebrow{
  text-align: left;
  color:var(--ni-text-3)
}
.ni-partner h2.ni-section-head__title{
  text-align: left;
  color:var(--ni-text-3);
  margin:0;
}

/* ======================================================================================================================== */
/* Responsive max1024px */

@media (max-width: 1024px) {
  .ni-hero__inner {
    grid-template-columns: 1fr;
  }
  body.agentstudiopage .ni-grid-2 .banner-image-container{
    grid-row: 2;
  }
.ni-hero__media {
    order: -1;
  }
.ni-agents__grid,
  .ni-proof__grid,
  .ni-events__grid,
  .ni-runtime__cols,
  .ni-tech__bento {
    grid-template-columns: 1fr;
  }
.ni-tech__bento {
    grid-template-columns: 1fr 1fr;
  }
.ni-agents__grid {
    grid-template-columns: 1fr 1fr;
  }
.ni-builder__panel {
    grid-template-columns: 1fr;
  }
  body.agentstudiopage .ni-grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  body.agentstudiopage img.banner_img {
    width: 100%;
    margin-top: 30px;
  }
  .footer_wrapper {
    padding: 40px 20px 0 20px;
  }
  section.ni-section.trust{
    padding: 20px;
  }
}

/* ======================================================================================================================== */
/* Responsive max768px */

@media (max-width: 768px) {
  .ni-hero {
    padding-top: 24px;
    min-height: auto;
  }
  body.agentstudiopage .ni-section {
    border: 0 !important;
    padding: 30px 0;
  }
}

/* ======================================================================================================================== */

/* Enterprise logos */
.ni-trust__marquee {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.ni-trust__track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, var(--ds-color-black) 6%, var(--ds-color-black) 94%, transparent);
}
.ni-trust__track:hover .ni-trust__row {
  animation-play-state: paused;
}
.ni-trust__row {
  display: flex;
  align-items: center;
  width: max-content;
  flex-shrink: 0;
  will-change: transform;
  animation: ni-trust-marquee var(--marquee-duration, 40s) linear infinite;
  gap: clamp(36px, 5vw, 72px);
}
/* Keep logos visible even before measure; only start seamless loop when ready */
.ni-trust__row:not(.ni-trust__row--ready) {
  animation: none;
  transform: none;
}
.ni-trust__row--ready {
  animation: ni-trust-marquee var(--marquee-duration, 40s) linear infinite;
}
.ni-trust__row img {
  height: clamp(40px, 21vw, 84px);
  max-width: min(100%, 44vw);
  width: auto;
  object-fit: contain;
  filter: brightness(0);
}
.ni-trust__row img:hover {
  opacity: 0.85;
}
.ni-trust__track.reverse .ni-trust__row {
  animation-direction: reverse;
}
.ni-trust .ni-section-head__title{
  font-size: 18px !important;
  font-weight: 400;
  color: var(--ni-text);
  margin-bottom: 0;
  font-family: 'Inter';
}
.ni-trust .ni-section-head{
  margin-bottom: 0px;
}

/* ======================================================================================================================== */

@media (max-width: 1440px) {
  .container_fluid {
    max-width: 1300px;
    padding: 0;
  }
  header.sticky_header .header_wrapper {
    padding: 15px 20px;
  }
  .container {
    max-width: 1180px;
    box-sizing: border-box;
  }
}

/* ======================================================================================================================== */

@media (max-width: 1280px) {
  .page-hero::before{
    display: none;
  }
  body.ni-page.ni-page--light .ni-hero::before{
    display: none;
  }
  .privacypolicycontent {
    padding: 0 24px;
  }
  .casestudypage .case-study-content .case-study-card-wrapper .case-study-card {
    height: auto;
  }
  .casestudypage .case-study-content .case-study-card-wrapper .case-study-card .card-header {
    margin-bottom: 30px;
  }
}

/* ======================================================================================================================== */

@media (max-width: 1260px) {
  body.ni-page.ni-page--light .ni-hero{
    padding: 30px 0 0;
  }
  main{
    padding: 0 20px;
  }
  .page-hero{
    padding: 30px 0 0 0;
    background: transparent;
  }
  .page-hero-wrapper{
    gap: 12px;
  }
  .ni-builder{
    background-image: none;
  }
}

/* ======================================================================================================================== */

@media (max-width: 1024px) {
  .ni-section {
    padding: 60px 0 0px;
  }
  .ni-builder__panel .ni-builder__text {
    padding: 60px 20px 0px 60px;
  }
  .ni-builder__panel .ni-builder__chips {
    padding: 40px 20px 30px 60px;
  }
  .agent-image {
    position: relative;
    height: 100%;
    padding: 0px 0px 0px 60px;
  }
  .ni-platform__layout{
    grid-template-columns: 1fr;
  }
  .casestudy .item_wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .ni-hero__copy {
    grid-row: 1;
  }
  .ni-hero__lead{
    max-width: 100%;
  }
  .casestudy .item_wrapper .item_box {
    width: 100%;
  }
  .casestudypage .casestudycontent .casestudy_main_content.techstack .item_wrapper .item_box {
    flex: 1 1 calc(100% - 20px);
  }
  .casestudy .case-study-content .case-study-card-wrapper .case-study-card {
    width: clamp(150px, 100%, 1200px);
    height: auto;
  }
  .casestudy .case-study-content .case-study-card-wrapper .case-study-card .card-header {
    margin-bottom: 30px;
  }
  .inner_m2 {
    margin-bottom: 24px;
  }
  .platform_main_content {
    width: 100%;
  }
  .container {
    max-width: 100%;
    width: 100%;
  }
  .tabs .tab-content .procureai_main_content .item_wrapper .item_box .item_content img{
    max-width: 100%;
  }
  .mobile_menu {
    display: block;
  }
  header .header_wrapper .mobile_nav, header .header_wrapper nav {
    display: none;
  }
  header .header_wrapper .mobile_nav.active, header .header_wrapper nav.active {
    display: block;
  }
  header .header_wrapper .mobile_nav {
    position: absolute;
    top: 0;
    background: var(--ds-color-white);
    width: 100%;
    left: 0;
    height: 100vh;
    height: 100dvh;
    z-index: 999;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    overflow-y: scroll;
  }
  .header_wrapper{
    padding: 15px 20px;
  }
  @supports not (backdrop-filter: blur(1px)) {
    header .header_wrapper .mobile_nav {
      background: rgba(255, 255, 255, 0.98);
    }
  }
  header .header_wrapper .mobile_nav .nav {
    flex-direction: column;
  }
  header .header_wrapper .mobile_nav .nav li {
    flex-direction: column;
    margin-right: 0;
    align-items: baseline;
  }
  body.ni-page.ni-page--light .nav .nav_item:hover, body.ni-page.ni-page--light .nav > a:hover{
    background: none;
  }
  header .header_wrapper .mobile_nav .nav li:hover {
    background: none;
  }
  header .header_wrapper .mobile_nav .nav li .dropdown {
    display: flex;
    position: relative;
    opacity: 100%;
    width: 100%;
    min-width: 200px;
    transform: none;
    box-sizing: border-box;
    max-width: stretch;
    box-shadow: none;
    border-bottom: 1px solid var(--ni-border-1);
  }
  li.nav_item.logo a img {
    display: block !important;
    padding: 0;
  } 
  li.nav_item.nav_item_1.req_demo_container {
    padding: 20px 20px 0;
  }
  header .header_wrapper .mobile_nav .nav > li.nav_item > label {
    font-weight: 600;
  }
  header .header_wrapper .mobile_nav .nav > li.nav_item > a {
    font-weight: 600;
  }
  header .header_wrapper .mobile_nav .nav li .dropdown.display {
    display: flex;
  }
  header .header_wrapper .mobile_nav .nav li a, header .header_wrapper .mobile_nav .nav li label {
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 0;
    font-weight: 400;
  }
  header .header_wrapper .mobile_nav .nav li.nav_item a{
    padding: 12px 20px;
  }
  header .header_wrapper .mobile_nav .nav li.nav_item.logo a {
    padding: 23px 20px;
  }
  header .header_wrapper .mobile_nav .nav li h5 {
    position: relative;
  }
  header .header_wrapper .mobile_nav .nav li h5::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #6600ff;
    bottom: 4px;
  }
  header .header_wrapper .mobile_nav .nav button#closeBtn, header .header_wrapper .mobile_nav .nav button#closeBtn1 {
    position: absolute;
    right: 24px;
    top: 24px;
    background: transparent;
    border: 0;
  }
  header .header_wrapper .mobile_nav#nav1 {
    background: var(--ds-color-white);
  }
  .inner_m {
    margin-bottom: 30px;
  }
  .partner h1 label {
    display: block;
  }
  .ni-section-head__title{
    font-size: clamp(1.75rem, 3vw, 2.5rem);
  }
  .agent-image{
    text-align: right;
  }
  .agent-image img{
    position: relative;
    width: 100%;
  }
  section.ni-platform.ni-section.connectivity {
    padding: 60px 0;
  }
  .ni-grid-2and3{
    grid-template-columns: 1fr;
  }
}

/* ======================================================================================================================== */

@media (max-width: 980px) {
  body.ni-page.ni-page--light.ls-platform .ni-plat-stack__group{
    flex-direction: column;
  }
  .ni-plat-stack-row-2 {
    text-align: center;
  }
  body.ni-page.ni-page--light.ls-platform .ni-plat-stack__group:nth-child(2) {
    flex-direction: column-reverse;
  }
  .ni-grid-4{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================================================================================================================== */

@media (max-width: 768px) {
  img.banner_img {
    width: 100%;
  }
  .ni-platform#platform .ni-grid-2 {
    grid-template: none;
  }
  .carousel-track{
    grid-auto-columns: calc((100% - 40px) / 2);
  }
  .ni-events .carousel-track {
    grid-auto-columns: calc((100cqw - 40px) / 2);
  }
  .ni-events .carousel-slide {
    width: calc((100cqw - 40px) / 2);
    min-width: calc((100cqw - 40px) / 2);
    max-width: calc((100cqw - 40px) / 2);
  }
  .ni-plat-capabilities .ni-plat-stack__group div img.banner_img {
    width: 100%;
  }
  .tabs .tab-content{
    padding: 0;
  }
  .ni-platform__layout{
    grid-template-columns: 1fr;
  }
  .ni-platform__layout .ni-platform__art img{
    width: 100%;
    position: relative;
    object-fit: scale-down;
  }
  .casestudydetailedpage .casestudycontent .casestudy_main_content .section_title h1 {
    font-size: 40px;
  }
  .casestudydetailedpage .casestudycontent .casestudy_main_content.intelligent .item_wrapper {
    gap: 20px;
    margin-bottom: 30px;
  }
  .casestudydetailedpage .casestudycontent .casestudy_main_content.intelligent .item_wrapper .item_box .item_content {
    padding: 0px;
  }
  .procureaipage .procureai_main_content .tab-buttons {
    flex-wrap: wrap;
  }
  .fourgrid .item_wrapper .item_box {
    flex: 1 1 calc(50% - 20px);
  }
  .page-hero-wrapper,
  .page-hero-wrapper-2 {
    flex-direction: column;
    align-items: stretch;
  }
  .page-hero .content-box {
    flex: 1 1 100%;
    min-width: 0;
  }
  .page-hero .section_title .inner-page-title.text-center,
  .page-hero .section_title .inner-page-subtext.text-center {
    text-align: left !important;
  }
  .page-hero .section_title .inner-page-subtext {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .inner_m {
    margin-bottom: 30px;
  }
  .casestudydetailedpage .casestudycontent .casestudy_main_content.intelligent .item_wrapper {
    padding: 0 30px;
  }
}

/* ======================================================================================================================== */

@media (max-width: 600px) {
  .newsroomcontent .tabs .tab-buttons-2{
    margin: 0;
    width: 100%;
  }
  .newsroomcontent .tabs .tab-buttons-2 .tab-btn-2{
    width: 100%;
  }
  .article-pagination-nav{
    flex-wrap: wrap;
  }
  .article-pagination-nav .ni-btn {
    width: 100%;
    display: flex;
}
  body.ni-page.ni-page--light .agent-image {
    padding: 0px 0px 0px 30px;
  }
  body.ni-page.ni-page--light .ni-builder__panel .ni-builder__chips {
    padding: 40px 20px 30px 30px;
  }
  body.ni-page.ni-page--light .ni-builder__panel .ni-builder__text {
    padding: 30px 20px 0px 30px;
  }
  .ni-grid-2{
    grid-template-columns: 1fr;
  }
  .case-study-inner-content ul li{
    white-space: normal;
  }
  body.ni-page.ni-page--light .ni-section-head__title{
    font-size: 1.25rem!important;
  }
  .ni-grid-3,
  .ni-grid-4, 
  .ls-platform .ni-studio-grid__item_3{
    grid-template-columns: 1fr;
  }
  .ni-tech__bento {
    grid-template-columns: 1fr;
  }
  .carousel-track{
    grid-auto-columns: calc(100% - 0px);
  }
  .ni-events .carousel-track {
    grid-auto-columns: 100cqw;
  }
  .ni-events .carousel-slide {
    width: 100cqw;
    min-width: 100cqw;
    max-width: 100cqw;
  }
  .procureai_main_content .tabs .tab_wrapper {
    grid-template-columns: 1fr;
  }
  .ni-section {
    padding: 30px 0 30px;
  }
  .ni-section-head {
    margin: 0 auto 30px;
  }
  .ni-card{
    padding: 20px;
  }
  .agent-image img{
    bottom: 0;
  }
  .home .ni-platform {
    padding: 40px 20px 20px 20px;
  }
  .ni-platform__layout .ni-platform__art img {
    position: relative;
    bottom: 0;
    min-height: auto;
  }
  .ls-platform .ni-platform__media--studio img{
    height:100%;
  }
  .inner_m2 {
    margin-bottom: 20px;
  }
  .tabs .tab-buttons {
    flex-direction: column;
  }
  .casestudypage .case-study-content .case-study-card-wrapper .case-study-card .card-header {
    margin-bottom: 0;
  }
  .casestudy .case-study-content .case-study-card-wrapper .case-study-card .card-header {
    margin-bottom: 0;
  }
  .ni-section-head__title__left{
    font-size: clamp(1.5rem, 5.5vw, 2.25rem);
  }
  .careers-application-form .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ni-agents__grid{
    grid-template-columns: 1fr;
  }
  .ni-partner__inner{
    grid-template-columns: 1fr;
  }
  .ni-partner .partner-logo{
    justify-content: left;
  }
  section.ni-plat-capabilities.ni-section .ni-plat-stack .ni-plat-stack-row-2 img {
    width: 100%;
  }
  section#cookieConsent .cookie-policy {
    height: auto;
    padding: 100px 24px 24px;
    max-width: 80%;
  }
  button.req_demo {
    width: 100%;
  }
  .item_wrapper .item_box{
    flex: 1 1 calc(100% - 0px);
  }
  header .header_wrapper .mobile_nav .nav li .dropdown {
    flex-direction: column;
  }
  header .header_wrapper .mobile_nav .nav li .dropdown.company {
    padding: 16px;
  }
  .home .section_title {
    padding: 0 24px;
  }
  section#platform .ni-platform__layout .ni-platform__art::after{
    display: none;
  }
  .item_wrapper{
    flex-direction: column;
    padding: 0;
  }
.request-demo-modal .request-demo-form {
    height: 100%;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
  }}
/*# sourceMappingURL=style.css.map */
