  /* ── RESET & BASE ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy:   #1e3c72;
    --blue:   #2a5298;
    --orange: #ff6b35;
    --light:  #f4f7fb;
    --text:   #444;
    --white:  #fff;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(30,60,114,0.10);
  }

  body { font-family: 'Segoe UI', sans-serif; color: var(--text); background: var(--white); }

  /* ── TYPOGRAPHY HELPERS ── */
  .section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--navy);
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 12px;
  }
  .section-title::after {
    content: "";
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 4px;
    background: var(--orange);
    border-radius: 2px;
  }
  .section-sub {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.7;
  }

  /* ── LAYOUT ── */
  .container { max-width: 1200px; margin: 0 auto; padding: 72px 24px; }
  .container.alt-bg { background: var(--light);
   border-radius: 0; }

  /* ── NAVBAR (self-contained so no dependency on style.css navbar) ── */
  .navbar {
    position: sticky; top: 0; z-index: 999;
    /*background: var(--navy);*/
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  }
  .nav-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px; height: 64px;
  }
  .logo { color: var(--white); font-size: 1.5rem; font-weight: 800; letter-spacing: 1px; }
  .nav-menu { display: flex; list-style: none; gap: 28px; }
  .nav-menu a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color .2s; }
  .nav-menu a:hover, .nav-menu a.active { color: var(--orange); }
  .nav-cta {
    background: var(--orange); color: var(--white);
    padding: 9px 22px; border-radius: 50px;
    font-weight: 600; font-size: 0.9rem; text-decoration: none;
    transition: background .2s, transform .2s;
  }
  .nav-cta:hover { background: #e8541f; transform: translateY(-1px); }
  .hamburger { display: none; font-size: 1.6rem; color: #2c2727; cursor: pointer; margin-left: 14px; }

  /* ── HERO ── */
  .page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    color: var(--white);
    text-align: center;
    padding: 90px 24px 80px;
    position: relative;
    overflow: hidden;
  }
  .page-hero::after {
    content: "";
    position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
  }
  .page-hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
  .page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 18px; line-height: 1.25; }
  .page-hero p { font-size: 1.15rem; opacity: .92; line-height: 1.75; margin-bottom: 36px; }
  .hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--orange); color: var(--white);
    padding: 14px 36px; border-radius: 50px;
    font-size: 1rem; font-weight: 700; text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(255,107,53,.35);
  }
  .btn-primary:hover { background: #e8541f; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(255,107,53,.45); }
  .btn-secondary {
    background: transparent; color: var(--white);
    padding: 14px 36px; border-radius: 50px;
    font-size: 1rem; font-weight: 700; text-decoration: none;
    border: 2px solid rgba(255,255,255,.7);
    transition: background .2s, color .2s, transform .2s;
  }
  .btn-secondary:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }

  /* ── INTRO STRIP ── */
  .intro-strip {
    background: var(--light);
    padding: 52px 24px;
    text-align: center;
  }
  .intro-strip p {
    max-width: 820px; margin: 0 auto;
    font-size: 1.1rem; color: #555; line-height: 1.85;
  }
  .intro-strip strong { color: var(--navy); }

  /* ── Certificate GRID * ── */
  .services-grid-certificate {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards */
    gap: 24px;
    margin-top: 30px;
}

.service-card-certificate {
    background: var(--white);
    border: 1.5px solid #e4eaf5;
    border-radius: var(--radius);
    padding: 24px;
    transition: all .25s ease;
}

.service-card-certificate:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Tablet */
@media (max-width: 992px) {
    .services-grid-certificate {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .services-grid-certificate {
        grid-template-columns: 1fr;
    }
}
  /* ── Cerytificate GRID # ── */
  /* ── SERVICES GRID ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }

/*  .services-grid-certificate {

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
   
    gap: 20px;
  }*/
  .service-card {
    background: var(--white);
    border: 1.5px solid #e4eaf5;
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--orange), #ff9f6b);
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #c8d8f0; }
  .service-card h4 { color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
  .service-card p { color: #666; font-size: .9rem; line-height: 1.55; }
  .service-card .std-tag {
    display: inline-block;
    font-size: .75rem; font-weight: 600;
    color: var(--orange); background: #fff4ef;
    padding: 2px 8px; border-radius: 20px; margin-bottom: 8px;
  }

  /* ── ADDITIONAL SUPPORT (checklist) ── */
  .support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .support-item {
    display: flex; align-items: flex-start; gap: 14px;
    background: var(--white); border-radius: var(--radius);
    padding: 22px 20px;
    border: 1.5px solid #e4eaf5;
    transition: box-shadow .25s, border-color .25s;
  }
  .support-item:hover { box-shadow: var(--shadow); border-color: var(--orange); }
  .support-icon {
    min-width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
  }
  .support-item h4 { color: var(--navy); font-size: .98rem; font-weight: 700; margin-bottom: 4px; }
  .support-item p { color: #666; font-size: .88rem; line-height: 1.55; }

  /* ── PROCESS STEPS ── */
  .process-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    position: relative;
  }
  .process-track::before {
    content: "";
    position: absolute;
    top: 40px; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--navy));
    z-index: 0;
    border-radius: 2px;
  }
  .process-step {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative; z-index: 1;
    transition: transform .25s;
  }
  .process-step:hover { transform: translateY(-6px); }
  .step-num {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--orange), #ff9f6b);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 800; color: var(--white);
    margin: 0 auto 18px;
    box-shadow: 0 4px 14px rgba(255,107,53,.35);
  }
  .process-step h4 { color: var(--navy); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
  .process-step p { color: #666; font-size: .92rem; line-height: 1.6; }

  /* ── INDUSTRIES ── */
  /* new code * */
  .industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
    gap: 20px;
    margin-top: 30px;
}

.industry-card {
    background: #fff;
    padding: 25px 20px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.ind-icon {
    display: block;
    font-size: 42px;
    margin-bottom: 12px;
}

.industry-card h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

/* Tablet */
@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}
  /* new code # */
 /* .industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 18px;
  }
  .industry-card {
    background: var(--white);
    border: 1.5px solid #e4eaf5;
    border-radius: var(--radius);
    padding: 22px 16px;
    text-align: center;
    transition: all .25s;
  }*/
  .industry-card:hover {
    background: var(--navy); color: var(--white);
    border-color: var(--navy); transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(30,60,114,.2);
  }
  .industry-card .ind-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
  .industry-card h4 { font-size: .93rem; font-weight: 600; color: var(--navy); transition: color .25s; }
  .industry-card:hover h4 { color: var(--white); }

  /* ── WHY CHOOSE ── */
  .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
      gap: 30px;
      margin-top: 40px;
  }

  .feature-card {
      background: #fff;
      padding: 30px 25px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      text-align: center;
      transition: all 0.3s ease;
      border: 1px solid #eee;
  }

  .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  }

  .fc-icon {
      font-size: 48px;
      display: inline-block;
      margin-bottom: 18px;
  }

  .feature-card h3 {
      margin: 0 0 15px;
      font-size: 22px;
      color: #222;
  }

  .feature-card p {
      margin: 0;
      color: #666;
      line-height: 1.7;
  }

  /* Tablet */
  @media (max-width: 992px) {
      .features-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  /* Mobile */
  @media (max-width: 576px) {
      .features-grid {
          grid-template-columns: 1fr;
      }
  }
/*  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }
  .feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s;
    border-bottom: 4px solid transparent;
  }*/
  .feature-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(30,60,114,.14); border-bottom-color: var(--orange); }
  .feature-card .fc-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
  .feature-card h3 { color: var(--navy); font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; }
  .feature-card p { color: #666; font-size: .93rem; line-height: 1.65; }

  /* ── CTA LEAD ── */
  .cta-lead {
    background: linear-gradient(135deg, var(--orange) 0%, #ff9f6b 100%);
    padding: 64px 24px;
  }
  .cta-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
  }
  .cta-inner h2 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--white); margin-bottom: 10px; }
  .cta-inner p { color: rgba(255,255,255,.9); font-size: 1.05rem; }
  .cta-inner .btn-primary { background: var(--white); color: var(--orange); }
  .cta-inner .btn-primary:hover { background: var(--navy); color: var(--white); }
  .cta-inner .btn-secondary { border-color: rgba(255,255,255,.7); }
  .cta-buttons-group { display: flex; gap: 14px; flex-wrap: wrap; }

  /* ── FOOTER ── */
  .footer { background: #111827; color: rgba(255,255,255,.8); padding: 56px 24px 0; }
  .footer-content {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px; padding-bottom: 40px;
  }
  .footer h3 { color: var(--orange); font-size: 1rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px; }
  .footer a { display: block; color: rgba(255,255,255,.7); text-decoration: none; margin-bottom: 8px; font-size: .93rem; transition: color .2s; }
  .footer a:hover { color: var(--orange); }
  .footer p { font-size: .9rem; line-height: 1.7; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    padding: 20px 0;
    font-size: .85rem;
    color: rgba(255,255,255,.4);
    max-width: 1200px; margin: 0 auto;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .nav-menu { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #fbfdff; padding: 16px 24px; gap: 16px; }
    .nav-menu.open { display: flex; }
    .hamburger { display: block; }
    .process-track::before { display: none; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-buttons-group { justify-content: center; }
  }