  /* <style> */


    :root{
      --brand:#2d89ef;        /* Primary */
      --brand-2:#0a58ca;      /* Primary (dark) */
      --ink:#111827;          /* Text */
      --muted:#6b7280;        /* Muted text */
      --bg:#ffffff;           /* Page bg */
      --panel:#f7fafc;        /* Section bg */
      --ring:0 0 0 4px rgba(45,137,239,.25);
      --radius:16px;
    }
    *{box-sizing:border-box} html{scroll-behavior:smooth}
    body{margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--ink);background:var(--bg);line-height:1.65}
    .container{width:92%;max-width:1140px;margin:0 auto}
    a{text-decoration:none;color:inherit}

    /* Header */
    header{position:sticky;top:0;z-index:1000;background:#fff;border-bottom:1px solid #eef2f7}
    .nav-row{display:grid;grid-template-columns:auto 1fr auto;gap:16px;align-items:center;padding:12px 0}
    .logo{display:flex;align-items:center;gap:10px;font-weight:800;color:var(--brand);letter-spacing:.2px}
    .logo i{font-size:20px}
    nav ul{list-style:none;display:flex;gap:22px;justify-content:center;margin:0}
    nav a{color:#334155;font-weight:600;opacity:.95}
    nav a:hover, nav a.active{color:var(--brand)}
    .menu-toggle{display:none;font-size:22px;color:var(--brand);cursor:pointer;border:0;background:transparent}

    /* Mobile menu */
    @media (max-width:860px){
      nav ul{display:none}
      nav ul.open{
        display:flex;flex-direction:column;position:absolute;left:0;right:0;top:56px;
        background:#fff;border-bottom:1px solid #eef2f7;padding:14px 20px
      }
      .menu-toggle{display:block}
      .nav-row{grid-template-columns:auto auto 1fr}
    }

    /* Hero */
    #hero{
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      color:#fff;padding:80px 0 64px
    }
    .hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:24px;align-items:center}
    .kicker{letter-spacing:.14em;text-transform:uppercase;opacity:.9;font-weight:800;font-size:12px}
    h1.hero-title{font-size:clamp(28px,4vw,44px);line-height:1.1;margin:10px 0 12px}
    .hero-lede{opacity:.95;max-width:680px}
    .hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}
    .btn{appearance:none;border:0;border-radius:12px;padding:12px 16px;font-weight:800;cursor:pointer}
    .btn.primary{background:#fff;color:var(--brand)}
    .btn.ghost{background:transparent;border:1px solid rgba(255,255,255,.6);color:#fff}
    .btn:focus{outline:none;box-shadow:var(--ring)}
    .hero-art{display:grid;place-items:center}
    .hero-art svg{width:min(480px,95%);height:auto;filter:drop-shadow(0 14px 36px rgba(0,0,0,.18))}

    @media (max-width:900px){
      .hero-grid{grid-template-columns:1fr}
      .hero-art{order:-1}
    }

    /* Section headings */
    h2.section-title{
      text-align:center;color:var(--brand);font-size:clamp(22px,3vw,32px);margin-bottom:10px
    }
    p.section-intro{text-align:center;color:var(--muted);max-width:780px;margin:0 auto 28px}

    /* Features (Why Choose) */
    #why{padding:56px 0;background:#fff}
    .features-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;text-align: center;}
    .card{
      background:#fff;border:1px solid #d7d7d7;border-radius:var(--radius);padding:22px;
      transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease
    }
    .card:hover{transform:translateY(-6px);box-shadow:0 14px 28px rgba(2,8,23,.08);border-color:#dfe7f1}
   
    .card .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    margin-bottom: 12px;
    font-size: 20px;
    margin: auto;
    margin-bottom:20px;
}
    .card h3{margin:4px 0 6px;font-size:18px}
    .card p{color:#475569;font-size:15px}

 .faq-q i{transition:transform .25s ease}
    .faq-item.open .faq-q i{transform:rotate(180deg)}
    .faq-a{max-height:0;overflow:hidden;transition:max-height .4s ease, padding .3s ease;padding:0 16px;background:#fff}
    .faq-a p{color:#475569;padding:12px 0}
    .faq-item.open .faq-a{max-height:280px}

    /* CTA & Footer */
    #cta{padding:48px 0;background:linear-gradient(135deg,var(--brand),var(--brand-2));color:#fff;text-align:center}
    #cta .btn{background:#fff;color:var(--brand)}
    footer a{color:#8be9ff}

/* -------- footer---------- s */

 /* ===== FOOTER ===== */
.footer {
  background:#0b1220;
  color:#cbd5e1;
  padding:50px 0 30px;
  /* margin-top:50px; */
}
.footer-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}
.footer h4 {
  color:#fff;
  font-size:1.1rem;
  margin-bottom:12px;
}
.footer p {
  color:#94a3b8;
  font-size:0.95rem;
  line-height:1.6;
}
.footer ul {
  list-style:none;
  padding:0;
  margin:0;
  line-height:1.9;
}
.footer ul li a {
  color:#cbd5e1;
  text-decoration:none;
  transition:color 0.3s ease;
}
.footer ul li a:hover {
  color:#fff;
}
.social-links {
  display:flex;
  gap:14px;
  font-size:1.2rem;
  margin-top:8px;
}
.social-links a {
  color:#cbd5e1;
  transition:color 0.3s ease;
}
.social-links a:hover {
  color:#fff;
}
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:30px;
  padding-top:20px;
  text-align:center;
  font-size:0.9rem;
  color:#94a3b8;
}

/* -------- footer---------- end */
.allresimg img {
    max-width: 100%;
    width: 224px;
}
#login-title {
    margin: 0px;
}
h1,h2,h3,h4,h5,h6{
  margin:0px;
}

.faq-item span h3 {
    font-size: 18px;
}

    @media (max-width:1024px){.features-grid{grid-template-columns:repeat(2,1fr)}}
    @media (max-width:640px){.features-grid{grid-template-columns:1fr}}

    /* Content sections (Login / Bridge / Suite Web / Start) */
    section.split{padding:25px 0;background:var(--panel);border-top:1px solid #eef2f7}
    .split-grid{display:grid;grid-template-columns:1fr 1fr;gap:26px;align-items:start}
    .split .block{background:#fff;border:1px solid #e9eef5;border-radius:var(--radius);padding:24px}
    .split h3{font-size:30px;margin:0 0 12px ;color:#2d89ef}
    .split h4{font-size:16px;margin:16px 0 8px;color:#0f172a}
    .split ul{margin:8px 0 0 18px;color:#475569}
    .split li{margin:6px 0}
    @media (max-width:980px){.split-grid{grid-template-columns:1fr}}

    /* FAQ */
    #faq{padding:56px 0;background:#fff;border-top:1px solid #eef2f7}
    .faq-wrap{max-width:900px;margin:0 auto}
    .faq-item{border:1px solid #e9eef5;border-radius:14px;background:#fff;margin-bottom:12px;overflow:hidden;box-shadow:0 4px 14px rgba(0,0,0,.04)}
    .faq-q{
      width:100%;text-align:left;border:0;background:#f7fafc;padding:14px 16px;cursor:pointer;
      display:grid;grid-template-columns:1fr auto;align-items:center;font-weight:800;color:var(--brand)
    }

    .split ul {
    margin: 8px 0 0 0px;
    color: #475569;
    padding-left: 20px;
}
.img-fluid{
  width:100%;
  max-width:100%;
}

   
  /* </style> */


 /* <style> */


    .nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Logo left, nav/button right */
  padding: 0.5rem 1rem;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
}

nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #333;
}

.menu-toggle {
  display: none; /* show only on small screens */
  background: none;
  border: none;
  font-size: 1.5rem;
}

/* Responsive: Show toggle on small screens and hide menu */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    position: absolute;
    top: 60px;
    right: 1rem;
    background: #fff;
    padding: 1rem;
    border: 1px solid #ccc;
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

  /* </style> */
.sd {
    font-size: 14px;
    margin-top: 16px;
    background: #17191e;
    text-align: center;
}