:root {
    --bg: #081327;
    --bg-soft: #0f1f3d;
    --surface: #ffffff;
    --surface-2: #f5f8ff;
    --line: #dbe5ff;
    --text: #0f172a;
    --muted: #2C4161;
    --primary: #4f46e5;
    --primary-2: #06b6d4;
    --accent: #8b5cf6;
    --success: #14b8a6;
    --warning: #f59e0b;
    --shadow: 0 18px 50px rgba(8, 19, 39, 0.12);
    --radius: 22px;
    --max: 1240px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
  font-family: 'DM Sans', sans-serif;
    color:#001529;
    font-size: 18px;
    line-height: 27px;
    overflow-x: hidden;
    padding: 0;
}
p{
    padding: 0;
    margin: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
input,button,label,select{
  font-family: 'DM Sans', sans-serif;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(219, 229, 255, 0.8);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    color: #081327;
}
.brand img {
    height: 48px;
    width: auto;
    border-radius: 10px;
}
.brand small {
    display: block;
    font-weight: 600;
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}
.nav-links ul {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 600;
    color: #001529;
    list-style: none;
    padding: 0;
    margin: 0;
  
}
.nav-links a{
  font-size: 16px;
    line-height: normal;
}
.nav-links a:hover {
    opacity: 1;
    color: #1890FF;
}
.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 14px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: 0.25s ease;
    cursor: pointer;
}
.btn-primary {
    background: #001529;
    color: #fff;
}
.btn-primary:hover {
    transform: translateY(-2px);
}
.btn-secondary {
    background: #fff;
    border-color: var(--line);
    color: #0f172a;
}
.btn-secondary:hover {
    border-color: #bccfff;
    background: #f9fbff;
}
.page-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(1200px 500px at 100% -10%, rgba(6, 182, 212, 0.2), transparent 50%),
        radial-gradient(800px 400px at 0% 20%, rgba(139, 92, 246, 0.15), transparent 45%),
        linear-gradient(180deg, var(--bg) 0%, #0c1c36 100%);
    color: #fff;
}
.page-hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    padding: 72px 0 66px;
}
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.hero-copy h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
    margin: 18px 0 18px;
    letter-spacing: -0.03em;
}
.hero-copy p {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    max-width: 760px;
    margin: 0 0 28px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-actions .btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #E2E2E2;
    border-radius: 10px;
}
.hero-actions .btn-secondary:hover{
     background-color: #fff !important;
  color: #001529 !important;
}
.hero-actions .btn-secondary:first-child{
  background-color: #fff;
  color: #001529;
}

.hero-actions .btn-secondary:first-child:hover{
background: transparent !important;
    color: #fff !important;
}
.hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    border-radius: 28px;
    padding: 24px;
}
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 18px;
}
.metric {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 18px;
}
.metric strong {
    display: block;
    font-size: 30px;
    margin-bottom: 6px;
}
.metric span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
}
.hero-stack {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}
.stack-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.stack-card h4 {
    margin: 0 0 6px;
    font-size: 15px;
}
.stack-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.6;
}
.section {
    padding: 78px 0;
}
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 70px;
}
.section-head h2 {
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.03em;
    font-weight: 600;
}
.section-head p {
    margin: 0;
    max-width: 660px;
    color:#2C4161;
    font-size: 18px;
    line-height:27px;
}
.grid {
    display: grid;
    gap: 20px;
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.card {
    padding: 24px;
}
.card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
    color: #001529;
}
.card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -1%;
}
.icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
}
.pill-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.pill {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(44, 65, 97, 0.2);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -1%;
    color: #2C4161;
    line-height: normal;
}
.band {
    background: linear-gradient(180deg, #ffffff 0, #f3f7ff 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.showcase {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: stretch;
}
.panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.panel .panel-head {
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    background: linear-gradient(180deg, #f8fbff, #fff);
}
.panel .panel-body {
    padding: 24px;
}
.fake-window {
    background: #0b1730;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 30px 60px rgba(11, 23, 48, 0.25);
    color: #fff;
    height: 100%;
}
.window-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f87171;
}
.dot:nth-child(2) {
    background: #fbbf24;
}
.dot:nth-child(3) {
    background: #34d399;
}
.window-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 14px;
    height: calc(100% - 36px);
}
.sidebar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 16px;
}
.sidebar .nav-item {
    padding: 12px 14px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
    margin-bottom: 8px;
}
.sidebar .nav-item.active {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.35), rgba(6, 182, 212, 0.28));
    color: #fff;
}
.workspace {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 14px;
}
.workspace .tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.tile {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
}
.tile strong {
    display: block;
    font-size: 24px;
    margin-bottom: 6px;
}
.tile span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
}
.table {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 8px;
}
.row {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.8fr 0.7fr;
    gap: 10px;
    padding: 14px;
    border-radius: 14px;
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
}
.row.header {
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}
.row:not(.header):nth-child(odd) {
    background: rgba(255, 255, 255, 0.03);
}
.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
}
.badge-info {
    background: rgba(6, 182, 212, 0.18);
    color: #0ea5e9;
}
.badge-success {
    background: rgba(20, 184, 166, 0.16);
    color: #0f766e;
}
.badge-warn {
    background: rgba(245, 158, 11, 0.18);
    color: #a16207;
}
.badge-purple {
    background: rgba(139, 92, 246, 0.18);
    color: #6d28d9;
}
.timeline {
    display: grid;
    gap: 14px;
}
.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: start;
}
.timeline-item strong {
    font-size: 14px;
    color: var(--primary);
}
.timeline-item div {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow);
}
.timeline-item p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}
.table-lite {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

/* Table Head */
.table-lite th {
    text-align: left;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0 14px 8px;
}

/* Table Cells */
.table-lite td {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 14px;
    vertical-align: top;
    color: #1e293b;
    transition: all 0.25s ease;
}

/* Left rounded */
.table-lite td:first-child {
    border-left: 1px solid #e2e8f0;
    border-radius: 14px 0 0 14px;
}

/* Right rounded */
.table-lite td:last-child {
    border-right: 1px solid #e2e8f0;
    border-radius: 0 14px 14px 0;
}

/* Row hover */
.table-lite tr:hover td {
    background: #f8fafc;
    border-color: #cbd5f5;
}

/* Subtle shadow for rows */
.table-lite tr td {
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* Optional: zebra effect */
.table-lite tr:nth-child(even) td {
    background: #fbfdff;
}
.callout {
    padding: 24px 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0f1f3d, #102448);
    color: #fff;
    box-shadow: 0 20px 60px rgba(15, 31, 61, 0.22);
}
.callout p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}
.faq details {
    background: #001529;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq details + details {
    margin-top: 14px;
}

/* Hover effect */
.faq details:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Open state */
.faq details[open] {
    box-shadow: 0 10px 30px rgba(77, 184, 255, 0.15);
}

/* Summary (title) */
.faq summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

/* Remove default arrow */
.faq summary::-webkit-details-marker {
    display: none;
}

/* Custom + icon */
.faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    transition: 0.3s;
}

/* Change to - when open */
.faq details[open] summary::after {
    content: "−";
    transform: rotate(180deg);
}

/* Paragraph content */
.faq p {
    margin: 0 0 0;
    line-height: 1.8;
}
.cta-band {
    padding:61px 50px;
    border-radius: 13.26px;
   background: linear-gradient(135deg, #1890FF, #2C4161);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}
.cta-band h3 {
    font-size: 42px;
    margin: 0 0 16px;
    line-height: 48px;
}
.cta-band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
}
.cta-band p{
  font-size: 19px;
  line-height: 28px;
}
.cta-band > div:first-child{
  width: 550px;
  flex-grow: 1;
}
.footer {
    background: #081327;
    color: #dfe8ff;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.7fr 0.9fr;
    gap: 28px;
    padding: 50px 0;
}
.footer h4 {
    margin: 0 0 12px;
    color: #fff;
}
.footer p,
.footer a {
    color: rgba(223, 232, 255, 0.76);
    line-height: normal;
}
.footer a:hover {
    color: #fff;
}
.footer .brand img {
    height: 54px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding: 18px 0;
    color: rgba(223, 232, 255, 0.7);
    font-size: 14px;
}
.hero-subnav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.mini-tag {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    font-weight: 700;
    color: #f3f6ff;
}
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.input,
.textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    font: inherit;
    color: var(--text);
}
.textarea {
    min-height: 140px;
    resize: vertical;
    grid-column: 1/-1;
}
.textarea textarea{
    height: 140px;
}
label {
    display: grid;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #243147;
}
.note {
    font-size: 13px;
    color: var(--muted);
}
.check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 14px;
}
.check-card {
    background: #f8fbff;
    border: 1px solid var(--line);
    padding: 16px;
    border-radius: 16px;
}
.check-card strong {
    display: block;
    margin-bottom: 6px;
}
.grid-3 .card,.grid-2 .card{
  background-color: #fff;
    box-shadow: 0 4px 17px 0 rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}
.dark-bg{
    background-color: #001529;
    padding-top: 83px;
}
.dark-bg *,.dark-bg .section-head-center p{
    color: #fff;
}
.dark-bg .section-head-center{
    max-width: 843px;
    margin:0 auto;
    padding-bottom: 47px;
}
.dark-bg figure{
  max-width: 1000px;
  margin: 0 auto;
}
.dark-bg figure img{
     object-fit: contain;
     border-radius: 24px 24px 0 0;
}
.dark-section {
    background: linear-gradient(180deg, #081327, #102448);
    color: #fff;
}
.dark-section h3{
    color: #fff;
}
.dark-section .section-head p,
.dark-section .card p,
.dark-section p.muted {
    color: rgba(255, 255, 255, 0.74);
}
.dark-section .card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}
.dark-section .icon {
    color: #fff;
}
.hero-card ul {
    margin: 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}
hr.sep {
    border: none;
    border-top: 1px solid var(--line);
    margin: 34px 0;
}
footer ul{
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero-card img{
  object-fit: cover;
}
/* FOOTER */
.footer {
  padding: 0 0 30px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 16px;
  color: #2c4161;
  margin-bottom: 24px;
  max-width: 346px;
  line-height: 25px;
  font-weight: 500;
}

.app-badges {
  display: flex;
  gap: 10px;
}

@media (max-width: 480px) {
  .app-badges {
    flex-direction: column;
    align-items: flex-start;
  }
}

.app-badge i {
  font-size: 14px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 500;
  color: #2c4161;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  opacity: 0.6;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  font-size: 16px;
  color: #2c4161;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}

.footer-links-list a:hover {
  color: #1890FF;
}
.section-hero {
  background-color: #f7f7f7;
}
.contact-item {
  display: flex;
  gap: 12px;
  font-size: 16px;
  color: #2c4161;
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: 500;
}
.contact-item a{
      color: #2c4161;
      transition: 0.25s ease;
}

.contact-item i {
  color: #909baa;
  margin-top: 3px;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 17px;
  margin-top: 27px;
}

.social-links a {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 14px;
}
.social-links a img {
  width: 100%;
  object-fit: contain;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #e3e3e3;
  font-size: 14px;
  color: #2c4161;
  font-weight: 500;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-bottom-links,.footer-bottom-links ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom-links a {
  color: #2c4161;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #2c4161;
}
.contact-item img{
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-top: 3px;
}
.logo-icon img{
  max-width: 190px;
  width: 100%;
  object-fit: contain;
}
.btn-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.btn-white{
   font-size: 19px;
   letter-spacing: -1%;
   font-weight: 600;
   line-height: normal;
   padding: 13px 26px;
   color: #001529;
   background-color: #fff;
   border-radius: 10px;
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   border: 1px solid #fff;
}
.btn-white:hover{
  background-color: transparent;
  color: #fff;
  border-color: #979797;
}
.btn-outline{
   font-size: 19px;
   letter-spacing: -1%;
   font-weight: 600;
   line-height: normal;
   padding: 13px 26px;
   color: #fff;
      border-radius: 10px;
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   border: 1px solid #979797;
}
.btn-outline:hover{
   background-color: #fff;
   border-color: #fff;
      color: #001529;
}
.banner-text{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}
.banner-text h1{
  padding: 0;
  margin: 0;
  font-weight: 300;
  font-size: 59px;
  line-height: 70px;
  letter-spacing: -2%;
}
.banner-text p{
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: -1%;
}
.banner-wrapper{
  max-width: 987px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 227px 20px 128px;
  z-index: 1;
}
.hero-banner figure{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hero-banner figure img{
  width: 100%;
  object-fit: cover;
  object-position: top;
}
figure{
  margin: 0;
  padding: 0;
  display: flex;
}
.hero-banner .container{
  display: initial;
  padding: 0;
}
.hero-banner::before{
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.section-head-center{
  flex-direction: column;
  text-align: center;
}
.section-head-center p{
  max-width: 903px;
}

.content-area{
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 556px;
    padding-right:20px;
}
.content-area ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.content-area ul li{
    position: relative;
    padding-left: 30px;
}
.content-area ul li::before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background: url(../images/check-bllue.svg) no-repeat;
    background-size: contain;
}
.content-area h2{
    padding: 0;
    margin: 0;
    color: #001529;
    font-size: 42px;
    line-height: 49px;
}
.cross-grid{
    display: flex;
    gap: 70px;
    align-items: center;
}
.cross-grid figure,.content-grid{
    max-width: 50%;
    width: 100%;
}
.cross-grid figure img{
    width: 100%;
    object-fit: cover;
}
.cross-row .cross-grid:nth-child(even){
    flex-direction: row-reverse;
}
.cross-row .cross-grid:nth-child(even) .content-area{
        padding-left: 20px;
        padding-right: 0;
        margin-left: auto;
}
.cross-row{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.light-bg{
    background-color: #F6F8FB;
}

.logo-icon{
    margin-bottom: 20px;
}
.content-area{
    padding-top: 40px;
    padding-bottom: 40px;
}
.nav-links{
    display: flex;
    align-items: center;
    gap: 24px;
    flex-grow: 1;
    justify-content: flex-end;
}
.nav-links ul,.menu-header-menu-container{
    flex-grow: 1;
  justify-content: center;
}
.current_page_item a{
    color: #1890FF;
}
.nav-links .nav-cta a:hover{
    color: #0f172a;
}
.nav-links .nav-cta a.btn-primary:hover{
    color: #fff;
}
.table-responsive{
    width: 100%;
    overflow-x: auto;
}
.sub-page-banner.hero-banner::before{
    background: rgba(0,0,0,0.7);
}
.sub-page-banner .container{
    display: flex;
}
.banner-img {
    position: relative;
  max-width: 500px;
  width: 100%;
}
.banner-img img{
    height: 100%;
  object-fit: cover;
  object-position: left;
  position: absolute;
  left: 0;
  overflow: visible;
}
.sub-page-banner .banner-wrapper{
    padding: 74px 0;
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    gap: 5%;

}
.sub-page-banner .btn-row{
    justify-content: flex-start;
    margin-right: auto;
}
.sub-page-banner .banner-text{
    padding-top: 70px;
    padding-bottom: 70px;
        max-width: 630px;
    width: 100%;
    text-align: left;
}
.check-card{
      background: #001529;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 16px;
  color: #ffffff;
}
.check-card .note{
    line-height: normal;
    color: #fff;
}
.dark-bg .section-head p{
    color: #fff;
}
.dark-bg-icon .icon{
    color: #1890FF;
    font-size: 40px;
    line-height: normal;
    font-weight: 300;
    margin-bottom:20px;
}
.sub-page-banner figure img{
    object-position: center;
}
.common-banner-text{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.common-banner .container{
    display: flex;
    text-align: center;
  justify-content: center;
}
.common-wrapper {
    color: #1e293b;
    line-height: 1.8;
    font-size: 16px;
}

/* Headings */
.common-wrapper h1,
.common-wrapper h2,
.common-wrapper h3,
.common-wrapper h4,
.common-wrapper h5,
.common-wrapper h6 {
    font-weight: 700;
    color: #0f172a;
    margin-top: 24px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.common-wrapper h1 { font-size: 36px; }
.common-wrapper h2 { font-size: 30px; }
.common-wrapper h3 { font-size: 24px; }
.common-wrapper h4 { font-size: 20px; }
.common-wrapper h5 { font-size: 18px; }
.common-wrapper h6 { font-size: 16px; }

/* Paragraph */
.common-wrapper p {
    margin-bottom: 16px;
    color: #475569;
}

/* Links */
.common-wrapper a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.common-wrapper a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Lists */
.common-wrapper ul,
.common-wrapper ol {
    margin: 16px 0;
    padding-left: 20px;
}

.common-wrapper ul li {
    list-style: disc;
    margin-bottom: 8px;
}

.common-wrapper ol li {
    list-style: decimal;
    margin-bottom: 8px;
}

/* Nested lists */
.common-wrapper ul ul,
.common-wrapper ol ol {
    margin-top: 8px;
}

/* Optional: blockquote */
.common-wrapper blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 16px;
    color: #475569;
    font-style: italic;
    margin: 20px 0;
}
.contact-item a:hover,.footer-bottom-links a:hover{
    color: #1890FF;
}
.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* HEADING */
.contact-container h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-container p {
  margin-bottom: 40px;
  font-size: 15px;
}

/* FLEX WRAPPER */
.contact-items {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD (CLICKABLE) */
.contact-card {
  background: #001529;
  padding: 20px 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 260px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  text-align: left;
}

/* HOVER EFFECT */
.contact-card:hover {
  background: #03345f;

}

/* ICON CIRCLE */
.icon-new {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* SVG ICON */
.icon-new svg {
  width: 22px;
  height: 22px;
  fill: #001529;
}

/* TEXT */
.text h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.text span {
  font-size: 14px;
  color: #e2e8f0;
}

/* ACCESSIBILITY (KEYBOARD FOCUS) */
.contact-card:focus {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
.p-0{
    padding: 0;
}
.common-wrapper{
    padding-bottom: 20px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #000000;
  border-radius: 10px;
  padding: 10px 18px;
  text-decoration: none;
  min-width: 155px;
  border: 1.5px solid #d1d5db;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
 
.store-btn__text {
  line-height: 1.2;
}
 
.store-btn__label {
  font-size: 10px;
  color: #6b7280;
  letter-spacing: 0.03em;
    white-space: nowrap;
}
 
.store-btn__name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111827;
  white-space: nowrap;
}
.store-btn svg{
    width: 22px;
    height: 22px;
}
.play svg{
    width: 17px;
}
.pt-20{
    padding-top: 20px;
}