 /* ── BREADCRUMB CSS Variables ───────────────────────────────── */
  :root {
    --breadcrumbbrand: #03133c;
    --breadcrumbbrand-dark: #cc4700;
    --breadcrumbbrand-light: #fff3ee;
    --breadcrumbtext-dark: #1a1a1a;
    --breadcrumbtext-mid: #555;
    --breadcrumbtext-light: #999;
    --breadcrumbwhite: #ffffff;
  }

  /* ════════════════════════════════════════════════════
       BREADCRUMB SECTION WRAPPER  (remove in production)
    ════════════════════════════════════════════════════ */
  .breadcrumb-section {
    padding: 48px 24px;
    max-width: 960px;
    margin: 0 auto;
  }

  /* ════════════════════════════════════════════════════
       Light Pill Breadcrumb
       Clean, modern, floating pill style
    ════════════════════════════════════════════════════ */
  .breadcrumb-pill {
    width: 100%;
    display: inline-flex;
    align-items: center;
    border: 1px solid #03133c;
    border-radius: 50px;
    padding: 10px 20px;
    gap: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  }

  .breadcrumb-pill .bc-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-mid);
    padding: 4px 8px;
    border-radius: 50px;
    transition: background .2s, color .2s;
  }

  .breadcrumb-pill .bc-item:hover {
    background: var(--breadcrumbbrand-light);
    color: var(--breadcrumbbrand);
  }

  .breadcrumb-pill .bc-item .bc-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
  }

  .breadcrumb-pill .bc-sep {
    color: #00000;
    font-size: 18px;
    line-height: 1;
    margin: 0 2px;
    user-select: none;
  }

  .breadcrumb-pill .bc-item.active {
    background: var(--breadcrumbbrand);
    color: var(--white);
    font-weight: 600;
    pointer-events: none;
  }

  /* ── Responsive ─────────────────────────────────── */
  @media (max-width: 480px) {
    .hero-banner {
      height: 160px;
    }

    .hero-banner .page-title {
      font-size: 22px;
    }

    .breadcrumb-ribbon .bc-step {
      padding: 10px 16px 10px 22px;
      font-size: 12px;
    }
  }
  
  /* SERVICE CSS  START*/
  #service-detail h3 {
    font-weight: 600;
	margin-top:15px;
	margin-bottom:15px;
}
  /* SERVICE CSS  END*/