

    :root {
    --background: #ffffff;
    --foreground: #1b212d;
    --card: #ffffff;
    --card-foreground: #1b212d;
    --primary: #0dc8f2;
    --primary-foreground: #ffffff;
    --muted: #f3f5f7;
    --muted-foreground: #737b8c;
    --border: #e3e8ed;
    --new-grad: linear-gradient(90deg, #37D7FA 0%, #4B72FE 33%, #FF8DF2 66%, #FF8705 100%);
    --shadow-card: 0 4px 24px rgba(27,33,45,0.06);
    --shadow-card-hover: 0 8px 32px rgba(13,200,242,0.12);
    --shadow-button: 0 4px 14px rgba(13,200,242,0.35);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; font-family: "Plus Jakarta Sans", system-ui, sans-serif !important; }
  body { font-family: "Plus Jakarta Sans", system-ui, sans-serif !important; background: #ffffff; color: #1b212d; }
  p { font-size: 19px; }
  h1,h2,h3,h4,h5,h6,p,span,li,a,button,input,select,textarea,div{font-family:"Plus Jakarta Sans",system-ui,sans-serif !important}
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .text-gradient {
  background: linear-gradient(90deg, rgb(55, 215, 250) 0%, rgb(75, 114, 254) 50%, rgb(255, 141, 242) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  }
  .bg-new-grad { background: linear-gradient(90deg, #37D7FA 0%, #4B72FE 33%, #FF8DF2 66%, #FF8705 100%); }
  .shadow-card { box-shadow: 0 4px 24px rgba(27,33,45,0.06); }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 32px; border-radius: 8px; font-weight: 700; font-size: 16px;
    background: linear-gradient(90deg, rgb(0, 211, 243) 0%, rgb(43, 127, 255) 50%, rgb(152, 16, 250) 100%) !important;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(13,200,242,0.35); border: none; cursor: pointer;
    position: relative; overflow: hidden; text-decoration: none;
  }
  .btn-primary::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent 0%, hsla(0,0%,100%,0) 30%, hsla(0,0%,100%,0.35) 50%, hsla(0,0%,100%,0) 70%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
  }
  @keyframes shimmer { 0%{left:-100%} 50%{left:120%} 100%{left:120%} }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 32px; border-radius: 8px; font-weight: 700; font-size: 16px;
    background: transparent; color: #1b212d; border: 1px solid #e3e8ed;
    cursor: pointer; text-decoration: none;
  }
  .icon-box { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; background: rgba(13,200,242,0.1); }
  .icon-box-lg { width: 48px; height: 48px; border-radius: 12px; }
  .card { border-radius: 16px; border: 1px solid #e3e8ed; background: #ffffff; padding: 24px; box-shadow: 0 4px 24px rgba(27,33,45,0.06); }
  .section-title { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
  .section-sub { color: #737b8c; max-width: 672px; margin: 0 auto 56px; font-size: 18px; line-height: 1.7; }
  .badge-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-bottom: 40px; }
  .badge-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
  .badge-icon { width: 16px; height: 16px; color: #0dc8f2; }
  .grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px; }
  .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .grid-4 { display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px; }
  .bg-muted { background: #f3f5f7; }
  .check-icon { width: 16px; height: 16px; color: #0dc8f2; flex-shrink: 0; margin-top: 2px; }
  .flex-alt { display: flex; gap: 48px; flex-direction: column; }
  .flex-alt-rev { display: flex; gap: 48px; flex-direction: column; }
  .feature-card { min-height: auto !important; }
  .feature { text-align: start; }
  @media (min-width: 640px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid { grid-template-columns: repeat(4, 1fr); }
    .flex-alt { flex-direction: column; }
    .flex-alt-rev { flex-direction: column; }
    .flex-alt .feature { width: 100%; }
    .flex-alt-rev .feature { width: 100%; }
    .flex-alt .feature-card { width: 100%; display: block; }
    .flex-alt-rev .feature-card { width: 100%; display: block; }
  }
  @media (min-width: 1024px) {
    .grid { grid-template-columns: repeat(4, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .flex-alt { flex-direction: row; align-items: center; margin-bottom: 0; }
    .flex-alt-rev { flex-direction: row-reverse; align-items: center; margin-bottom: 0; }
  }
  @media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .section-title { font-size: 24px; }
    .hero-title { font-size: 40px !important; }
    .flex-alt { flex-direction: column !important; }
    .flex-alt > div { width: 100%; }
  }

.btn-demo-start {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 56px !important;
    padding: 0px 40px !important;
    border-radius: 9999px !important;
    background: linear-gradient(90deg, rgb(0, 211, 243) 0%, rgb(43, 127, 255) 50%, rgb(152, 16, 250) 100%) !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    cursor: pointer;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
    transition: opacity 0.2s;
    overflow: hidden;
    margin-right: 28px;
}
.btn-demo-start:hover {
    opacity: 0.9;
}
.btn-demo-start::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, hsla(0,0%,100%,0) 30%, hsla(0,0%,100%,0.35) 50%, hsla(0,0%,100%,0) 70%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}
.btn-demo-start::after {
    content: "";
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 6L15 12L9 18' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.btn-demo-start:hover::after {
    transform: translateX(4px);
}
    /*naivagtion css for matching new theme ends*/

.hero-talk-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #1e2a3a;
    color: #1e2a3a;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hero-talk-btn:hover {
    background: #f3f5f7;
    color: #1e2a3a;
    border-color: #c0c8d0;
}

/* Utility */
.text-center { text-align: center; }
.flex-1 { flex: 1; }
.pos-rel { position: relative; }
.fw-500 { font-weight: 500; }
.mb-icon { margin-bottom: 16px; }
.mb-icon-lg { margin-bottom: 20px; }
.mb-section { margin-bottom: 56px; }
.container-sm { max-width: 896px; }

/* Sections */
.section-lg { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-stats { padding: 64px 0; border-top: 1px solid #e3e8ed; border-bottom: 1px solid #e3e8ed; background-color: aliceblue; }
.section-muted { padding: 96px 0; background: #f3f5f7; }

/* Hero */
.hero-section { padding: 128px 0 96px; text-align: center; position: relative; overflow: hidden; }
.hero-orb { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 900px; height: 500px; border-radius: 9999px; background: rgba(13,200,242,0.05); filter: blur(48px); pointer-events: none; }
.hero-eyebrow { font-size: 17px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 24px; }
.hero-desc { font-size: 18px; color: #737b8c; max-width: 672px; margin: 0 auto 40px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* Stats */
.stat-value { font-size: 36px; font-weight: 800; }
.stat-label { font-size: 14px; color: #737b8c; font-weight: 500; }

/* Cards */
.card-title { font-weight: 700; margin-bottom: 6px; }
.card-text { font-size: 14px; color: #737b8c; line-height: 1.7; }

/* Features */
.features-stack { display: flex; flex-direction: column; gap: 80px; }
.feature-title { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.feature-text { color: #737b8c; margin-bottom: 20px; line-height: 1.7; padding:0px!important;}
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #737b8c; }
.feature-img-card { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; border: none; box-shadow: none; padding: 0; }
.feature-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,200,242,0.05), transparent); }
.feature-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Steps */
.step-num { font-size: 24px; font-weight: 800; color: rgb(13 200 242 / 55%); user-select: none; }

/* Comparison Table */
.table-card { padding: 0 !important; overflow: hidden; }
.table-header { display: grid; grid-template-columns: 1fr 1fr 1fr; font-size: 18px; font-weight: 700; background: #f3f5f7; padding: 16px 24px; border-bottom: 1px solid #e3e8ed; }
.table-row { display: grid; grid-template-columns: 1fr 1fr 1fr; font-size: 14px; padding: 14px 24px; border-bottom: 1px solid #e3e8ed; }
.table-row:last-child { border-bottom: none; }
.tc { text-align: center; }
.tc-muted { text-align: center; color: #737b8c; }
.tc-primary { text-align: center; font-weight: 500; color: #0dc8f2; }

