/* new css */

  /* ── Section 1: Blue hero ── */
    .section-hero {
      background: linear-gradient(180deg, #007abe 0%, #003a74 100%);
      padding: 60px 20px 70px;
      text-align: center;
    }
 
    .section-newbg {
	background: linear-gradient(180deg, #fcfcfd 0%, #9bcff8 100%);
	text-align: center;
}
.color2{color: #bedef2;}

    .section-hero h1 {
      font-size: 2.7rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.5px;
      margin-bottom: 10px;
    }
 
    .section-hero h1 span {
      color: #01e5ff;
    }
 
    .section-hero .subtitle {
      color: #fff;
      font-size: 20px;
      margin-bottom: 40px;
    }
 
    /* Stat Cards */
   .stat-card {
	background: var(--themecolor2);
	border-radius: 21px;
	padding: 0;
	text-align: center;
	height: 100%;
}
 
    .stat-card .icon-wrap {
      width: 64px;
      height: 64px;
      margin: 20px auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    .stat-card .icon-wrap img,
    .stat-card .icon-wrap svg {
  
    }
 
    .stat-card h3 {
      font-size: 2.1rem;
      font-weight: 800;
      color: var(--themecolor1);
      margin-bottom: 10px;
    }
 
    .stat-card p {
      line-height: 1.5;
      margin-bottom: 18px;
      min-height: 60px;
    }
 
    .stat-card .metric {
      font-size: 36px;
      font-weight: 800;
      color: #fff;
      line-height: 1;
      margin-bottom: 4px;
      font-family: "gotham_narrowbold";
    }
 
    .stat-card .metric-label {
      font-size: 0.88rem;
      color: #fff;
      font-weight: 600;
    }
 
 .section-pillars {
	background: linear-gradient(180deg, #fcfcfd 0%, #9bcff8 100%);
	padding: 70px 20px 80px;
	text-align: center;
}
 
    .section-pillars h2 {
      font-size: 3.2rem;
      font-weight: 900;
      color: #003a74;
      margin-bottom: 10px;
    }
 
    .section-pillars .subtitle {
      margin-bottom: 44px;
      font-size: 20px;
    }
 
    /* Pillar Cards */
    .pillar-card {
      background: #0081c6;
      border-radius: 22px;
      padding: 28px 30px;
      text-align: left;
      height: 100%;
      display: flex;
      align-items: flex-start;
      gap: 30px;
    }
 
    .pillar-card .icon-box {
      width: 52px;
      height: 52px;
      min-width: 52px;
      background: rgba(255,255,255,0.15);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    .pillar-card .icon-box svg {
      width: 28px;
      height: 28px;
      fill: #fff;
    }
 
    .pillar-card .text-content h4 {
      color: #fff;
      margin-bottom: 8px;
    }
 
    .pillar-card .text-content p {
      color: #fff;
      line-height: 1.6;
      margin: 0;
      font-weight: 600;
    }
 
    @media (max-width: 767px) {
      .section-hero h1 { font-size: 1.8rem; }
      .section-pillars h2 { font-size: 1.6rem; }
      .stat-card p { min-height: unset; }
    }
    .section-platform {
      background: #002850;
      padding: 100px 20px 100px;
    }
 
    .platform-heading h2 {
      font-size: 2.7rem;
      font-weight: 900;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 20px;
    }
 
    .platform-heading h2 span {
      color: #01e5ff;
      display: block;
    }
 
    .platform-heading p {
      color: #fff;
      max-width: 360px;
    }
 
    /* Revenue Stream Cards */
    .stream-card {
      background: linear-gradient(180deg, #fcfcfd 0%, #9bcff8 100%);
      border-radius: 14px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      /*! height: 100%; */
      border: 0px solid rgba(255,255,255,0.06);
    }
 
    .stream-card .s-icon {
      width: 52px;
      height: 52px;
      min-width: 52px;
      background: #0e2a50;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    .stream-card .s-icon svg {
      width: 28px;
      height: 28px;
      fill: #fff;
    }
 
    .stream-card h5 {
      color: var(--themecolor1);
      margin-bottom: 3px;
    }
 
    .stream-card p {
      margin: 0;
    }
 
    @media (max-width: 767px) {
      .section-repair h1 { font-size: 1.7rem; }
      .steps-wrapper { flex-wrap: wrap; gap: 30px; }
      .step-item { width: 140px; }
      .step-item::after { display: none; }
      .platform-heading h2 { font-size: 1.8rem; }
    }
     /* ─── Design Tokens ─────────────────────────────────── */
    :root {
      --bg-navy:        #0b1f45;
      --bg-dark-navy:   #081630;
      --bg-mid-navy:    #0d2657;
      --accent-cyan:    #00b4d8;
      --accent-green:   #4ade80;
      --accent-green-bg:#22c55e;
      --card-bg:        rgba(255,255,255,0.07);
      --card-bg-solid:  #112a5c;
      --card-border:    rgba(255,255,255,0.10);
      --text-secondary: rgba(255,255,255,0.72);
      --text-muted:     rgba(255,255,255,0.50);
      --highlight-pill: rgba(0,180,216,0.15);
      --step-active:    #4ade80;
      --font-display:   'Sora', sans-serif;
      --font-body:      'Inter', sans-serif;
      --radius-card:    14px;
      --radius-sm:      8px;
      --transition:     0.25s ease;
      --shadow-card:    0 4px 32px rgba(0,0,0,0.25);
    }
  
 

    .text-cyan  { color: #01e5ff; }
    .text-green { color: var(--accent-green); }
 
    /* ─── Section headings ───────────────────────────────── */
    .section-title {
      font-weight: 800;
      text-align: center;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: #fff;
      font-size: 3.2rem;
    }
    .section-subtitle {
      text-align: center;
      color: #fff;      
      margin-top: 0.6rem;
    }
 
    .repair-section { background: #003a74; padding: 70px 20px 80px;}
 
    /* ── Steps flow ─── */
    .steps-track {
      position: relative;
      display: flex;
      align-items: flex-start;
      gap: clamp(0.5rem, 2vw, 1rem);
      margin-top: clamp(2rem, 5vw, 3.5rem);
      padding-bottom: 1.5rem;
    }
 
    /* dotted connector line behind the cards */
    .steps-track::after {
      content: '';
      position: absolute;
      top: 44px;
      left: calc(var(--step-offset, 12%) + 44px);
      right: calc(var(--step-offset, 12%) + 44px);
      height: 2px;
      background: repeating-linear-gradient(
        to right,
        rgba(255,255,255,0.35) 0 6px,
        transparent 6px 14px
      );
      pointer-events: none;
    }
 
    .step-card {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
    }
 
    .step-icon-wrap {
      width: 88px;
      height: 88px;
      border-radius: var(--radius-card);
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      backdrop-filter: blur(8px);
      transition: transform var(--transition), box-shadow var(--transition);
      position: relative;
      z-index: 1;
    }
    .step-card:hover .step-icon-wrap {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0,180,216,0.2);
    }
    .step-card--active .step-icon-wrap {
      background: var(--accent-green-bg);
      border-color: var(--accent-green);
    }
 
    .step-icon {
      width: 36px;
      height: 36px;
      opacity: 0.9;
    }
 
    /* SVG icons inline */
    .step-icon svg { width: 100%; height: 100%; fill: white; }
 
    .step-label {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(0.85rem, 1.8vw, 1rem);
      margin-bottom: 0.25rem;
    }
    .step-card--active .step-label { color: var(--accent-green); }
 
    .step-desc {
      font-size: clamp(0.75rem, 1.5vw, 0.875rem);
      color: var(--text-secondary);
    }
 
    .step-number {
      position: absolute;
      bottom: -1.25rem;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--text-muted);
    }
 
    /* ── Stat pill ─── */
    .stat-pill {
      margin-top: clamp(2.5rem, 5vw, 3.5rem);
      background: #0081c6;
      border: 0px solid rgba(0,180,216,0.3);
      border-radius: 12px;
      padding: clamp(1rem, 3vw, 1.25rem) clamp(1.25rem, 4vw, 2rem);
      display: flex;
      align-items: center;
      gap: 1rem;
      justify-content: center;
    }
    .stat-pill-icon {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      color: var(--accent-cyan);
    }
    .stat-pill-text {
      font-size: clamp(0.8875rem, 2vw, 1.3rem);
      color: #fff; margin-bottom:0px;
    }
    .stat-pill-text strong {
      color: var(--text-primary);
      font-weight: 700;
    }
 
    .revenue-section { background: var(--bg-dark-navy); }
 
    .revenue-grid {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
      margin-top: clamp(2rem, 5vw, 3rem);
    }
 
    .revenue-headline {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.03em;
    }
    .revenue-headline .line-cyan { color: var(--accent-cyan); display: block; }
    .revenue-desc {
      margin-top: 1.25rem;
      color: var(--text-secondary);
      font-size: 0.9rem;
      max-width: 340px;
    }
 
    .stream-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.875rem;
    }
  
    .stream-card-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-sm);
      background: var(--bg-mid-navy);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .stream-card-icon svg { width: 22px; height: 22px; fill: var(--accent-cyan); }
    .stream-card-body {}
    .stream-card-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.95rem;
    }
    .stream-card-desc {
      font-size: 0.8rem;
      color: var(--text-secondary);
      margin-top: 0.1rem;
    }
 
    .data-section { /*! background: var(--bg-navy); */ padding: 100px 20px 100px;}
 
    .data-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
      margin-top: clamp(2rem, 5vw, 3.5rem);
    }
 
    .data-cards { display: flex; flex-direction: column; gap: 1rem; }
 
    .data-card {
      background: #0081c6;
      border: 0px solid rgba(0,180,216,0.2);
      border-radius: var(--radius-card);
      padding: 0.85rem 1.4rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      position: relative;
      /*! overflow: hidden; */
      transition: border-color var(--transition), transform var(--transition);
    }
    .data-card:hover {
      border-color: rgba(0,180,216,0.5);
      transform: translateX(4px);
    }
    .data-card::before {
      content: '';
      position: absolute;
      left: -12px; top: 38%; bottom: 0;
      width: 3px;
      background: #0081c6;
      border-radius: 0 2px 2px 0;
      width: 25px;
      height: 25px;
      border-radius: 50%;
      border: 4px solid white;
    }
    .data-card-dot {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2.5px solid white;
      flex-shrink: 0;
      margin-top: 0.15rem;
    }
    .data-card-title {
      /*! font-family: var(--font-display); */
      font-weight: bold;
      font-size: 24px;
      margin-bottom: 0;
      color: #fff;
      font-family: "gotham_narrowbold";
    }
    .data-card-desc {
    font-weight: 600;
      color: #fff;
      margin-bottom: 0;
    }
 
    .data-stat-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }
    .data-stat-orb {
      width: clamp(180px, 30vw, 260px);
      height: clamp(180px, 30vw, 260px);
      border-radius: 50%;
      background: radial-gradient(circle at 35% 40%, rgba(0,180,216,0.15) 0%, transparent 70%);
      border: 1.5px solid rgba(0,180,216,0.18);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .data-stat-orb::before {
      content: '';
      position: absolute;
      inset: 14px;
      border-radius: 50%;
      border: 1px solid rgba(0,180,216,0.12);
    }
    .data-stat-number {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 6vw, 3.5rem);
      font-weight: 800;
      color: var(--accent-cyan);
      line-height: 1;
      letter-spacing: -0.03em;
    }
    .data-stat-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 0.25rem;
    }
     
    .ai-section { background: #002850; padding: 100px 20px 100px;}
 
    .ai-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      margin-top: clamp(2rem, 5vw, 3rem);
    }
 
    .ai-card {
      background: linear-gradient(180deg, #fcfcfd 0%, #9bcff8 100%);
      border: 0px solid var(--card-border);
      border-radius: 16px;
      padding: clamp(1.25rem, 3vw, 1.75rem);
      backdrop-filter: blur(8px);
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    .ai-card:hover {
      border-color: rgba(0,180,216,0.4);
      box-shadow: 0 8px 40px rgba(0,180,216,0.1);
    }
 
    .ai-card-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      /*! font-size: 0.7rem; */
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: #003a74;
      color: #fff;
      border: 0px solid rgba(0,180,216,0.3);
      border-radius: 11px;
      padding: 10px 15px;
      margin-bottom: 1rem;
    }
    .ai-card-tag svg { width: 12px; height: 12px; }
 
    .ai-card-title {
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: var(--themecolor1);
    }
 
 
    .ai-feature-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      background: #0081c6;
      border: 0px solid rgba(0,180,216,0.15);
      border-radius: var(--radius-card);
      padding: 1rem 1.1rem;
    }
    .ai-feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 19px;
      color: #fff;
      line-height: 1.45;
    }
    .ai-feature-list li::before {
      content: '';
      width: 13px;
      height: 13px;
      border-radius: 50%;
      border: 2px solid #fff;
      flex-shrink: 0;
      margin-top: 0.35rem;
      margin-left: -23px;
      background: #0081c6;
    }
    .tagline-bar {
      background: var(--bg-navy);
      padding-block: clamp(1.5rem, 4vw, 2.5rem);
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .tagline-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.5rem 1.25rem;
    }
    .tagline-word {
      font-size: clamp(1.2rem, 3vw, 2.85rem);
      font-weight: 800;
      /*! letter-spacing: -0.02em; */
      font-family: "gotham_narrowbold";
    }
    .tagline-word--white  { color: white; }
    .tagline-word--cyan   { color: var(--accent-cyan); }
    .tagline-word--purple { color: #a78bfa; }
    .tagline-word--green  { color: var(--accent-green); }
    .tagline-dot {
      color: #fff;
      font-size: 2.25rem;
      font-weight: 200;
      font-family: "gotham_narrowbold";
    }
 
    @media (max-width: 768px) {
      .steps-track {
        flex-direction: column;
        align-items: center;
      }
      .steps-track::after { display: none; }
      .step-number { position: static; transform: none; margin-top: 0.5rem; }
 
      .revenue-grid { grid-template-columns: 1fr; }
      .revenue-desc { max-width: 100%; }
 
      .data-grid { grid-template-columns: 1fr; display: block; }
      .data-stat-wrap { margin-top: 1rem; }
 
      .ai-cards { grid-template-columns: 1fr; }
 
      .stream-cards { grid-template-columns: 1fr; }
      .data-stat-wrap img{width:100%;}

      .ai-section, .data-section, .section-platform {
	padding: 50px 10px 50px;
}
.repair-section {
	padding: 70px 10px 80px;
}


    }

    .stream-card2 {
	background: linear-gradient(180deg, #fcfcfd 0%, #9bcff8 100%);
	border-radius: 14px;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	height: 100%;
	border: 0px solid rgba(255,255,255,0.06);
	flex-wrap: wrap;
	text-align: center;
	justify-content: center;
    }
 .stream-card2 .s-icon {
	margin-top: -50px; width:100%;
    }

    .stream-card2.greenbox {
	background: linear-gradient(180deg, #9bfec9 0%, #0bfc7c 100%);
    }
   .stream-card2 h3 {
	color:var(--themecolor1);
    }
    .bluecolor{color:#0aa1f3;}

.number {
	width: 100%;
	text-align: center;
	display: block;
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	font-family: "gotham_narrowbold";
	margin-top: 14px;
}
 
    @media (max-width: 580px) {
      .step-card { width: 100%; max-width: 280px; }
      .tagline-inner { flex-direction: column; gap: 0.25rem; }
      .tagline-dot { display: none; }
      .pillar-card {
	flex-wrap: wrap;
}
.section-title {
	font-size: 2.2rem;
}
.stream-card2 {
	 height: auto;	
	margin-bottom: 50px;
}

.newpagebtn .btn_2, .newpagebtn .btn, .newpagebtn .btn_w {

	line-height: 1rem;
	margin: 12px 0;
}

.section-pillars, .section-hero {	
	padding: 50px 10px 50px;

}

.number {
	display: none;
}

    }
