
    :root{
      --brand:#f1592a; /* sky-500 */
      --brand-600:#f1592a; /* sky-600 */
      --ink:#0f172a; /* slate-900 */
      --muted:#64748b; /* slate-500 */
      --bg:#f8fafc; /* slate-50 */
      --card:#ffffff;
      --ring: rgba(14,165,233,.35);
      --success:#16a34a;
      --warning:#f1592a;
      --danger:#ef4444;
      --radius: 18px;
      --shadow: 0 10px 25px rgba(2,8,23,.08);
    }
    .color{
        color: #f1592a;
    }
    /* Hamburger - always hidden on desktop */
.hamburger {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  align-items: center;
  justify-content: center;
}

/* Menu - desktop view */
.menu {
  display: flex;
  gap: 22px;
  align-items: center;
}

/* Mobile view */
@media (max-width: 860px) {
  .hamburger {
    display: flex;
  }

  /* Menu hidden initially */
  .menu {
    position: fixed;
    top: 70px; /* adjust if header height changes */
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid #e5e7eb;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  /* Show menu when checkbox is checked */
  #nav-toggle:checked ~ .menu {
    transform: translateY(0);
  }

  /* Center menu links */
  .menu a {
    text-align: center;
    padding: 0.5rem 0;
    font-weight: 600;
    color: #0f172a;
    opacity: 0.85;
  }

  .menu a:hover {
    color: var(--brand);
  }
}


    .hero {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* center vertically */
  min-height: 100vh;       /* full viewport height */
  text-align: center;      /* center all text */
  padding: 0 15px;
  box-sizing: border-box;
  max-width: 50%;
  margin: auto;
}

.hero-inner {
  max-width: 800px;        /* optional, limits content width */
}

.hero-actions {
  display: flex;
  justify-content: center;  /* center buttons */
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  justify-items: center;    /* center each stat card */
  margin-top: 1.5rem;
}

/* Optional: responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }

  .hero-stats {
    grid-template-columns: 1fr; /* stack stats vertically */
  }
}

    .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo img {
  max-height: 100px;
}

/* Hamburger menu */
.hamburger {
  display: none;
  cursor: pointer;
}

.menu {
  display: flex;
  gap: 1rem;
}

.menu a {
  text-decoration: none;
  padding: 0.5rem 1rem;
}

.cta {
  background: #1f2937;
  color: white;
  border-radius: 0.5rem;
}

/* Hero section - CENTERED for desktop and mobile */
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;   /* center horizontally */
  text-align: center;    /* center all text */
  padding: 2rem 0;
}

.hero-content {
  width: 100%;
  max-width: 800px; /* optional: limit width for readability */
}

.eyebrow {
  font-size: 0.9rem;
  color: #6b7280;
}

h1 {
  font-size: 2rem;
  margin: 0.5rem 0 1rem;
}

.brand {
  color: #f59e0b;
}

.lead {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center; /* center buttons */
  margin-bottom: 1.5rem;
}

/* Hero stats - centered */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 1.5rem;
  justify-items: center; /* center items inside grid */
}

.hero-card.stat {
  padding: 1rem;
  background: #f9fafb;
  border-radius: 1rem;
  text-align: center;
}

.chip {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  background: #d1fae5;
  color: #065f46;
  margin-bottom: 0.3rem;
}

.chip.support {
  background: #fee2e2;
  color: #991b1b;
}

.muted {
  display: block;
  color: #6b7280;
  margin-top: 0.2rem;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    gap: 0;
    margin-top: 1rem;
  }

  #nav-toggle:checked + .menu {
    display: flex;
  }

  .menu a {
    padding: 0.5rem 0;
    text-align: center;
  }

  /* Hero stats become single column */
  .hero-stats {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.5rem;
  }
}


    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{margin:0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji"; color:var(--ink); background:var(--bg)}
    a{color:inherit; text-decoration:none}
    img{max-width:100%; display:block}
    #asif{
      border-radius: 10px;
      max-width: 320px;
    }

    /* Layout */
    .container{width:min(1100px, 92%); margin-inline:auto}
    .grid{display:grid; gap:24px}

    /* Header */
    header{position:sticky; top:0; z-index:50; background:#fff; box-shadow:0 1px 0 rgba(2,8,23,.06)}
    .nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
    .logo{display:flex; align-items:center; gap:10px; font-weight:800}
    .logo-badge{width:34px; height:34px; border-radius:10px; background:linear-gradient(135deg,var(--brand),#60a5fa); display:grid; place-items:center; color:#fff; font-weight:900}
    .logo span{letter-spacing:.3px}

    /* Mobile nav toggle */
    #nav-toggle{display:none}
    .menu{display:flex; gap:22px; align-items:center}
    .menu a{font-weight:600; color:#0f172a; opacity:.85}
    .menu a:hover{color:var(--brand)}
    .cta{padding:10px 16px; border-radius:999px; background:var(--brand); color:#fff; font-weight:700; box-shadow:var(--shadow)}
    .cta:hover{background:var(--brand-600)}

    .hamburger{display:none; width:40px; height:40px; border-radius:10px; border:1px solid #e5e7eb; align-items:center; justify-content:center}

    @media (max-width: 860px){
      .hamburger{display:flex}
      .menu{position:fixed; inset:70px 0 auto 0; background:#fff; flex-direction:column; padding:20px; gap:16px; border-bottom:1px solid #e5e7eb; transform:translateY(-120%); transition:.3s ease}
      #nav-toggle:checked ~ .menu{transform:translateY(0)}
    }

    /* Basic container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .section-head h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  /* Grid layout */
  .grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 2rem;
    align-items: start;
  }

  /* Left content */
  .content p {
    margin-bottom: 1rem;
  }

  .muted {
    color: #6b7280; /* gray */
  }

  .pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .pill {
    background: #e5e7eb; /* light gray */
    padding: 0.3rem 0.7rem;
    border-radius: 9999px;
    font-size: 0.9rem;
  }

  /* Aside card */
  .hero-card {
    background: #f9fafb; /* very light gray */
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .hero-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }

  .hero-card ul {
    margin: 0;
    padding-left: 1.2rem;
    list-style-type: disc;
  }

  /* MOBILE RESPONSIVE */
  @media (max-width: 768px) {
    .grid {
      grid-template-columns: 1fr;
      text-align: center; /* center all text */
    }

    .content, .hero-card {
      text-align: center;
    }

    .pills {
      justify-content: center;
    }

    .hero-card ul {
      padding-left: 0;
      display: inline-block; /* keep bullets */
      text-align: left; /* list remains left-aligned */
    }
  }

    /* Hero */
    .hero{padding:64px 0}
    .hero-inner{display:grid; grid-template-columns: 1.2fr 1fr; gap:36px; align-items:center}
    .eyebrow{display:inline-block; padding:6px 12px; border-radius:999px; background:#e0f2fe; color:#075985; font-weight:700; margin-bottom:12px}
    h1{font-size:clamp(28px, 4vw, 48px); line-height:1.05; margin:0 0 12px}
    .lead{color:var(--muted); font-size:clamp(16px, 2vw, 18px)}
    .hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
    .btn{padding:12px 18px; border-radius:12px; font-weight:700; border:1px solid transparent; display:inline-flex; align-items:center; gap:10px}
    .btn-primary{background:var(--brand); color:#fff}
    .btn-primary:hover{background:var(--brand-600)}
    .btn-ghost{border-color:#e5e7eb; background:#fff}
    .btn-ghost:hover{border-color:#cbd5e1}

    .hero-card{background:var(--card); border-radius:var(--radius); box-shadow:var(--shadow); padding:22px}
    .stat{display:flex; align-items:center; gap:14px}
    .stat b{font-size:22px}
    .chip{font-size:12px; color:#065f46; background:#d1fae5; padding:4px 8px; border-radius:999px; font-weight:700}

    @media (max-width: 860px){
      .hero-inner{grid-template-columns:1fr}
    }

    /* Sections */
    section{padding:56px 0}
    .section-head{display:flex; justify-content:space-between; align-items:end; gap:12px; margin-bottom:24px}
    .section-head h2{margin:0; font-size:clamp(22px,3vw,34px)}
    .section-head p{margin:0; color:var(--muted)}

    /* Cards */
    .cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:20px}
    .card{background:var(--card); border-radius:var(--radius); padding:18px; box-shadow:var(--shadow); border:1px solid #eef2f7}
    .card h3{margin:6px 0 8px}
    .card p{margin:0; color:var(--muted)}
    .icon{width:42px; height:42px; border-radius:12px; display:grid; place-items:center; background:#eff6ff}
    .badge{display:inline-block; font-size:12px; background:#f1f5f9; padding:4px 8px; border-radius:999px; margin-right:6px}

    @media (max-width: 980px){
      .cards{grid-template-columns: repeat(2, 1fr)}
    }
    @media (max-width: 640px){
      .cards{grid-template-columns: 1fr}
    }

    /* Feature band */
    .band{background:linear-gradient(180deg,#f0f9ff, #fff)}
    .band .features{display:grid; grid-template-columns: repeat(4, 1fr); gap:16px}
    .feature{display:flex; gap:10px; align-items:center; background:#fff; border-radius:12px; padding:12px; border:1px solid #e5e7eb}
    @media (max-width: 860px){
      .band .features{grid-template-columns: repeat(2, 1fr)}
    }

    /* Process */
    .steps{display:grid; grid-template-columns: repeat(4, 1fr); gap:18px}
    .step{background:#fff; border:1px dashed #cbd5e1; border-radius:12px; padding:16px}
    .step b{display:inline-block; background:var(--ink); color:#fff; border-radius:8px; padding:4px 10px; font-size:12px}
    @media (max-width: 980px){
      .steps{grid-template-columns: repeat(2, 1fr)}
    }
    @media (max-width: 640px){
      .steps{grid-template-columns: 1fr}
    }

    /* Contact */
    .contact{display:grid; grid-template-columns: 1.1fr .9fr; gap:24px}
    form{background:#fff; border:1px solid #e5e7eb; border-radius:var(--radius); padding:18px; box-shadow:var(--shadow)}
    label{font-weight:700; font-size:14px}
    .field{margin:10px 0 14px}
    input, textarea{width:100%; padding:12px 14px; border:1px solid #e5e7eb; border-radius:10px; outline:none; font-family:inherit}
    input:focus, textarea:focus{border-color:var(--brand); box-shadow:0 0 0 4px var(--ring)}
    textarea{min-height:120px; resize:vertical}
    .contact-card{background:#fff; border-radius:var(--radius); padding:18px; box-shadow:var(--shadow); border:1px solid #eef2f7}

    @media (max-width: 900px){
      .contact{grid-template-columns: 1fr}
    }

    /* Footer */
    footer{padding:30px 0 60px;border-top:1px solid #e5e7eb;background:#fff}
.foot{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:18px}
.foot p{color:var(--muted)}
.foot ul{list-style:none;padding:0;margin:0}
.foot li{margin:8px 0}
.foot a{color:var(--muted);text-decoration:none}
.foot a:hover{color:var(--brand)}
.copyright{margin-top:20px;color:#94a3b8;text-align:center}
/* @media(max-width:1024px){.foot{grid-template-columns:1fr 1fr}} */
@media(max-width:640px){
  #md{max-width: 100px; margin: auto;}
  .foot{grid-template-columns:1fr;text-align:center}
  .foot div{margin-bottom:16px}
  .logo{display:flex;justify-content:center}
  .logo img{max-width:160px}
}

    /* Helpers */
    .sr-only{position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0}
    .muted{color:var(--muted)}
    .pill{display:inline-block; padding:6px 10px; border:1px solid #e5e7eb; border-radius:999px; font-size:12px; margin-right:8px; background:#fff}
    .center{text-align:center}
    .logo{
        max-width: 130px;
    }
  