@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

/* ─── Reset ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* ─── Tokens ─────────────────────────────────────────── */
:root {
  --navy: #0f2057;
  --blue: #1a47c8;
  --sky: #e8effe;
  --accent: #ff6b2b;
  --accent-light: #fff2ec;
  --text: #1a1a2e;
  --muted: #5c6080;
  --border: #e2e5f0;
  --white: #ffffff;
  --surface: #f7f8fc;
  --success: #0d9b6e;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --max-w: 1100px;
  --pad-x: clamp(20px, 5vw, 64px);
  --btn-primary: #0d4d82;
}

body {
  font-family: 'Segoe UI', 'Poppins', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* ─── Tokens ─────────────────────────────────────────── */
:root {
  --navy: #0f2057;
  --blue: #1a47c8;
  --sky: #e8effe;
  --accent: #ff6b2b;
  --accent-light: #fff2ec;
  --text: #1a1a2e;
  --muted: #5c6080;
  --border: #e2e5f0;
  --white: #ffffff;
  --surface: #f7f8fc;
  --success: #0d9b6e;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --max-w: 1100px;
  --pad-x: clamp(20px, 5vw, 64px);
}

/* ─── Nav ─────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: auto;
  padding: initial;
  height: 90px;
}

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/*=========whataps css start==========*/
.wa-float {
  position: fixed;
  bottom: 85px;
  right: 28px;
  z-index: 990;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .45);
  text-decoration: none;
  transition: transform var(--transition);
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/*=======================*/
/* ─── Footer ──────────────────────────────────────────── */
footer {
  background: #0a1640;
  padding: 28px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

footer p {
  color: rgba(255, 255, 255, .45);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, .45);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .8);
}

/*========banner css start==========*/
/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero-file-bg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(148deg, #f0f5ff 0%, #ffffff 48%, #f8fbff 100%);
  padding: 50px 0 29px;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}

.hero-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, #c7d9fd, transparent 70%);
}

.hero-blob-2 {
  width: 320px;
  height: 320px;
  bottom: -60px;
  left: -40px;
  background: radial-gradient(circle, #bae6fd, transparent 70%);
  opacity: .25;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: 35px;
}

.hero-file-bg h1 {
  animation: fadeUp .8s .1s ease both;
  margin-bottom: 18px;
}

.hero-desc {
  animation: fadeUp .8s .22s ease both;
  font-size: 1.04rem;
  max-width: 500px;
  margin-bottom: 34px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .8s .34s ease both;
}

/* Dashboard visual */
.hero-visual-wrap {
  display: flex;
  justify-content: center;
  animation: fadeIn 1.1s .3s ease both;
}

.file-dashboard {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(26, 95, 206, .15), 0 2px 8px rgba(0, 0, 0, .06);
  padding: 24px;
  width: 100%;
  max-width: 430px;
  animation: float 5.5s ease-in-out infinite;
}

.fd-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}

.fd-dots {
  display: flex;
  gap: 5px;
}

.fd-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.fd-title {
  font-family: var(--fp);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  margin-left: 4px;
}

.file-rows {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.file-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-pale);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  transition: var(--tr);
  cursor: default;
}

.file-row:hover {
  background: var(--blue-soft);
  border-color: var(--blue-border);
  transform: translateX(3px);
}

.file-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.file-info {
  flex: 1;
  min-width: 0;
}

.file-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-meta {
  font-size: 11px;
  color: var(--muted-2);
  margin-top: 2px;
}

.file-status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  flex-shrink: 0;
}

.fs-done {
  background: #d1fae5;
  color: #065f46;
}

.fs-proc {
  background: #fef3c7;
  color: #92400e;
}

.fs-new {
  background: var(--blue-soft);
  color: var(--blue);
}

.fd-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.fd-stat {
  background: var(--bg-gray);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.fd-stat .n {
  font-family: var(--fp);
  font-size: 1.5rem;
  color: var(--blue-mid);
  line-height: 1;
}

.fd-stat .l {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 500;
}

/*==================*/
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(234 61 49);
  border: 1px solid rgb(234 61 49);
  padding: .38rem 1rem;
  border-radius: 100px;
  font-size: .72rem;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: .07em;
  margin-bottom: 1.5rem;
  text-transform: uppercase
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
  flex-shrink: 0
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .3;
    transform: scale(.8)
  }
}

.hero-file-bg h1 {
  animation: fadeUp .8s .1s ease both;
  margin-bottom: 18px;
}

h1 {
  font-family: var(--fp);
  font-weight: 800;
  font-size: 49px;
  line-height: 1.12;
  letter-spacing: -.02em;
}

span.accent {
  color: #0c4168;
}

p {
  margin: 0;
  font-size: 15px;
  color: #64748b;
}

/* CARD */
.floating-dashboard {
  position: relative;
  width: 100%;
  max-width: 700px;
  border-radius: 25px;
  overflow: hidden;
  transform-style: preserve-3d;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  animation: floatCard 5s ease-in-out infinite;
  transition: transform 0.2s ease;
}

/* FLOATING ANIMATION */
@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .8s .34s ease both;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d4d82;
  color: #ffffff;
  padding: .88rem 1.8rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .92rem;
  font-family: var(--fp);
  text-decoration: none;
  transition: all var(--tr);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgb(229 99 97);
  color: #e56361;
  padding: .88rem 1.8rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: .92rem;
  text-decoration: none;
  transition: all var(--tr);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f1f1f1;
  animation: blink 1.4s infinite;
}

/* ===== KEYFRAMES ===== */
@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes grow {
  from {
    transform: scaleX(0)
  }

  to {
    transform: scaleX(1)
  }
}

@keyframes countUp {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

span.section-label {
  background: rgb(234 61 49);
  border: 1px solid rgb(234 61 49);
  padding: 10px 20px;
  border-radius: 40px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/*=============Evenet css start==============*/
/* ---- layout ---- */
.evp-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.evp-sec {
  padding: 72px 0;
}

.evp-sec-w {
  background: var(--evp-white);
}

.evp-sec-g {
  background: #f4f6f9;
}

.evp-sec-d {
  background: #0d1b2e;
}

/* ---- shared text ---- */
.evp-h3 {
  font-family: var(--fp);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: var(--evp-heading);
  line-height: 1.35;
  margin-bottom: 10px;
}

.evp-h3 span {
  color: var(--evp-teal);
}

.evp-p {
  font-family: var(--fp);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 14px;
}

.evp-p:last-child {
  margin-bottom: 0;
}

.evp-lead {
  font-family: var(--fp);
  font-size: 15px;
  color: var(--evp-muted);
  max-width: 660px;
  line-height: 1.85;
}

.evp-lead.center {
  margin: 0 auto;
  text-align: center;
}

/* divider */
.evp-divider {
  height: 1px;
  background: var(--evp-border);
}

/* ---- section header ---- */
.evp-sec-hd {
  margin-bottom: 48px;
}

.evp-sec-hd.center {
  text-align: center;
}

/* ---- tag variants ---- */
.evp-tag-accent {
  background: var(--evp-accent-lt);
  color: var(--evp-accent);
}

.evp-tag-accent::before {
  background: var(--evp-accent);
}

.evp-tag-gold {
  background: var(--evp-gold-lt);
  color: var(--evp-gold);
}

.evp-tag-gold::before {
  background: var(--evp-gold);
}

.evp-tag-purple {
  background: var(--evp-purple-lt);
  color: var(--evp-purple);
}

.evp-tag-purple::before {
  background: var(--evp-purple);
}

.evp-tag-light {
  background: rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
}

.evp-tag-light::before {
  background: var(--evp-teal);
}

/* ============================================================
   SECTION 1 — Intro two-col
============================================================ */
.evp-intro-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 60px;
  align-items: center;
}

.evp-intro-text {}

/* animated stat bar widget */
.evp-stat-widget {
  background: #0d1b2e;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--evp-shadow-lg);
  animation: evp-float 5s ease-in-out infinite;
}

@keyframes evp-float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.evp-w-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.evp-w-dots {
  display: flex;
  gap: 5px;
}

.evp-w-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.evp-w-dots span:nth-child(1) {
  background: #ff5f56
}

.evp-w-dots span:nth-child(2) {
  background: #ffbd2e
}

.evp-w-dots span:nth-child(3) {
  background: #27c93f
}

.evp-w-title {
  font-family: var(--fp);
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
}

.evp-live-dot {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--fp);
  font-size: 11px;
  font-weight: 600;
  color: var(--evp-teal);
}

.evp-live-dot::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--evp-teal);
  animation: evp-blink 1.4s infinite;
}

.evp-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.evp-kpi {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  transition: background 0.3s;
}

.evp-kpi:hover {
  background: rgba(0, 184, 148, 0.1);
  border-color: rgba(0, 184, 148, 0.25);
}

.evp-kpi-n {
  font-family: var(--fp);
  font-size: 22px;
  font-weight: 700;
}

.evp-kpi-l {
  font-family: var(--fp);
  font-size: 10px;
  color: #64748b;
  margin-top: 3px;
  letter-spacing: 0.4px;
}

.evp-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.evp-brow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.evp-blbl {
  font-family: var(--fp);
  font-size: 11px;
  color: #94a3b8;
  width: 96px;
  flex-shrink: 0;
}

.evp-btrack {
  flex: 1;
  height: 7px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.evp-bfill {
  height: 100%;
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: evp-grow 1.6s ease forwards;
  animation-delay: var(--d, 0.2s);
}

@keyframes evp-grow {
  to {
    transform: scaleX(1);
  }
}

.evp-bpct {
  font-family: var(--fp);
  font-size: 11px;
  color: #64748b;
  width: 32px;
  text-align: right;
}

/* ============================================================
   SECTION 2 — Better Planning: text + bullet cards
============================================================ */
.evp-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.evp-bullet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.evp-bullet-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Segoe UI', 'Poppins', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a2e4a;
  transition: all 0.3s;
  cursor: default;
}

.evp-bullet-card:hover {
  border-color: #258ad8;
  background: #258ad812;
  transform: translateY(-2px);
  box-shadow: var(--evp-shadow);
}

.evp-bullet-card::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #149abe;
  flex-shrink: 0;
}

.evp-callout {
  background: var(--evp-teal-lt);
  border-left: 4px solid var(--evp-teal);
  border-radius: 0 var(--evp-radius-sm) var(--evp-radius-sm) 0;
  padding: 16px 20px;
  margin-top: 20px;
}

.evp-callout p {
  font-family: var(--fp);
  font-size: 15px;
  font-weight: 500;
  color: var(--evp-heading);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   SECTION 3 — Features: H3 cards grid
============================================================ */
.evp-feat-intro {
  margin-bottom: 40px;
}

.evp-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.evp-feat-card {
  background: var(--evp-white);
  border: 1px solid var(--evp-border);
  border-radius: var(--evp-radius);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(.23, 1, .32, 1);
  cursor: default;
}

.evp-feat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #237cbe;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s;
}

.evp-feat-card:hover {
  border-color: #237cbe;
  box-shadow: var(--evp-shadow-lg);
  transform: translateY(-5px);
}

.evp-feat-card:hover::before {
  transform: scaleY(1);
}

.evp-feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.evp-feat-card h3 {
  font-family: var(--fp);
  font-size: 14px;
  font-weight: 600;
  color: var(--evp-heading);
  margin-bottom: 10px;
  line-height: 1.4;
}

.evp-feat-card p {
  font-family: var(--fp);
  font-size: 15px;
  color: var(--evp-muted);
  line-height: 1.75;
}

.evp-mini-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 10px 0;
}

.evp-mini-list li {
  font-family: var(--fp);
  font-size: 13.5px;
  color: var(--evp-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.evp-mini-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #237cbe;
  flex-shrink: 0;
}

/* ============================================================
   SECTION 4 — Corporate Events: dark bg + support grid
============================================================ */
.evp-corp-text .evp-h2 {
  color: #ffffff;
}

.evp-corp-text .evp-p {
  color: #94a3b8;
}

.evp-corp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.evp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px 16px;
  font-family: var(--fp);
  font-size: 13px;
  font-weight: 500;
  color: #e2e8f0;
  transition: all 0.3s;
}

.evp-pill:hover {
  background: rgba(0, 184, 148, 0.15);
  border-color: rgba(0, 184, 148, 0.35);
  color: #fff;
  transform: translateY(-2px);
}

.evp-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--evp-teal);
}


/* ============================================================
   SECTION 5 — Benefits: 3x2 cards
============================================================ */
.evp-ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.evp-ben-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.35s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.evp-ben-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: #2d7bb5;
  transition: width 0.4s;
}

.evp-ben-card:hover {
  box-shadow: var(--evp-shadow-lg);
  border-color: var(--evp-teal-md);
  transform: translateY(-6px);
}

.evp-ben-card:hover::after {
  width: 100%;
}

.evp-ben-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.evp-ben-card h3 {
  font-family: var(--fp);
  font-size: 15px;
  font-weight: 600;
  color: var(--evp-heading);
  margin-bottom: 8px;
}

.evp-ben-card p {
  font-family: var(--fp);
  font-size: 15px;
  line-height: 1.75;
}

/* ============================================================
   SECTION 6 — Industries: 3 industry cards
============================================================ */
.evp-ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.evp-ind-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.35s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.evp-ind-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3d8ac5, #0a6ebd);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s;
}

.evp-ind-card:hover {
  border-color: #b2ede3;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.11);
  transform: translateY(-5px);
}

.evp-ind-card:hover::before {
  transform: scaleX(1);
}

.evp-ind-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.evp-ind-card h3 {
  font-family: var(--fp);
  font-size: 15px;
  font-weight: 600;
  color: var(--evp-heading);
  margin-bottom: 10px;
}

.evp-ind-card p {
  font-family: var(--fp);
  font-size: 15px;
  color: var(--evp-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ============================================================
   SECTION 7 — How it Works: 4 steps
============================================================ */
.evp-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.evp-steps-line {
  position: absolute;
  top: 38px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, #00b894, #0a6ebd);
  opacity: 0.18;
  z-index: 0;
}

.evp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: evp-fadeup 0.6s ease forwards;
}

.evp-step:nth-child(1) {
  animation-delay: .1s
}

.evp-step:nth-child(2) {
  animation-delay: .2s
}

.evp-step:nth-child(3) {
  animation-delay: .3s
}

.evp-step:nth-child(4) {
  animation-delay: .4s
}

@keyframes evp-fadeup {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.evp-step-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--evp-white);
  border: 2px solid #178aa5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 0 0 6px var(--evp-teal-lt);
  transition: all 0.3s;
}

.evp-step:hover .evp-step-circle {
  background: #2e89cd;
  box-shadow: 0 0 0 10px var(--evp-teal-lt);
}

.evp-step-num {
  font-family: var(--fp);
  font-size: 11px;
  font-weight: 700;
  color: #2372ac;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.evp-step h3 {
  font-family: var(--fp);
  font-size: 14px;
  font-weight: 600;
  color: var(--evp-heading);
  margin-bottom: 8px;
}

.evp-step p {
  font-family: var(--fp);
  font-size: 13.5px;
  color: var(--evp-muted);
  line-height: 1.65;
}

/* ============================================================
   SECTION 8 — Integrations: chip grid
============================================================ */
.evp-integ-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.evp-integ-chip {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  cursor: default;
}

.evp-integ-chip:hover {
  border-color: #00b894;
  background: #e6f9f5;
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.evp-integ-chip-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.evp-integ-chip-lbl {
  font-family: var(--fp);
  font-size: 14px;
  font-weight: 500;
  color: var(--evp-heading);
}

/* ============================================================
   SECTION 9 — Cloud + Role-based: two-col
============================================================ */
.evp-cloud-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.evp-role-card {
  background: #f4f6f9;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 24px;
  margin-top: 28px;
  transition: all 0.3s;
}

.evp-role-card:hover {
  border-color: #248fe1;
  box-shadow: var(--evp-shadow);
}

.evp-role-card h3 {
  font-family: var(--fp);
  font-size: 15px;
  font-weight: 600;
  color: var(--evp-heading);
  margin-bottom: 10px;
}

/* why move card (right) */
.evp-why-card {
  background: #0d1b2e;
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.11);
}

.evp-why-card .evp-h2 {
  color: #fff;
  margin-bottom: 14px;
}

.evp-why-card p {
  font-family: var(--fp);
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.85;
  margin-bottom: 14px;
}

.evp-why-card p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   CTA Strip
============================================================ */
.evp-cta {
  background: linear-gradient(135deg, #0e4c7f 0%, #0a6ebd 100%);
  padding: 60px 24px;
}

.evp-cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.evp-cta h2 {
  font-family: var(--fp);
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.evp-cta p {
  font-family: var(--fp);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.evp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #115486;
  font-family: var(--fp);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.evp-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 960px) {

  .evp-intro-grid,
  .evp-plan-grid,
  .evp-corp-grid,
  .evp-cloud-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .evp-feat-grid,
  .evp-ben-grid,
  .evp-ind-grid {
    grid-template-columns: 1fr 1fr;
  }

  .evp-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .evp-steps-line {
    display: none;
  }

  .evp-integ-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .evp-kpi-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 580px) {
  .evp-sec {
    padding: 52px 0;
  }

  .evp-feat-grid,
  .evp-ben-grid,
  .evp-ind-grid {
    grid-template-columns: 1fr;
  }

  .evp-steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .evp-bullet-grid {
    grid-template-columns: 1fr;
  }

  .evp-integ-grid {
    grid-template-columns: 1fr 1fr;
  }

  .evp-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .evp-bar-chart {
    height: 90px;
  }
}

.wnum-add {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: #e8f0fe;
  border: 1.5px solid #1a6ef540;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fp);
  font-size: 13px;
  color: #1a6ef5;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--tr);
}

.wstep-add {
  display: flex;
  gap: 15px;
  padding: 5px 0;
  border-bottom: unset;
}

.wstep-add:hover .wnum-add {
  background: #1a6ef5;
  color: #fff;
  transform: scale(1.08);
}

/* =============================================
   FAQ
============================================= */
.faq-wrap {
  margin: 0 auto
}

.faq-item {
  background: #fff;
  border: 1px solid var(--g1);
  border-radius: var(--r);
  margin-bottom: .65rem;
  overflow: hidden;
  transition: all var(--tr)
}

.faq-item:hover {
  box-shadow: var(--sh)
}

.faq-item.open {
  border-color: rgba(0, 184, 224, .3);
  box-shadow: 0 4px 20px rgba(0, 184, 224, .08)
}

.faq-btn {
  width: 100%;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--fp);
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  text-align: left;
  transition: color var(--tr)
}

.faq-btn i {
  font-size: 1rem;
  color: var(--g2);
  transition: transform var(--tr);
  flex-shrink: 0
}

.faq-item.open .faq-btn {
  color: var(--navy3)
}

.faq-item.open .faq-btn i {
  transform: rotate(180deg);
  color: var(--cyan2)
}

.faq-body {
  display: none;
  padding: 0 1.4rem 1.1rem;
  font-size: .86rem;
  color: var(--textm);
  line-height: 1.75;
  border-top: 1px solid var(--g1)
}

.faq-item.open .faq-body {
  display: block
}

/* ── FAQ ── */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #CBD5E1;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.open {
  border-color: #0c5c9d;
  box-shadow: 0 4px 20px rgba(37, 99, 235, .1);
}

.faq-q {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  user-select: none;
}

.faq-q:hover {
  font-family: var(--fp);
}

.faq-q-text {
  font-family: var(--fp);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-toggle {
  background: var(--navy);
  transform: rotate(45deg);
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
}

.faq-item.open .faq-toggle svg path {
  stroke: white;
}

.faq-a {
  display: none;
  padding: 0 24px 20px;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-a p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

#faq {
  background-color: #f8fafb;
}

.fc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(234 61 49);
  border: 1px solid rgb(234 61 49);
  padding: .38rem 1rem;
  border-radius: 100px;
  font-size: .72rem;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: .07em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

section {
  padding: 72px 0;
}

h2 {
  font-family: var(--fp);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.18;
  letter-spacing: -.015em;
}

.section-desc {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

.nav-logo img {
  width: 80%;
}

.evp-callout {
  background: #e6f9f5;
  border-left: 4px solid #00b894;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-top: 20px;
}

.evp-callout p {
  font-family: var(--fp);
  font-size: 15px;
  font-weight: 500;
  color: var(--evp-heading);
  line-height: 1.7;
  margin: 0;
}

.small-graph-eve {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  margin-top: 24px;
}

.long-eve {
  flex: 1;
  text-align: center;
  padding: 9px 12px;
  border-radius: 8px;
  background: #fde8f2;
  border: 1px solid #f9c5dd;
  font-family: var(--fp);
  font-size: 12px;
  font-weight: 600;
  color: #e84393;
}

.long-eve-green {
  flex: 1;
  text-align: center;
  padding: 9px 12px;
  border-radius: 8px;
  background: #e6f9f5;
  border: 1px solid #b2ede3;
  font-family: 'Segoe UI', 'Poppins', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #00b894;
}

.evp-feat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(.23, 1, .32, 1);
  cursor: default;
}

.evp-feat-card:hover {
  border-color: #237cbe;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.11);
  transform: translateY(-5px);
}

.eve-grid-add {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.lead-graph {
  background: #f4f6f9;
  border-radius: 8px;
  padding: 20px;
}

.evp-ben-card:hover {
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.11);
  border-color: #b2ede3;
  transform: translateY(-6px);
}

.sec-head {
  text-align: center;
  margin-bottom: 64px;
}

.cll-btn {
  background-color: transparent;
  border: 1px solid #0c4168;
  color: #0c4168;
  font-weight: 500;
  font-family: 'Segoe UI', 'Poppins', Arial, sans-serif;
}

.mail-btn {
  background-color: #ea3d31;
  border: 1px solid #ea3d31;
  font-weight: 500;
  font-family: 'Segoe UI', 'Poppins', Arial, sans-serif;
}
/*==========popup css start=============*/
/* ────────────────────────────────────────
   POPUP OVERLAY
──────────────────────────────────────── */
.mlai-pop-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 38, 0.70);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.mlai-pop-overlay.mlai-open {
  display: flex;
}

/* ── Box ── */
.mlai-pop-box {
  background: #ffffff;
  border-radius: 22px;
  width: 100%;
  max-width: 560px;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(8,18,60,0.28);
  animation: mlaiPopIn 0.22s cubic-bezier(.34,1.3,.64,1) both;
}
@keyframes mlaiPopIn {
  from { opacity: 0; transform: scale(0.93) translateY(18px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

/* ── Header strip ── */
.mlai-pop-header {
  background: linear-gradient(135deg, #0F2D5A 0%, #183E74 60%, #1D9E75 130%);
  padding: 30px 32px 24px;
  position: relative;
}
.mlai-pop-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1D9E75, #5DCAA5, transparent);
}
.mlai-pop-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.mlai-pop-brand-dot {
  width: 6px; height: 6px;
  background: #5DCAA5;
  border-radius: 50%;
}
.mlai-pop-header h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.mlai-pop-header p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ── Close button ── */
.mlai-pop-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.18s, transform 0.15s;
  line-height: 1;
  font-family: sans-serif;
}
.mlai-pop-close:hover {
  background: rgba(255,255,255,0.22);
  transform: scale(1.08);
}

/* ── Form body ── */
.mlai-pop-body {
  padding: 26px 32px 30px;
}

/* ── Field label ── */
.mlai-field-label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #6B7A99;
  margin-bottom: 5px;
}

/* ── Input base ── */
.mlai-inp {
  width: 100%;
  height: 46px;
  background: #F7F9FC;
  border: 1.5px solid #E2E8F4;
  border-radius: 10px;
  padding: 0 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #1A2340;
  outline: none;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.mlai-inp::placeholder { color: #A8B4CC; }
.mlai-inp:focus {
  border-color: #1D9E75;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(29,158,117,0.12);
}
.mlai-inp.mlai-error {
  border-color: #D85A30;
  box-shadow: 0 0 0 3px rgba(216,90,48,0.10);
}

/* ── Grid rows ── */
.mlai-pop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.mlai-pop-field { display: flex; flex-direction: column; }

/* ── Captcha row ── */
.mlai-cap-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.mlai-cap-display {
  height: 46px;
  background: linear-gradient(135deg, #E1F5EE, #B5D4F4);
  border: 1.5px solid #9FE1CB;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #0F6E56;
  letter-spacing: 7px;
  user-select: none;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.mlai-cap-display::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 3px,
    rgba(29,158,117,0.06) 3px, rgba(29,158,117,0.06) 6px
  );
}

/* ── Submit button ── */
.mlai-pop-submit {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #0F2D5A, #183E74);
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(15,45,90,0.25);
}
.mlai-pop-submit:hover {
  background: linear-gradient(135deg, #1D9E75, #0F6E56);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29,158,117,0.35);
}
.mlai-pop-submit:active {
  transform: translateY(0);
}
.mlai-pop-submit svg { width: 16px; height: 16px; }

/* ── Trust note ── */
.mlai-pop-trust {
  text-align: center;
  margin-top: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #A8B4CC;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.mlai-pop-trust svg { width: 13px; height: 13px; color: #1D9E75; }

/* ── Success state ── */
.mlai-pop-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  text-align: center;
}
.mlai-pop-success.mlai-visible { display: flex; }
.mlai-success-icon {
  width: 64px; height: 64px;
  background: #E1F5EE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.mlai-success-icon svg { width: 32px; height: 32px; color: #1D9E75; }
.mlai-pop-success h4 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #0F2D5A;
  margin-bottom: 10px;
}
.mlai-pop-success p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #6B7A99;
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 540px) {
  .mlai-pop-grid, .mlai-cap-row {
    grid-template-columns: 1fr;
  }
  .mlai-pop-header { padding: 26px 22px 20px; }
  .mlai-pop-body { padding: 22px 22px 26px; }
  .mlai-pop-header h3 { font-size: 19px; }
  .nav-links{display: none;}
  .mail-btn{display: none;}
}
@media (max-width: 380px) {
  .mlai-pop-header { padding: 22px 16px 18px; }
  .mlai-pop-body { padding: 18px 16px 22px; }
}


.demo-note {
  background: #fff;
  border: 1.5px solid #E2E8F4;
  border-radius: 14px;
  padding: 20px 28px;
  max-width: 500px;
  width: 100%;
  font-size: 13.5px;
  color: #6B7A99;
  line-height: 1.7;
}
.demo-note strong { color: #0F2D5A; font-weight: 700; }
.demo-note code {
  background: #F0F4FA;
  border: 1px solid #E2E8F4;
  border-radius: 5px;
  padding: 1px 7px;
  font-size: 12px;
  color: #1D9E75;
  font-family: monospace;
}
.demo-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* CTA button style (example) */
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0F2D5A, #183E74);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(15,45,90,0.22);
  transition: background 0.2s, transform 0.15s;
}
.cta-btn-primary:hover {
  background: linear-gradient(135deg, #1D9E75, #0F6E56);
  transform: translateY(-2px);
}
.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #0F2D5A;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 50px;
  border: 2px solid #0F2D5A;
  cursor: pointer;
  transition: all 0.2s;
}
.cta-btn-outline:hover {
  background: #0F2D5A;
  color: #fff;
}