@charset "utf-8";
/* CSS Document */
  :root {
    --brand: #262B6C;
    --brand-mid: #3a4199;
    --accent: #E8392A;
    --accent-light: #f5ede;
    --light-bg: #F4F5FB;
    --border: #DDE0F0;
    --white: #ffffff;
    --text: #262B6C;
    --text-muted: #5A5F8A;
  }


  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


  /* ── HEADER ── */

  
  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 60%, #4B55C0 100%);
    color: var(--white);
    padding: 80px 48px 72px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 700;
    line-height: 1.2;
    max-width: 720px;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
  }
  .hero h2 {
    font-size: 1.15rem;
    font-weight: 400;
    opacity: 0.82;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 0;
  }
  .hero-rail-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25) 20%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.25) 80%, transparent);
  }
  .hero-rail-dot {
    position: absolute;
    bottom: -2px;
    width: 8px; height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: railmove 4s linear infinite;
  }
  @keyframes railmove {
    from { left: -10px; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    to   { left: 101%; opacity: 0; }
  }

    #navbar {
	-webkit-transform: translateY(-100px);
	transform: translateY(-100px);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9;
	-webkit-transition: -webkit-transform .7s ease-in-out;
	transition: -webkit-transform .7s ease-in-out;
	transition: transform .7s ease-in-out;
	box-shadow: 0 0 3px 1px rgba(0, 0, 0, .2);
	background-color: rgb(255, 255, 255, 0.9) !important;
}
.section-white ul li, .story .story-left, ol li {
	/* float: left; */
	/* display: block; */
	list-style-type: disc;
	list-style: none !important;
	color: #262B6C !important;
}

.solu {	color: #fff !important;	background: #00abff;}
  /* ── LAYOUT ── */
  .container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 48px;
  }

  section { padding: 25px 0 0 0;}
  section + section { /*border-top: 1px solid var(--border);*/ }

  h2.section-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--brand);
    margin: 32px 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  h2.section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--border), transparent);
    display: block;
  }
  h3.sub-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 10px;
    margin-top: 28px;
  }

  p { margin-bottom: 14px; color: var(--text); }

  /* ── SUMMARY CARDS ── */
  .summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 8px;
  }
  .summary-card {
    background: var(--light-bg);
  /*  border: 1px solid #262B6C;*/
    border-radius: 10px;
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s;
  }
.blueclr { color:#262B6C !important}
  .summary-card:hover { box-shadow: 0 6px 24px rgba(38,43,108,0.1); }
  .summary-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--brand);
    border-radius: 3px 0 0 3px;
  }
  .summary-card .label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color:#262B6C;
    margin-bottom: 6px;
    font-weight: 700;
  }
  .summary-card .value {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand);
    line-height: 1.3;
  }

  /* ── CHALLENGE / ISSUE LIST ── */
  .issue-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    margin-top: 10px;
  }
  .issue-list li {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 18px 14px 46px;
    position: relative;
    font-size: 18px;
    color: var(--text);
    line-height: 1.5;
      list-style: none !important;
  }
  .issue-list li::before {
    content: '×';
    position: absolute;
    left: 16px; top: 13px;
    width: 22px; height: 22px;
    background: #fde8e6;
    color: var(--accent);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
    text-align: center;
  }
.dici {margin-top:22px; font-style:italic; color:#262B6C;}

  /* ── CAPABILITY CARDS ── */
  .capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
    margin-top: 10px;
  }
  .cap-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 26px 22px;
    transition: transform 0.2s, box-shadow 0.2s;
    background: var(--white);
  }
  .cap-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(38,43,108,0.1);
    border-color: var(--brand);
  }
  .cap-icon {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
  }
.section-white h3 {
	color: #fff !important;
	font-size: 18px !important;
}
  .cap-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 8px;
  }
  .cap-card p {
    font-size: 18px;
    color:#262B6C;
    line-height: 1.55;
    margin: 0;
  }

  /* ── RESULTS ── */
  .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 10px;
  }
.result-card {
	background: #262B6C !important;
	color: var(--white);
	border-radius: 10px;
	padding: 28px 22px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.result-card::after {
    content: '';
    position: absolute;
    bottom: -20px; right: -20px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
  }
  .result-icon { font-size: 19px; margin-bottom: 10px; display: block; }
  .result-card h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 8px;
    color: #fffl
  }
  .result-card p {
    font-size: 18px;
    color: var(--white);
    opacity: 0.9;
    margin: 0;
    line-height: 1.45;
  }
  .result-highlight {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 4px;
  }

  /* ── BEFORE / AFTER TABLE ── */
  .ba-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 10px;
  }
  .ba-table thead tr th {
    padding: 14px 22px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .ba-table thead tr th:first-child {
    background: #f7e8e7;
    color: var(--accent);
    text-align: left;
  }
  .ba-table thead tr th:last-child {
    background: #E8EBF8;
    color: var(--brand);
    text-align: left;
  }
  .ba-table tbody tr td {
    padding: 14px 22px;
    font-size: 16px;
    vertical-align: top;
  }
  .ba-table tbody tr td:first-child {
    background: #fdf6f6;
    color: #6B4040;
    border-bottom: 1px solid #f0dede;
  }
  .ba-table tbody tr td:last-child {
    background: #262B6C;
    color:#fff;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
  }
  .ba-table tbody tr:last-child td { border-bottom: none; }

  /* ── BULLET LISTS ── */
  .styled-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
    margin-top: 10px;
  }
  .styled-list li {
    padding: 10px 14px 10px 40px;
    position: relative;
    font-size: 18px;
    background: var(--light-bg);
    border-radius: 7px;
    border: 1px solid var(--border);
    line-height: 1.5;
      list-style: none !important;
  }
  .styled-list li::before {
    content: '✓';
    position: absolute; left: 12px; top: 10px;
    color: var(--white);
    background: var(--brand);
    width: 20px; height: 20px;
    border-radius: 50%;
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
  }

  /* ── TECH TAGS ── */
  .tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }
  .tech-tag {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px 18px;
    font-size: 16px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.02em;
    display: flex; align-items: center; gap: 8px;
  }
  .tech-tag .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--brand);
    opacity: 0.4;
  }

  /* ── CTA ── */
  .cta-section {
    background: linear-gradient(135deg, #080f45 0%, #3a4199 100%);
    border-radius: 14px;
    padding: 54px 48px;
    text-align: center;
    color: var(--white);
    margin: 0 0 60px;
  }
  .cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
      color: #fff;
  }
  .cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    max-width: 735px;
    margin: 0 auto 28px;
    line-height: 1.6;
  }
  .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background:#262B6C;
    color: var(--brand);
    padding: 13px 28px;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
border:1px solid #b19292;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 13px 28px;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, border-color 0.2s;
  }
  .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 24px 48px;
    font-size: 16px;
    color: var(--text-muted);
  }

  /* ── DIVIDER ── */
  .divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
  }

  @media (max-width: 640px) {
    header, .hero, .container { padding-left: 20px; padding-right: 20px; }
    .hero { padding-top: 50px; padding-bottom: 50px; }
    section { padding: 40px 0; }
    .cta-section { padding: 36px 24px; }
  }
