@charset "utf-8";
/* CSS Document */


  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --brand: #262B6C;
    --gold: #C8A84B;
    --gold-light: #E6C97A;
    --gold-pale: #FBF5E6;
    --white: #ffffff;
    --text: #262B6C;
    --gray: #F5F7FA;
    --border: #E8E3D5;
    --shadow: 0 4px 24px rgba(38,43,108,0.09);
    --shadow-lg: 0 8px 40px rgba(38,43,108,0.13);
  }

  body {
    font-family: 'PT Sans', 'pt_sansregular', sans-serif;
    font-size: 18px;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
  }

  h2 { font-size: 22px !important; font-weight: 700; color: var(--brand); margin-bottom: 14px; }
  h3 { font-size: 20px !important; font-weight: 700; color: var(--text); margin-bottom: 10px; }
  p  { font-size: 18px !important; color: var(--text); margin-bottom: 12px; }
h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	margin-bottom: 20px;
	color:#262B6C !important;
}
  a { color: var(--gold); text-decoration: none; }
  a:hover { text-decoration: underline; }

  /* ── HEADER ── */
 
  /* ── HERO ── */
  .hero {
   /* background: linear-gradient(120deg, var(--brand) 60%, #3B4398 100%);*/
    color: var(--white);
    padding: 90px 60px 80px;
    position: relative; overflow: hidden;
  }
 /* .hero::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(200,168,75,0.18) 0%, transparent 70%);
    border-radius: 50%;
  }*/
  .hero::after {
    content: '';
    position: absolute; bottom: -60px; left: 30%;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(200,168,75,0.10) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero-inner { /*max-width: 820px;*/ position: relative; z-index: 1; float: left;}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background:#2a0171;
	border: 1px solid rgba(1, 0, 9, 0.4);
	color: var(--gold-light);
	font-size: 14px;
	font-weight: 700;
	padding: 6px 16px;
	border-radius: 20px;
	margin-bottom: 24px;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}
  .hero h1 {
    font-size: 30px; font-weight: 700; color: var(--text); line-height: 1.25;
    margin-bottom: 22px;
  }
  .hero h1 span { color: var(--text); }
  .hero p { font-size: 19px; color: rgba(255,255,255,0.88); margin-bottom: 18px; color: var(--text); }
  .hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--brand); font-weight: 700; font-size: 17px;
    padding: 14px 36px; border-radius: 7px; margin-top: 10px;
    box-shadow: 0 4px 18px rgba(200,168,75,0.35);
    transition: transform .2s, box-shadow .2s;
      margin-bottom: 25px;
  }
  .hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,168,75,0.45); text-decoration: none; }

  /* ── SECTION WRAPPER ── */
  section { padding: 70px 60px; }
  section:nth-child(even) { background: var(--gray); }
  .section-inner { max-width: 1080px; margin: 0 auto; }

  /* ── SECTION TITLE ── */
  .section-title {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 30px;
  }
  .section-title-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 12px rgba(200,168,75,0.28);
  }
  .section-title-icon svg { width: 26px; height: 26px; }
  .section-title h2 { margin-bottom: 0; font-size:26px; }

  /* ── WHAT MAKES DIFFERENT ── */
  .diff-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
  .diff-list li {
    display: flex; align-items: flex-start; gap: 14px;
    background: var(--white); border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: 8px; padding: 16px 20px;
    box-shadow: var(--shadow);
    font-size: 18px;
  }
  .diff-list li .bullet-icon {
    width: 32px; height: 32px; flex-shrink: 0;
    background: var(--brand);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
  }
  .diff-list li .bullet-icon svg { width: 18px; height: 18px; }

  /* ── SERVICES GRID ── */
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: 10px;
  }

#custom .btn-primary {
	background: #010946 !important;
	color: #FFF !important;
	box-shadow: 0 4px 18px rgba(232,160,32,.35);
	text-wrap: auto;
}
.mt15 {margin-top: 15px;}

  .service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px; padding: 28px 24px;
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .service-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 12px; margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 10px rgba(200,168,75,0.25);
  }
  .service-icon svg { width: 28px; height: 28px; }

  /* ── SOLUTIONS LIST ── */
  .solutions-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    margin-top: 16px;
  }
  .solution-chip {
    display: flex; align-items: center; gap: 12px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 8px; padding: 14px 18px;
    box-shadow: var(--shadow); font-size: 18px; font-weight: 700;
  }
  .solution-chip .chip-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
  }

  /* ── INDUSTRIES ── */
  .industries-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-top: 10px;
  }
  .industry-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; padding: 24px 20px; text-align: center;
    box-shadow: var(--shadow);
    transition: transform .2s;
  }
  .industry-card:hover { transform: translateY(-3px); }
  .industry-card .ind-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 14px; margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 10px rgba(200,168,75,0.25);
  }
  .industry-card .ind-icon svg { width: 30px; height: 30px; }
.mt25 {margin-top: 25px;}
  /* ── PROCESS STEPS ── */
  .steps-row {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
    margin-top: 16px; position: relative;
  }
  .steps-row::before {
    content: '';
    position: absolute; top: 36px; left: 8%; right: 8%;
    height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 0;
  }
  .step {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; padding: 0 8px; position: relative; z-index: 1;
  }
  .step-num {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--brand) 0%, #3B4398 100%);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 20px; font-weight: 700;
    margin-bottom: 14px;
    box-shadow: 0 2px 12px rgba(38,43,108,0.18);
  }
  .step h3 { font-size: 16px; }
  .step p { font-size: 14px; color: #5a609a; }

  /* ── WHEN DO YOU NEED ── */
  .need-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-top: 10px;
  }
  .need-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 10px; padding: 22px 20px;
    box-shadow: var(--shadow);
  }
  .need-card .need-icon {
    width: 44px; height: 44px;
    background: var(--gold-pale); border: 1px solid var(--border);
    border-radius: 10px; margin-bottom: 12px;
    display: flex; align-items: center; justify-content: center;
  }
  .need-card .need-icon svg { width: 24px; height: 24px; }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: linear-gradient(120deg, var(--brand) 0%, #3B4398 100%);
    border-radius: 16px; padding: 48px 36px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: var(--shadow-lg);
    gap: 24px;
  }
  .cta-banner h2 { color: var(--white); margin-bottom: 8px; }
  .cta-banner p { color: rgba(255,255,255,0.82); margin-bottom: 0; }
  .cta-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--brand); font-weight: 700; font-size: 16px;
    padding: 14px 32px; border-radius: 7px; border: none;
    cursor: pointer; white-space: nowrap; flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(200,168,75,0.32);
    transition: transform .2s;
  }
  .cta-btn:hover { transform: translateY(-2px); }

  /* ── COMPARISON TABLE ── */
  .compare-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
  .compare-table th {
    background: var(--brand); color: var(--white);
    padding: 16px 20px; font-size: 18px; font-weight: 700; text-align: left;
  }
  .compare-table th:first-child { border-radius: 10px 0 0 0; }
  .compare-table th:last-child { border-radius: 0 10px 0 0; }
  .compare-table td {
    padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 18px;
  }
  .compare-table tr:nth-child(even) td { background: var(--gold-pale); }
  .compare-table .gold-col { color: var(--gold); font-weight: 700; }
  .compare-table .check { color: #262B6C; font-weight: 700; }
  .compare-table .cross { color: #c62828; }

  /* ── CASE STUDIES ── */
  .case-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
    margin-top: 16px;
  }
.Typical h2 {font-size: 18px;}
  .case-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 14px; overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
  }
  .case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .case-header {
    background: linear-gradient(120deg, var(--brand) 0%, #3B4398 100%);
    padding: 22px 24px; display: flex; align-items: center; gap: 16px;
  }
  .case-icon {
    width: 50px; height: 50px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
  }
  .case-icon svg { width: 26px; height: 26px; }
  .case-header h3 { color: var(--white) !important; margin-bottom: 2px; font-size: 18px; }
  .case-industry { color: var(--gold-light); font-size: 14px; }
  .case-body { padding: 22px 24px; }
  .case-body h4 { font-size: 16px; font-weight: 700; color: var(--brand); margin-bottom: 6px; margin-top: 14px; }
  .case-body h4:first-child { margin-top: 0; }
  .case-body p { font-size: 16px; margin-bottom: 8px; }
  .impact-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
  .impact-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 16px; }
  .impact-list li::before { content: '✔'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

  /* ── TIMELINE / TECH / SECURITY / SUPPORT BOXES ── */
  .info-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .info-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; padding: 28px 24px;
    box-shadow: var(--shadow);
  }
  .info-card .ic-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 12px; margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 10px rgba(200,168,75,0.22);
  }
  .info-card .ic-icon svg { width: 28px; height: 28px; }
  .info-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; padding: 0; margin: 0; }
  .info-card ul li { display: flex; align-items: center; gap: 10px; font-size: 17px; }
  .info-card ul li::before { content: ''; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

  /* ── WHY CHOOSE ── */
  .why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  }
  .why-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; padding: 26px 22px; text-align: center;
    box-shadow: var(--shadow);
  }
  .why-card .why-icon {
    width: 54px; height: 54px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 14px; margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
  }
  .why-card .why-icon svg { width: 28px; height: 28px; }

  /* ── TECH STACK ── */
  .tech-row {
    display: flex; flex-wrap: wrap; gap: 16px; margin-top: 10px;
  }
  .tech-chip {
    display: flex; align-items: center; gap: 10px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 8px; padding: 12px 20px;
    font-size: 17px; font-weight: 700; box-shadow: var(--shadow);
  }
  .tech-chip .tc-dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; }

  /* ── FAQ ── */
  .faq-list { display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
  details {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 10px; box-shadow: var(--shadow); overflow: hidden;
  }
  summary {
    padding: 18px 22px; font-size: 18px; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    list-style: none; color: var(--brand);
  }
  summary::after {
    content: '+'; font-size: 22px; color: var(--gold); font-weight: 700;
    transition: transform .2s;
  }
  details[open] summary::after { transform: rotate(45deg); }
  .faq-ans { padding: 0 22px 18px; font-size: 18px; border-top: 1px solid var(--border); padding-top: 14px; }

  /* ── FOOTER ── */
    
    .cta-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}
    .btn-primary:hover {
	background: var(--accent-light);
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(232,160,32,.45);
}
    .btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 30px;
	/* border-radius: 100px; */
	font-family: var(--font);
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	transition: transform .22s, box-shadow .22s, background .22s;
	border: none;
}



  @media (max-width: 900px) {
    header { padding: 14px 20px; }
    section { padding: 48px 20px; }
    .hero { padding: 60px 20px 50px; }
    .services-grid, .solutions-grid, .industries-grid, .need-grid, .case-grid, .info-cards, .why-grid { grid-template-columns: 1fr 1fr; }
    .steps-row { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .steps-row::before { display: none; }
    .cta-banner { flex-direction: column; text-align: center; }
  }
  @media (max-width: 600px) {
    .services-grid, .solutions-grid, .industries-grid, .need-grid, .case-grid, .info-cards, .why-grid, .steps-row { grid-template-columns: 1fr; }
  }
    .hero-inner-rgt {	width: 250px;	float: left;	background: red;	position: relative;	text-align: left;}
    
    .tech-section {
  padding: 60px 20px;
  text-align: center;
  background: #f9fafc;
}

.tech-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.tech-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.tech-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.tech-card i {
  font-size: 45px;
  margin: 5px;
  transition: 0.4s;
}

.tech-card h3 {
  margin-top: 15px;
  font-size: 20px;
}

.tech-card p {
  color: #666;
  margin-top: 5px;
}

/* 🔥 Hover Effects */
.tech-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Glow effect */
.tech-card::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(120deg, #007bff, #00c6ff);
  opacity: 0.08;
  transition: 0.4s;
}

.tech-card:hover::before {
  width: 100%;
}

/* Icon animation */
.tech-card:hover i {
  transform: rotate(10deg) scale(1.2);
}

.mt25 {margin-top: 25px;}
    
     
.accordionWrapper {
  padding: 30px;
  background: #fff;
  float: left;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 40px;
  box-shadow: 0 1.5em 85px 0 rgba(0, 0, 0, .2)
}
.accordionItem {
  float: left;
  display: block;
  width: 100%;
  box-sizing: border-box
}
.accordionItemHeading {
	cursor: pointer;
	font-size: 18px;
	font-weight: 400;
	margin: 0 0 10px 0;
	padding-left: 10px;
	background:#C0E9FF;
	color:#262B6C;
	width: 100%;
	/* -webkit-border-radius: 3px; */
	/* border-radius: 3px; */
	/* box-sizing: border-box; */
	padding: 10px;
	color:#262B6C !important;
	font-size: 16px !important;
	padding-left: 20px !important;
	margin-bottom: 20px !important;
    font-weight: 700;
}

.copy-write.pull-left p {
	font-size: 12px !important;
}
.close {
	float: right;
	font-size: 21px;
	line-height: 1;
	color: #000 !important;
	text-shadow: none !important;
	opacity: 1 !important;
}


.accordionItemContent ul li {
	padding-bottom: 10px;
}

.close .accordionItemContent {
  height: 0;
  transition: height 1s ease-out;
  -webkit-transform: scaleY(0);
  -o-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  float: left;
  display: block
}
.open .accordionItemContent {
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  width: 100%;
  margin: 0 0 10px 0;
  display: block;
  -webkit-transform: scaleY(1);
  -o-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: top;
  -o-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: -webkit-transform .4s ease-out;
  -o-transition: -o-transform .4s ease;
  -ms-transition: -ms-transform .4s ease;
  transition: transform .4s ease;
  box-sizing: border-box;
  font-size: 16px;
}
.open .accordionItemHeading {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  -webkit-border-top-left-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  -moz-border-radius-topleft: 3px;
  -moz-border-radius-topright: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  color: #fff;
    padding: 10px;
}
    