   /* ---------- global reset (cm namespace) ---------- */
    .cm-wrapper *,
    .cm-wrapper *::before,
    .cm-wrapper *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .cm-wrapper {
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      background: #f6f9fc;
      color: #1a2639;
      padding: 2.5rem 1.2rem;
      display: flex;
      justify-content: center;
      line-height: 1.5;
    }

    .cm-container {
      max-width: 1260px;
      width: 100%;
      background: #ffffff;
      border-radius: 2.8rem;
      box-shadow: 0 20px 48px -16px rgba(0, 20, 40, 0.08), 0 4px 14px rgba(0,0,0,0.02);
      padding: 2.8rem 2.5rem;
      transition: box-shadow 0.2s;
    }

    @media (max-width: 640px) {
      .cm-container { padding: 1.8rem 1.2rem; border-radius: 1.8rem; }
      .cm-wrapper { padding: 1.2rem 0.6rem; }
    }

    /* ---------- heading & meta ---------- */
    .cm-head .cm-badge {
      display: inline-block;
      background: #dce9f5;
      color: #134074;
      font-weight: 600;
      font-size: 0.7rem;
      letter-spacing: 0.4px;
      padding: 0.25rem 1.2rem;
      border-radius: 40px;
      text-transform: uppercase;
      border: 1px solid #b7cee8;
      margin-bottom: 0.5rem;
    }

    .cm-head h1 {
      font-size: 2.6rem;
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: #0b1d30;
    }

    .cm-head h1 span {
      background: linear-gradient(145deg, #1d4b7a, #2563eb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cm-sub {
      font-size: 1.1rem;
      color: #334e68;
      margin-top: 0.6rem;
      padding-left: 1.2rem;
      border-left: 4px solid #2563eb;
      background: #f2f6fc;
      border-radius: 0 12px 12px 0;
      padding: 0.7rem 1.6rem;
      font-weight: 400;
      max-width: 780px;
    }

    .cm-sub strong { font-weight: 600; color: #0b1d30; }

    @media (max-width: 600px) {
      .cm-head h1 { font-size: 2rem; }
      .cm-sub { font-size: 1rem; padding: 0.5rem 1rem; }
    }

    /* ---------- content paragraphs ---------- */
    .cm-content p {
      margin: 1.3rem 0 0.8rem 0;
      color: #1e2f44;
      font-size: 1rem;
      line-height: 1.7;
    }

    .cm-content p:first-of-type { margin-top: 1.6rem; }

    .cm-content strong { color: #0b1d30; font-weight: 600; }

    /* ---------- feature grid cards ---------- */
    .cm-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 1.8rem;
      margin: 2rem 0 1.8rem 0;
    }

    .cm-card {
      background: #fafcff;
      border-radius: 1.6rem;
      padding: 1.6rem 1.4rem;
      border: 1px solid #e2ebf3;
      transition: all 0.2s ease;
      box-shadow: 0 2px 6px rgba(0,0,0,0.01);
    }

    .cm-card:hover {
      transform: translateY(-5px);
      border-color: #b3cbe5;
      background: #ffffff;
      box-shadow: 0 16px 28px -12px rgba(37, 99, 235, 0.08), 0 4px 12px rgba(0,0,0,0.02);
    }

    .cm-card h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: #0b1d30;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .cm-card h3 i { font-style: normal; font-size: 1.3rem; }

    .cm-card ul {
      list-style: none;
      margin-top: 0.4rem;
    }

    .cm-card ul li {
      padding: 0.2rem 0 0.2rem 1.4rem;
      position: relative;
      font-size: 0.92rem;
      color: #2a405a;
    }

    .cm-card ul li::before {
      content: "▹";
      position: absolute;
      left: 0;
      color: #2563eb;
      font-weight: 600;
    }

    .cm-card .cm-tag {
      display: inline-block;
      margin-top: 0.7rem;
      background: #e7eef8;
      padding: 0.15rem 0.9rem;
      border-radius: 40px;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2px;
      color: #1a4b7a;
      border: 1px solid #cddef0;
    }

    /* ---------- styled lists (highlights) ---------- */
    .cm-list-highlight {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0.6rem 1.2rem;
      background: #f4f8fe;
      padding: 1.2rem 1.8rem;
      border-radius: 1.8rem;
      margin: 1.5rem 0 1rem 0;
      border: 1px solid #deeaf5;
    }

    .cm-list-highlight span {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.95rem;
      color: #1a3350;
    }

    .cm-list-highlight span::before {
      content: "✔";
      color: #2563eb;
      font-weight: 700;
      margin-right: 0.2rem;
    }

    /* two column list for specs */
    .cm-spec-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 0.2rem 0.8rem;
      background: #ffffff;
      padding: 0.6rem 0.4rem;
      border-radius: 1.2rem;
    }

    .cm-spec-grid .cm-spec-item {
      padding: 0.25rem 0.4rem 0.25rem 1.8rem;
      position: relative;
      font-size: 0.95rem;
      color: #1e3349;
    }

    .cm-spec-grid .cm-spec-item::before {
      content: "◆";
      position: absolute;
      left: 0;
      color: #2563eb;
      font-size: 0.7rem;
      top: 0.3rem;
    }

    /* ---------- cta section ---------- */
    .cm-cta-wrap {
      margin-top: 2.2rem;
      padding-top: 2rem;
      border-top: 1px solid #dce6f0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .cm-cta-left {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.8rem 1.5rem;
    }

    .cm-cta-phone {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      background: #eaf1fa;
      padding: 0.3rem 1rem 0.3rem 0.6rem;
      border-radius: 60px;
      border: 1px solid #cbdcee;
      font-weight: 600;
      color: #0b1d30;
    }

    .cm-cta-phone a {
      text-decoration: none;
      color: #0b1d30;
      font-weight: 600;
    }

    .cm-cta-phone a:hover { color: #2563eb; }

    .cm-btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .cm-btn {
      display: inline-block;
      background: #0b1d30;
      color: white;
      font-weight: 600;
      padding: 0.8rem 2.2rem;
      border-radius: 60px;
      text-decoration: none;
      font-size: 0.95rem;
      border: 1px solid #1d3f5c;
      box-shadow: 0 6px 14px -6px rgba(11, 29, 48, 0.15);
      transition: background 0.15s, transform 0.1s, box-shadow 0.2s;
      cursor: default;
    }

    .cm-btn:hover {
      background: #1c3b5a;
      box-shadow: 0 10px 22px -8px rgba(11, 29, 48, 0.25);
      transform: scale(1.02);
    }

    .cm-btn-outline {
      background: transparent;
      color: #0b1d30;
      border: 1px solid #b8ccdf;
      box-shadow: none;
    }

    .cm-btn-outline:hover {
      background: #f1f6fc;
      border-color: #2563eb;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.06);
    }

    /* ---------- responsive ---------- */
    @media (max-width: 700px) {
      .cm-cta-wrap { flex-direction: column; align-items: stretch; }
      .cm-btn-group { width: 100%; }
      .cm-btn { width: 100%; text-align: center; padding: 0.8rem 1.2rem; }
      .cm-cta-left { flex-direction: column; align-items: flex-start; }
      .cm-list-highlight { grid-template-columns: 1fr; padding: 1rem 1.4rem; }
    }

    @media (max-width: 500px) {
      .cm-grid { grid-template-columns: 1fr; }
      .cm-card { padding: 1.2rem; }
      .cm-spec-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (min-width: 701px) and (max-width: 1024px) {
      .cm-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ---------- extra unique touches ---------- */
    .cm-stock-badge {
      background: #e2f0e2;
      color: #166534;
      padding: 0.1rem 0.9rem;
      border-radius: 40px;
      font-size: 0.65rem;
      font-weight: 600;
      text-transform: uppercase;
      border: 1px solid #b8d5b8;
      display: inline-block;
      margin-left: 0.2rem;
    }

    .cm-meta-footer {
      margin-top: 1.2rem;
      font-size: 0.8rem;
      color: #7a8b9f;
      border-top: 1px solid #eef3f8;
      padding-top: 1rem;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .cm-meta-footer a {
      color: #1e4a7a;
      text-decoration: none;
      font-weight: 500;
    }
    .cm-meta-footer a:hover { text-decoration: underline; }

    .cm-dot-green {
      display: inline-block;
      width: 8px;
      height: 8px;
      background: #22c55e;
      border-radius: 50%;
      margin-right: 4px;
    }

    /* small inline list for "why choose" */
    .cm-why-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.3rem 1.2rem;
      background: #f8fbfe;
      padding: 0.6rem 1.2rem;
      border-radius: 60px;
      margin: 0.8rem 0 0.2rem 0;
      border: 1px solid #e2ebf3;
    }

    .cm-why-list span {
      font-size: 0.9rem;
      color: #1a3350;
    }


  /*flanges-manufacturers-in-mumbai page*/

      /* ---------- global reset (cmf namespace) ---------- */
    .cmf-wrapper *,
    .cmf-wrapper *::before,
    .cmf-wrapper *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .cmf-wrapper {
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      background: #f4f8fc;
      color: #1a2639;
      padding: 2.5rem 1.2rem;
      display: flex;
      justify-content: center;
      line-height: 1.5;
    }

    .cmf-container {
      max-width: 1260px;
      width: 100%;
      background: #ffffff;
      border-radius: 2.8rem;
      box-shadow: 0 20px 48px -16px rgba(0, 20, 40, 0.08), 0 4px 14px rgba(0,0,0,0.02);
      padding: 2.8rem 2.5rem;
      transition: box-shadow 0.2s;
    }

    @media (max-width: 640px) {
      .cmf-container { padding: 1.8rem 1.2rem; border-radius: 1.8rem; }
      .cmf-wrapper { padding: 1.2rem 0.6rem; }
    }

    /* ---------- heading & meta ---------- */
    .cmf-head .cmf-badge {
      display: inline-block;
      background: #dce9f5;
      color: #134074;
      font-weight: 600;
      font-size: 0.7rem;
      letter-spacing: 0.4px;
      padding: 0.25rem 1.2rem;
      border-radius: 40px;
      text-transform: uppercase;
      border: 1px solid #b7cee8;
      margin-bottom: 0.5rem;
    }

    .cmf-head h1 {
      font-size: 2.6rem;
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: #0b1d30;
    }

    .cmf-head h1 span {
      background: linear-gradient(145deg, #1d4b7a, #2563eb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cmf-sub {
      font-size: 1.1rem;
      color: #334e68;
      margin-top: 0.6rem;
      padding-left: 1.2rem;
      border-left: 4px solid #2563eb;
      background: #f2f6fc;
      border-radius: 0 12px 12px 0;
      padding: 0.7rem 1.6rem;
      font-weight: 400;
      max-width: 780px;
    }

    .cmf-sub strong { font-weight: 600; color: #0b1d30; }

    @media (max-width: 600px) {
      .cmf-head h1 { font-size: 2rem; }
      .cmf-sub { font-size: 1rem; padding: 0.5rem 1rem; }
    }

    /* ---------- content paragraphs ---------- */
    .cmf-content p {
      margin: 1.3rem 0 0.8rem 0;
      color: #1e2f44;
      font-size: 1rem;
      line-height: 1.7;
    }

    .cmf-content p:first-of-type { margin-top: 1.6rem; }
    .cmf-content strong { color: #0b1d30; font-weight: 600; }

    /* ---------- feature grid cards ---------- */
    .cmf-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 1.8rem;
      margin: 2rem 0 1.8rem 0;
    }

    .cmf-card {
      background: #fafcff;
      border-radius: 1.6rem;
      padding: 1.6rem 1.4rem;
      border: 1px solid #e2ebf3;
      transition: all 0.2s ease;
      box-shadow: 0 2px 6px rgba(0,0,0,0.01);
    }

    .cmf-card:hover {
      transform: translateY(-5px);
      border-color: #b3cbe5;
      background: #ffffff;
      box-shadow: 0 16px 28px -12px rgba(37, 99, 235, 0.08), 0 4px 12px rgba(0,0,0,0.02);
    }

    .cmf-card h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: #0b1d30;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .cmf-card h3 i { font-style: normal; font-size: 1.3rem; }

    .cmf-card ul {
      list-style: none;
      margin-top: 0.4rem;
    }

    .cmf-card ul li {
      padding: 0.2rem 0 0.2rem 1.4rem;
      position: relative;
      font-size: 0.92rem;
      color: #2a405a;
    }

    .cmf-card ul li::before {
      content: "▹";
      position: absolute;
      left: 0;
      color: #2563eb;
      font-weight: 600;
    }

    .cmf-card .cmf-tag {
      display: inline-block;
      margin-top: 0.7rem;
      background: #e7eef8;
      padding: 0.15rem 0.9rem;
      border-radius: 40px;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2px;
      color: #1a4b7a;
      border: 1px solid #cddef0;
    }

    /* ---------- styled lists (highlights) ---------- */
    .cmf-list-highlight {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0.6rem 1.2rem;
      background: #f4f8fe;
      padding: 1.2rem 1.8rem;
      border-radius: 1.8rem;
      margin: 1.5rem 0 1rem 0;
      border: 1px solid #deeaf5;
    }

    .cmf-list-highlight span {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.95rem;
      color: #1a3350;
    }

    .cmf-list-highlight span::before {
      content: "✔";
      color: #2563eb;
      font-weight: 700;
      margin-right: 0.2rem;
    }

    /* two column list for specs */
    .cmf-spec-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 0.2rem 0.8rem;
      background: #ffffff;
      padding: 0.6rem 0.4rem;
      border-radius: 1.2rem;
    }

    .cmf-spec-grid .cmf-spec-item {
      padding: 0.25rem 0.4rem 0.25rem 1.8rem;
      position: relative;
      font-size: 0.95rem;
      color: #1e3349;
    }

    .cmf-spec-grid .cmf-spec-item::before {
      content: "◆";
      position: absolute;
      left: 0;
      color: #2563eb;
      font-size: 0.7rem;
      top: 0.3rem;
    }

    /* ---------- cta section ---------- */
    .cmf-cta-wrap {
      margin-top: 2.2rem;
      padding-top: 2rem;
      border-top: 1px solid #dce6f0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .cmf-cta-left {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.8rem 1.5rem;
    }

    .cmf-cta-phone {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      background: #eaf1fa;
      padding: 0.3rem 1rem 0.3rem 0.6rem;
      border-radius: 60px;
      border: 1px solid #cbdcee;
      font-weight: 600;
      color: #0b1d30;
    }

    .cmf-cta-phone a {
      text-decoration: none;
      color: #0b1d30;
      font-weight: 600;
    }

    .cmf-cta-phone a:hover { color: #2563eb; }

    .cmf-btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .cmf-btn {
      display: inline-block;
      background: #0b1d30;
      color: white;
      font-weight: 600;
      padding: 0.8rem 2.2rem;
      border-radius: 60px;
      text-decoration: none;
      font-size: 0.95rem;
      border: 1px solid #1d3f5c;
      box-shadow: 0 6px 14px -6px rgba(11, 29, 48, 0.15);
      transition: background 0.15s, transform 0.1s, box-shadow 0.2s;
      cursor: default;
    }

    .cmf-btn:hover {
      background: #1c3b5a;
      box-shadow: 0 10px 22px -8px rgba(11, 29, 48, 0.25);
      transform: scale(1.02);
    }

    .cmf-btn-outline {
      background: transparent;
      color: #0b1d30;
      border: 1px solid #b8ccdf;
      box-shadow: none;
    }

    .cmf-btn-outline:hover {
      background: #f1f6fc;
      border-color: #2563eb;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.06);
    }

    /* ---------- responsive ---------- */
    @media (max-width: 700px) {
      .cmf-cta-wrap { flex-direction: column; align-items: stretch; }
      .cmf-btn-group { width: 100%; }
      .cmf-btn { width: 100%; text-align: center; padding: 0.8rem 1.2rem; }
      .cmf-cta-left { flex-direction: column; align-items: flex-start; }
      .cmf-list-highlight { grid-template-columns: 1fr; padding: 1rem 1.4rem; }
    }

    @media (max-width: 500px) {
      .cmf-grid { grid-template-columns: 1fr; }
      .cmf-card { padding: 1.2rem; }
      .cmf-spec-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (min-width: 701px) and (max-width: 1024px) {
      .cmf-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ---------- extra unique touches ---------- */
    .cmf-stock-badge {
      background: #e2f0e2;
      color: #166534;
      padding: 0.1rem 0.9rem;
      border-radius: 40px;
      font-size: 0.65rem;
      font-weight: 600;
      text-transform: uppercase;
      border: 1px solid #b8d5b8;
      display: inline-block;
      margin-left: 0.2rem;
    }

    .cmf-meta-footer {
      margin-top: 1.2rem;
      font-size: 0.8rem;
      color: #7a8b9f;
      border-top: 1px solid #eef3f8;
      padding-top: 1rem;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .cmf-meta-footer a {
      color: #1e4a7a;
      text-decoration: none;
      font-weight: 500;
    }
    .cmf-meta-footer a:hover { text-decoration: underline; }

    .cmf-dot-green {
      display: inline-block;
      width: 8px;
      height: 8px;
      background: #22c55e;
      border-radius: 50%;
      margin-right: 4px;
    }

    /* inline "why choose" list */
    .cmf-why-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.3rem 1.2rem;
      background: #f8fbfe;
      padding: 0.6rem 1.2rem;
      border-radius: 60px;
      margin: 0.8rem 0 0.2rem 0;
      border: 1px solid #e2ebf3;
    }

    .cmf-why-list span {
      font-size: 0.9rem;
      color: #1a3350;
    }


    /* forged-fitting-exporters-in-mumbai page */
  
    /* ---------- global reset (cmff namespace) ---------- */
    .cmff-wrapper *,
    .cmff-wrapper *::before,
    .cmff-wrapper *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .cmff-wrapper {
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      background: #f4f8fc;
      color: #1a2639;
      padding: 2.5rem 1.2rem;
      display: flex;
      justify-content: center;
      line-height: 1.5;
    }

    .cmff-container {
      max-width: 1260px;
      width: 100%;
      background: #ffffff;
      border-radius: 2.8rem;
      box-shadow: 0 20px 48px -16px rgba(0, 20, 40, 0.08), 0 4px 14px rgba(0,0,0,0.02);
      padding: 2.8rem 2.5rem;
      transition: box-shadow 0.2s;
    }

    @media (max-width: 640px) {
      .cmff-container { padding: 1.8rem 1.2rem; border-radius: 1.8rem; }
      .cmff-wrapper { padding: 1.2rem 0.6rem; }
    }

    /* ---------- heading & meta ---------- */
    .cmff-head .cmff-badge {
      display: inline-block;
      background: #dce9f5;
      color: #134074;
      font-weight: 600;
      font-size: 0.7rem;
      letter-spacing: 0.4px;
      padding: 0.25rem 1.2rem;
      border-radius: 40px;
      text-transform: uppercase;
      border: 1px solid #b7cee8;
      margin-bottom: 0.5rem;
    }

    .cmff-head h1 {
      font-size: 2.6rem;
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: #0b1d30;
    }

    .cmff-head h1 span {
      background: linear-gradient(145deg, #1d4b7a, #2563eb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cmff-sub {
      font-size: 1.1rem;
      color: #334e68;
      margin-top: 0.6rem;
      padding-left: 1.2rem;
      border-left: 4px solid #2563eb;
      background: #f2f6fc;
      border-radius: 0 12px 12px 0;
      padding: 0.7rem 1.6rem;
      font-weight: 400;
      max-width: 780px;
    }

    .cmff-sub strong { font-weight: 600; color: #0b1d30; }

    @media (max-width: 600px) {
      .cmff-head h1 { font-size: 2rem; }
      .cmff-sub { font-size: 1rem; padding: 0.5rem 1rem; }
    }

    /* ---------- content paragraphs ---------- */
    .cmff-content p {
      margin: 1.3rem 0 0.8rem 0;
      color: #1e2f44;
      font-size: 1rem;
      line-height: 1.7;
    }

    .cmff-content p:first-of-type { margin-top: 1.6rem; }
    .cmff-content strong { color: #0b1d30; font-weight: 600; }

    /* ---------- feature grid cards ---------- */
    .cmff-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 1.8rem;
      margin: 2rem 0 1.8rem 0;
    }

    .cmff-card {
      background: #fafcff;
      border-radius: 1.6rem;
      padding: 1.6rem 1.4rem;
      border: 1px solid #e2ebf3;
      transition: all 0.2s ease;
      box-shadow: 0 2px 6px rgba(0,0,0,0.01);
    }

    .cmff-card:hover {
      transform: translateY(-5px);
      border-color: #b3cbe5;
      background: #ffffff;
      box-shadow: 0 16px 28px -12px rgba(37, 99, 235, 0.08), 0 4px 12px rgba(0,0,0,0.02);
    }

    .cmff-card h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: #0b1d30;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .cmff-card h3 i { font-style: normal; font-size: 1.3rem; }

    .cmff-card ul {
      list-style: none;
      margin-top: 0.4rem;
    }

    .cmff-card ul li {
      padding: 0.2rem 0 0.2rem 1.4rem;
      position: relative;
      font-size: 0.92rem;
      color: #2a405a;
    }

    .cmff-card ul li::before {
      content: "▹";
      position: absolute;
      left: 0;
      color: #2563eb;
      font-weight: 600;
    }

    .cmff-card .cmff-tag {
      display: inline-block;
      margin-top: 0.7rem;
      background: #e7eef8;
      padding: 0.15rem 0.9rem;
      border-radius: 40px;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2px;
      color: #1a4b7a;
      border: 1px solid #cddef0;
    }

    /* ---------- styled lists (highlights) ---------- */
    .cmff-list-highlight {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0.6rem 1.2rem;
      background: #f4f8fe;
      padding: 1.2rem 1.8rem;
      border-radius: 1.8rem;
      margin: 1.5rem 0 1rem 0;
      border: 1px solid #deeaf5;
    }

    .cmff-list-highlight span {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.95rem;
      color: #1a3350;
    }

    .cmff-list-highlight span::before {
      content: "✔";
      color: #2563eb;
      font-weight: 700;
      margin-right: 0.2rem;
    }

    /* two column list for specs */
    .cmff-spec-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 0.2rem 0.8rem;
      background: #ffffff;
      padding: 0.6rem 0.4rem;
      border-radius: 1.2rem;
    }

    .cmff-spec-grid .cmff-spec-item {
      padding: 0.25rem 0.4rem 0.25rem 1.8rem;
      position: relative;
      font-size: 0.95rem;
      color: #1e3349;
    }

    .cmff-spec-grid .cmff-spec-item::before {
      content: "◆";
      position: absolute;
      left: 0;
      color: #2563eb;
      font-size: 0.7rem;
      top: 0.3rem;
    }

    /* ---------- cta section ---------- */
    .cmff-cta-wrap {
      margin-top: 2.2rem;
      padding-top: 2rem;
      border-top: 1px solid #dce6f0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .cmff-cta-left {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.8rem 1.5rem;
    }

    .cmff-cta-phone {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      background: #eaf1fa;
      padding: 0.3rem 1rem 0.3rem 0.6rem;
      border-radius: 60px;
      border: 1px solid #cbdcee;
      font-weight: 600;
      color: #0b1d30;
    }

    .cmff-cta-phone a {
      text-decoration: none;
      color: #0b1d30;
      font-weight: 600;
    }

    .cmff-cta-phone a:hover { color: #2563eb; }

    .cmff-btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .cmff-btn {
      display: inline-block;
      background: #0b1d30;
      color: white;
      font-weight: 600;
      padding: 0.8rem 2.2rem;
      border-radius: 60px;
      text-decoration: none;
      font-size: 0.95rem;
      border: 1px solid #1d3f5c;
      box-shadow: 0 6px 14px -6px rgba(11, 29, 48, 0.15);
      transition: background 0.15s, transform 0.1s, box-shadow 0.2s;
      cursor: default;
    }

    .cmff-btn:hover {
      background: #1c3b5a;
      box-shadow: 0 10px 22px -8px rgba(11, 29, 48, 0.25);
      transform: scale(1.02);
    }

    .cmff-btn-outline {
      background: transparent;
      color: #0b1d30;
      border: 1px solid #b8ccdf;
      box-shadow: none;
    }

    .cmff-btn-outline:hover {
      background: #f1f6fc;
      border-color: #2563eb;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.06);
    }

    /* ---------- responsive ---------- */
    @media (max-width: 700px) {
      .cmff-cta-wrap { flex-direction: column; align-items: stretch; }
      .cmff-btn-group { width: 100%; }
      .cmff-btn { width: 100%; text-align: center; padding: 0.8rem 1.2rem; }
      .cmff-cta-left { flex-direction: column; align-items: flex-start; }
      .cmff-list-highlight { grid-template-columns: 1fr; padding: 1rem 1.4rem; }
    }

    @media (max-width: 500px) {
      .cmff-grid { grid-template-columns: 1fr; }
      .cmff-card { padding: 1.2rem; }
      .cmff-spec-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (min-width: 701px) and (max-width: 1024px) {
      .cmff-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ---------- extra unique touches ---------- */
    .cmff-stock-badge {
      background: #e2f0e2;
      color: #166534;
      padding: 0.1rem 0.9rem;
      border-radius: 40px;
      font-size: 0.65rem;
      font-weight: 600;
      text-transform: uppercase;
      border: 1px solid #b8d5b8;
      display: inline-block;
      margin-left: 0.2rem;
    }

    .cmff-meta-footer {
      margin-top: 1.2rem;
      font-size: 0.8rem;
      color: #7a8b9f;
      border-top: 1px solid #eef3f8;
      padding-top: 1rem;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .cmff-meta-footer a {
      color: #1e4a7a;
      text-decoration: none;
      font-weight: 500;
    }
    .cmff-meta-footer a:hover { text-decoration: underline; }

    .cmff-dot-green {
      display: inline-block;
      width: 8px;
      height: 8px;
      background: #22c55e;
      border-radius: 50%;
      margin-right: 4px;
    }

    /* inline "why choose" list */
    .cmff-why-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.3rem 1.2rem;
      background: #f8fbfe;
      padding: 0.6rem 1.2rem;
      border-radius: 60px;
      margin: 0.8rem 0 0.2rem 0;
      border: 1px solid #e2ebf3;
    }

    .cmff-why-list span {
      font-size: 0.9rem;
      color: #1a3350;
    }


/*Hubs Clamps Exporters In Mumbai page*/

 /* ---------- global reset (cmhc namespace) ---------- */
    .cmhc-wrapper *,
    .cmhc-wrapper *::before,
    .cmhc-wrapper *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .cmhc-wrapper {
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      background: #f4f8fc;
      color: #1a2639;
      padding: 2.5rem 1.2rem;
      display: flex;
      justify-content: center;
      line-height: 1.5;
    }

    .cmhc-container {
      max-width: 1260px;
      width: 100%;
      background: #ffffff;
      border-radius: 2.8rem;
      box-shadow: 0 20px 48px -16px rgba(0, 20, 40, 0.08), 0 4px 14px rgba(0,0,0,0.02);
      padding: 2.8rem 2.5rem;
      transition: box-shadow 0.2s;
    }

    @media (max-width: 640px) {
      .cmhc-container { padding: 1.8rem 1.2rem; border-radius: 1.8rem; }
      .cmhc-wrapper { padding: 1.2rem 0.6rem; }
    }

    /* ---------- heading & meta ---------- */
    .cmhc-head .cmhc-badge {
      display: inline-block;
      background: #dce9f5;
      color: #134074;
      font-weight: 600;
      font-size: 0.7rem;
      letter-spacing: 0.4px;
      padding: 0.25rem 1.2rem;
      border-radius: 40px;
      text-transform: uppercase;
      border: 1px solid #b7cee8;
      margin-bottom: 0.5rem;
    }

    .cmhc-head h1 {
      font-size: 2.6rem;
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: #0b1d30;
    }

    .cmhc-head h1 span {
      background: linear-gradient(145deg, #1d4b7a, #2563eb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cmhc-sub {
      font-size: 1.1rem;
      color: #334e68;
      margin-top: 0.6rem;
      padding-left: 1.2rem;
      border-left: 4px solid #2563eb;
      background: #f2f6fc;
      border-radius: 0 12px 12px 0;
      padding: 0.7rem 1.6rem;
      font-weight: 400;
      max-width: 780px;
    }

    .cmhc-sub strong { font-weight: 600; color: #0b1d30; }

    @media (max-width: 600px) {
      .cmhc-head h1 { font-size: 2rem; }
      .cmhc-sub { font-size: 1rem; padding: 0.5rem 1rem; }
    }

    /* ---------- content paragraphs ---------- */
    .cmhc-content p {
      margin: 1.3rem 0 0.8rem 0;
      color: #1e2f44;
      font-size: 1rem;
      line-height: 1.7;
    }

    .cmhc-content p:first-of-type { margin-top: 1.6rem; }
    .cmhc-content strong { color: #0b1d30; font-weight: 600; }

    /* ---------- feature grid cards ---------- */
    .cmhc-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 1.8rem;
      margin: 2rem 0 1.8rem 0;
    }

    .cmhc-card {
      background: #fafcff;
      border-radius: 1.6rem;
      padding: 1.6rem 1.4rem;
      border: 1px solid #e2ebf3;
      transition: all 0.2s ease;
      box-shadow: 0 2px 6px rgba(0,0,0,0.01);
    }

    .cmhc-card:hover {
      transform: translateY(-5px);
      border-color: #b3cbe5;
      background: #ffffff;
      box-shadow: 0 16px 28px -12px rgba(37, 99, 235, 0.08), 0 4px 12px rgba(0,0,0,0.02);
    }

    .cmhc-card h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: #0b1d30;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .cmhc-card h3 i { font-style: normal; font-size: 1.3rem; }

    .cmhc-card ul {
      list-style: none;
      margin-top: 0.4rem;
    }

    .cmhc-card ul li {
      padding: 0.2rem 0 0.2rem 1.4rem;
      position: relative;
      font-size: 0.92rem;
      color: #2a405a;
    }

    .cmhc-card ul li::before {
      content: "▹";
      position: absolute;
      left: 0;
      color: #2563eb;
      font-weight: 600;
    }

    .cmhc-card .cmhc-tag {
      display: inline-block;
      margin-top: 0.7rem;
      background: #e7eef8;
      padding: 0.15rem 0.9rem;
      border-radius: 40px;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2px;
      color: #1a4b7a;
      border: 1px solid #cddef0;
    }

    /* ---------- styled lists (highlights) ---------- */
    .cmhc-list-highlight {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0.6rem 1.2rem;
      background: #f4f8fe;
      padding: 1.2rem 1.8rem;
      border-radius: 1.8rem;
      margin: 1.5rem 0 1rem 0;
      border: 1px solid #deeaf5;
    }

    .cmhc-list-highlight span {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.95rem;
      color: #1a3350;
    }

    .cmhc-list-highlight span::before {
      content: "✔";
      color: #2563eb;
      font-weight: 700;
      margin-right: 0.2rem;
    }

    /* two column list for specs */
    .cmhc-spec-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 0.2rem 0.8rem;
      background: #ffffff;
      padding: 0.6rem 0.4rem;
      border-radius: 1.2rem;
    }

    .cmhc-spec-grid .cmhc-spec-item {
      padding: 0.25rem 0.4rem 0.25rem 1.8rem;
      position: relative;
      font-size: 0.95rem;
      color: #1e3349;
    }

    .cmhc-spec-grid .cmhc-spec-item::before {
      content: "◆";
      position: absolute;
      left: 0;
      color: #2563eb;
      font-size: 0.7rem;
      top: 0.3rem;
    }

    /* ---------- cta section ---------- */
    .cmhc-cta-wrap {
      margin-top: 2.2rem;
      padding-top: 2rem;
      border-top: 1px solid #dce6f0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .cmhc-cta-left {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.8rem 1.5rem;
    }

    .cmhc-cta-phone {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      background: #eaf1fa;
      padding: 0.3rem 1rem 0.3rem 0.6rem;
      border-radius: 60px;
      border: 1px solid #cbdcee;
      font-weight: 600;
      color: #0b1d30;
    }

    .cmhc-cta-phone a {
      text-decoration: none;
      color: #0b1d30;
      font-weight: 600;
    }

    .cmhc-cta-phone a:hover { color: #2563eb; }

    .cmhc-btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .cmhc-btn {
      display: inline-block;
      background: #0b1d30;
      color: white;
      font-weight: 600;
      padding: 0.8rem 2.2rem;
      border-radius: 60px;
      text-decoration: none;
      font-size: 0.95rem;
      border: 1px solid #1d3f5c;
      box-shadow: 0 6px 14px -6px rgba(11, 29, 48, 0.15);
      transition: background 0.15s, transform 0.1s, box-shadow 0.2s;
      cursor: default;
    }

    .cmhc-btn:hover {
      background: #1c3b5a;
      box-shadow: 0 10px 22px -8px rgba(11, 29, 48, 0.25);
      transform: scale(1.02);
    }

    .cmhc-btn-outline {
      background: transparent;
      color: #0b1d30;
      border: 1px solid #b8ccdf;
      box-shadow: none;
    }

    .cmhc-btn-outline:hover {
      background: #f1f6fc;
      border-color: #2563eb;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.06);
    }

    /* ---------- responsive ---------- */
    @media (max-width: 700px) {
      .cmhc-cta-wrap { flex-direction: column; align-items: stretch; }
      .cmhc-btn-group { width: 100%; }
      .cmhc-btn { width: 100%; text-align: center; padding: 0.8rem 1.2rem; }
      .cmhc-cta-left { flex-direction: column; align-items: flex-start; }
      .cmhc-list-highlight { grid-template-columns: 1fr; padding: 1rem 1.4rem; }
    }

    @media (max-width: 500px) {
      .cmhc-grid { grid-template-columns: 1fr; }
      .cmhc-card { padding: 1.2rem; }
      .cmhc-spec-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (min-width: 701px) and (max-width: 1024px) {
      .cmhc-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ---------- extra unique touches ---------- */
    .cmhc-stock-badge {
      background: #e2f0e2;
      color: #166534;
      padding: 0.1rem 0.9rem;
      border-radius: 40px;
      font-size: 0.65rem;
      font-weight: 600;
      text-transform: uppercase;
      border: 1px solid #b8d5b8;
      display: inline-block;
      margin-left: 0.2rem;
    }

    .cmhc-meta-footer {
      margin-top: 1.2rem;
      font-size: 0.8rem;
      color: #7a8b9f;
      border-top: 1px solid #eef3f8;
      padding-top: 1rem;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .cmhc-meta-footer a {
      color: #1e4a7a;
      text-decoration: none;
      font-weight: 500;
    }
    .cmhc-meta-footer a:hover { text-decoration: underline; }

    .cmhc-dot-green {
      display: inline-block;
      width: 8px;
      height: 8px;
      background: #22c55e;
      border-radius: 50%;
      margin-right: 4px;
    }

    /* inline "why choose" list */
    .cmhc-why-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.3rem 1.2rem;
      background: #f8fbfe;
      padding: 0.6rem 1.2rem;
      border-radius: 60px;
      margin: 0.8rem 0 0.2rem 0;
      border: 1px solid #e2ebf3;
    }

    .cmhc-why-list span {
      font-size: 0.9rem;
      color: #1a3350;
    }


  /*pipe-fittings-exporters-in-mumbai page*/
   /* ---------- global reset (cmpf namespace) ---------- */
    .cmpf-wrapper *,
    .cmpf-wrapper *::before,
    .cmpf-wrapper *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .cmpf-wrapper {
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      background: #f4f8fc;
      color: #1a2639;
      padding: 2.5rem 1.2rem;
      display: flex;
      justify-content: center;
      line-height: 1.5;
    }

    .cmpf-container {
      max-width: 1260px;
      width: 100%;
      background: #ffffff;
      border-radius: 2.8rem;
      box-shadow: 0 20px 48px -16px rgba(0, 20, 40, 0.08), 0 4px 14px rgba(0,0,0,0.02);
      padding: 2.8rem 2.5rem;
      transition: box-shadow 0.2s;
    }

    @media (max-width: 640px) {
      .cmpf-container { padding: 1.8rem 1.2rem; border-radius: 1.8rem; }
      .cmpf-wrapper { padding: 1.2rem 0.6rem; }
    }

    /* ---------- heading & meta ---------- */
    .cmpf-head .cmpf-badge {
      display: inline-block;
      background: #dce9f5;
      color: #134074;
      font-weight: 600;
      font-size: 0.7rem;
      letter-spacing: 0.4px;
      padding: 0.25rem 1.2rem;
      border-radius: 40px;
      text-transform: uppercase;
      border: 1px solid #b7cee8;
      margin-bottom: 0.5rem;
    }

    .cmpf-head h1 {
      font-size: 2.6rem;
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: #0b1d30;
    }

    .cmpf-head h1 span {
      background: linear-gradient(145deg, #1d4b7a, #2563eb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cmpf-sub {
      font-size: 1.1rem;
      color: #334e68;
      margin-top: 0.6rem;
      padding-left: 1.2rem;
      border-left: 4px solid #2563eb;
      background: #f2f6fc;
      border-radius: 0 12px 12px 0;
      padding: 0.7rem 1.6rem;
      font-weight: 400;
      max-width: 780px;
    }

    .cmpf-sub strong { font-weight: 600; color: #0b1d30; }

    @media (max-width: 600px) {
      .cmpf-head h1 { font-size: 2rem; }
      .cmpf-sub { font-size: 1rem; padding: 0.5rem 1rem; }
    }

    /* ---------- content paragraphs ---------- */
    .cmpf-content p {
      margin: 1.3rem 0 0.8rem 0;
      color: #1e2f44;
      font-size: 1rem;
      line-height: 1.7;
    }

    .cmpf-content p:first-of-type { margin-top: 1.6rem; }
    .cmpf-content strong { color: #0b1d30; font-weight: 600; }

    /* ---------- feature grid cards ---------- */
    .cmpf-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 1.8rem;
      margin: 2rem 0 1.8rem 0;
    }

    .cmpf-card {
      background: #fafcff;
      border-radius: 1.6rem;
      padding: 1.6rem 1.4rem;
      border: 1px solid #e2ebf3;
      transition: all 0.2s ease;
      box-shadow: 0 2px 6px rgba(0,0,0,0.01);
    }

    .cmpf-card:hover {
      transform: translateY(-5px);
      border-color: #b3cbe5;
      background: #ffffff;
      box-shadow: 0 16px 28px -12px rgba(37, 99, 235, 0.08), 0 4px 12px rgba(0,0,0,0.02);
    }

    .cmpf-card h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: #0b1d30;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .cmpf-card h3 i { font-style: normal; font-size: 1.3rem; }

    .cmpf-card ul {
      list-style: none;
      margin-top: 0.4rem;
    }

    .cmpf-card ul li {
      padding: 0.2rem 0 0.2rem 1.4rem;
      position: relative;
      font-size: 0.92rem;
      color: #2a405a;
    }

    .cmpf-card ul li::before {
      content: "▹";
      position: absolute;
      left: 0;
      color: #2563eb;
      font-weight: 600;
    }

    .cmpf-card .cmpf-tag {
      display: inline-block;
      margin-top: 0.7rem;
      background: #e7eef8;
      padding: 0.15rem 0.9rem;
      border-radius: 40px;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2px;
      color: #1a4b7a;
      border: 1px solid #cddef0;
    }

    /* ---------- styled lists (highlights) ---------- */
    .cmpf-list-highlight {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0.6rem 1.2rem;
      background: #f4f8fe;
      padding: 1.2rem 1.8rem;
      border-radius: 1.8rem;
      margin: 1.5rem 0 1rem 0;
      border: 1px solid #deeaf5;
    }

    .cmpf-list-highlight span {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.95rem;
      color: #1a3350;
    }

    .cmpf-list-highlight span::before {
      content: "✔";
      color: #2563eb;
      font-weight: 700;
      margin-right: 0.2rem;
    }

    /* two column list for specs */
    .cmpf-spec-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 0.2rem 0.8rem;
      background: #ffffff;
      padding: 0.6rem 0.4rem;
      border-radius: 1.2rem;
    }

    .cmpf-spec-grid .cmpf-spec-item {
      padding: 0.25rem 0.4rem 0.25rem 1.8rem;
      position: relative;
      font-size: 0.95rem;
      color: #1e3349;
    }

    .cmpf-spec-grid .cmpf-spec-item::before {
      content: "◆";
      position: absolute;
      left: 0;
      color: #2563eb;
      font-size: 0.7rem;
      top: 0.3rem;
    }

    /* ---------- cta section ---------- */
    .cmpf-cta-wrap {
      margin-top: 2.2rem;
      padding-top: 2rem;
      border-top: 1px solid #dce6f0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .cmpf-cta-left {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.8rem 1.5rem;
    }

    .cmpf-cta-phone {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      background: #eaf1fa;
      padding: 0.3rem 1rem 0.3rem 0.6rem;
      border-radius: 60px;
      border: 1px solid #cbdcee;
      font-weight: 600;
      color: #0b1d30;
    }

    .cmpf-cta-phone a {
      text-decoration: none;
      color: #0b1d30;
      font-weight: 600;
    }

    .cmpf-cta-phone a:hover { color: #2563eb; }

    .cmpf-btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .cmpf-btn {
      display: inline-block;
      background: #0b1d30;
      color: white;
      font-weight: 600;
      padding: 0.8rem 2.2rem;
      border-radius: 60px;
      text-decoration: none;
      font-size: 0.95rem;
      border: 1px solid #1d3f5c;
      box-shadow: 0 6px 14px -6px rgba(11, 29, 48, 0.15);
      transition: background 0.15s, transform 0.1s, box-shadow 0.2s;
      cursor: default;
    }

    .cmpf-btn:hover {
      background: #1c3b5a;
      box-shadow: 0 10px 22px -8px rgba(11, 29, 48, 0.25);
      transform: scale(1.02);
    }

    .cmpf-btn-outline {
      background: transparent;
      color: #0b1d30;
      border: 1px solid #b8ccdf;
      box-shadow: none;
    }

    .cmpf-btn-outline:hover {
      background: #f1f6fc;
      border-color: #2563eb;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.06);
    }

    /* ---------- responsive ---------- */
    @media (max-width: 700px) {
      .cmpf-cta-wrap { flex-direction: column; align-items: stretch; }
      .cmpf-btn-group { width: 100%; }
      .cmpf-btn { width: 100%; text-align: center; padding: 0.8rem 1.2rem; }
      .cmpf-cta-left { flex-direction: column; align-items: flex-start; }
      .cmpf-list-highlight { grid-template-columns: 1fr; padding: 1rem 1.4rem; }
    }

    @media (max-width: 500px) {
      .cmpf-grid { grid-template-columns: 1fr; }
      .cmpf-card { padding: 1.2rem; }
      .cmpf-spec-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (min-width: 701px) and (max-width: 1024px) {
      .cmpf-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ---------- extra unique touches ---------- */
    .cmpf-stock-badge {
      background: #e2f0e2;
      color: #166534;
      padding: 0.1rem 0.9rem;
      border-radius: 40px;
      font-size: 0.65rem;
      font-weight: 600;
      text-transform: uppercase;
      border: 1px solid #b8d5b8;
      display: inline-block;
      margin-left: 0.2rem;
    }

    .cmpf-meta-footer {
      margin-top: 1.2rem;
      font-size: 0.8rem;
      color: #7a8b9f;
      border-top: 1px solid #eef3f8;
      padding-top: 1rem;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .cmpf-meta-footer a {
      color: #1e4a7a;
      text-decoration: none;
      font-weight: 500;
    }
    .cmpf-meta-footer a:hover { text-decoration: underline; }

    .cmpf-dot-green {
      display: inline-block;
      width: 8px;
      height: 8px;
      background: #22c55e;
      border-radius: 50%;
      margin-right: 4px;
    }

    /* inline "why choose" list */
    .cmpf-why-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.3rem 1.2rem;
      background: #f8fbfe;
      padding: 0.6rem 1.2rem;
      border-radius: 60px;
      margin: 0.8rem 0 0.2rem 0;
      border: 1px solid #e2ebf3;
    }

    .cmpf-why-list span {
      font-size: 0.9rem;
      color: #1a3350;
    }


  /*pipe-fittings-manufacturers-in-mumbai*/

  /* ---------- global reset (cmpfm namespace) ---------- */
    .cmpfm-wrapper *,
    .cmpfm-wrapper *::before,
    .cmpfm-wrapper *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .cmpfm-wrapper {
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      background: #f4f8fc;
      color: #1a2639;
      padding: 2.5rem 1.2rem;
      display: flex;
      justify-content: center;
      line-height: 1.5;
    }

    .cmpfm-container {
      max-width: 1260px;
      width: 100%;
      background: #ffffff;
      border-radius: 2.8rem;
      box-shadow: 0 20px 48px -16px rgba(0, 20, 40, 0.08), 0 4px 14px rgba(0,0,0,0.02);
      padding: 2.8rem 2.5rem;
      transition: box-shadow 0.2s;
    }

    @media (max-width: 640px) {
      .cmpfm-container { padding: 1.8rem 1.2rem; border-radius: 1.8rem; }
      .cmpfm-wrapper { padding: 1.2rem 0.6rem; }
    }

    /* ---------- heading & meta ---------- */
    .cmpfm-head .cmpfm-badge {
      display: inline-block;
      background: #dce9f5;
      color: #134074;
      font-weight: 600;
      font-size: 0.7rem;
      letter-spacing: 0.4px;
      padding: 0.25rem 1.2rem;
      border-radius: 40px;
      text-transform: uppercase;
      border: 1px solid #b7cee8;
      margin-bottom: 0.5rem;
    }

    .cmpfm-head h1 {
      font-size: 2.6rem;
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: #0b1d30;
    }

    .cmpfm-head h1 span {
      background: linear-gradient(145deg, #1d4b7a, #2563eb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cmpfm-sub {
      font-size: 1.1rem;
      color: #334e68;
      margin-top: 0.6rem;
      padding-left: 1.2rem;
      border-left: 4px solid #2563eb;
      background: #f2f6fc;
      border-radius: 0 12px 12px 0;
      padding: 0.7rem 1.6rem;
      font-weight: 400;
      max-width: 780px;
    }

    .cmpfm-sub strong { font-weight: 600; color: #0b1d30; }

    @media (max-width: 600px) {
      .cmpfm-head h1 { font-size: 2rem; }
      .cmpfm-sub { font-size: 1rem; padding: 0.5rem 1rem; }
    }

    /* ---------- content paragraphs ---------- */
    .cmpfm-content p {
      margin: 1.3rem 0 0.8rem 0;
      color: #1e2f44;
      font-size: 1rem;
      line-height: 1.7;
    }

    .cmpfm-content p:first-of-type { margin-top: 1.6rem; }
    .cmpfm-content strong { color: #0b1d30; font-weight: 600; }

    /* ---------- feature grid cards ---------- */
    .cmpfm-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 1.8rem;
      margin: 2rem 0 1.8rem 0;
    }

    .cmpfm-card {
      background: #fafcff;
      border-radius: 1.6rem;
      padding: 1.6rem 1.4rem;
      border: 1px solid #e2ebf3;
      transition: all 0.2s ease;
      box-shadow: 0 2px 6px rgba(0,0,0,0.01);
    }

    .cmpfm-card:hover {
      transform: translateY(-5px);
      border-color: #b3cbe5;
      background: #ffffff;
      box-shadow: 0 16px 28px -12px rgba(37, 99, 235, 0.08), 0 4px 12px rgba(0,0,0,0.02);
    }

    .cmpfm-card h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: #0b1d30;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .cmpfm-card h3 i { font-style: normal; font-size: 1.3rem; }

    .cmpfm-card ul {
      list-style: none;
      margin-top: 0.4rem;
    }

    .cmpfm-card ul li {
      padding: 0.2rem 0 0.2rem 1.4rem;
      position: relative;
      font-size: 0.92rem;
      color: #2a405a;
    }

    .cmpfm-card ul li::before {
      content: "▹";
      position: absolute;
      left: 0;
      color: #2563eb;
      font-weight: 600;
    }

    .cmpfm-card .cmpfm-tag {
      display: inline-block;
      margin-top: 0.7rem;
      background: #e7eef8;
      padding: 0.15rem 0.9rem;
      border-radius: 40px;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2px;
      color: #1a4b7a;
      border: 1px solid #cddef0;
    }

    /* ---------- styled lists (highlights) ---------- */
    .cmpfm-list-highlight {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0.6rem 1.2rem;
      background: #f4f8fe;
      padding: 1.2rem 1.8rem;
      border-radius: 1.8rem;
      margin: 1.5rem 0 1rem 0;
      border: 1px solid #deeaf5;
    }

    .cmpfm-list-highlight span {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.95rem;
      color: #1a3350;
    }

    .cmpfm-list-highlight span::before {
      content: "✔";
      color: #2563eb;
      font-weight: 700;
      margin-right: 0.2rem;
    }

    /* two column list for specs */
    .cmpfm-spec-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 0.2rem 0.8rem;
      background: #ffffff;
      padding: 0.6rem 0.4rem;
      border-radius: 1.2rem;
    }

    .cmpfm-spec-grid .cmpfm-spec-item {
      padding: 0.25rem 0.4rem 0.25rem 1.8rem;
      position: relative;
      font-size: 0.95rem;
      color: #1e3349;
    }

    .cmpfm-spec-grid .cmpfm-spec-item::before {
      content: "◆";
      position: absolute;
      left: 0;
      color: #2563eb;
      font-size: 0.7rem;
      top: 0.3rem;
    }

    /* ---------- cta section ---------- */
    .cmpfm-cta-wrap {
      margin-top: 2.2rem;
      padding-top: 2rem;
      border-top: 1px solid #dce6f0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .cmpfm-cta-left {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.8rem 1.5rem;
    }

    .cmpfm-cta-phone {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      background: #eaf1fa;
      padding: 0.3rem 1rem 0.3rem 0.6rem;
      border-radius: 60px;
      border: 1px solid #cbdcee;
      font-weight: 600;
      color: #0b1d30;
    }

    .cmpfm-cta-phone a {
      text-decoration: none;
      color: #0b1d30;
      font-weight: 600;
    }

    .cmpfm-cta-phone a:hover { color: #2563eb; }

    .cmpfm-btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .cmpfm-btn {
      display: inline-block;
      background: #0b1d30;
      color: white;
      font-weight: 600;
      padding: 0.8rem 2.2rem;
      border-radius: 60px;
      text-decoration: none;
      font-size: 0.95rem;
      border: 1px solid #1d3f5c;
      box-shadow: 0 6px 14px -6px rgba(11, 29, 48, 0.15);
      transition: background 0.15s, transform 0.1s, box-shadow 0.2s;
      cursor: default;
    }

    .cmpfm-btn:hover {
      background: #1c3b5a;
      box-shadow: 0 10px 22px -8px rgba(11, 29, 48, 0.25);
      transform: scale(1.02);
    }

    .cmpfm-btn-outline {
      background: transparent;
      color: #0b1d30;
      border: 1px solid #b8ccdf;
      box-shadow: none;
    }

    .cmpfm-btn-outline:hover {
      background: #f1f6fc;
      border-color: #2563eb;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.06);
    }

    /* ---------- responsive ---------- */
    @media (max-width: 700px) {
      .cmpfm-cta-wrap { flex-direction: column; align-items: stretch; }
      .cmpfm-btn-group { width: 100%; }
      .cmpfm-btn { width: 100%; text-align: center; padding: 0.8rem 1.2rem; }
      .cmpfm-cta-left { flex-direction: column; align-items: flex-start; }
      .cmpfm-list-highlight { grid-template-columns: 1fr; padding: 1rem 1.4rem; }
    }

    @media (max-width: 500px) {
      .cmpfm-grid { grid-template-columns: 1fr; }
      .cmpfm-card { padding: 1.2rem; }
      .cmpfm-spec-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (min-width: 701px) and (max-width: 1024px) {
      .cmpfm-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ---------- extra unique touches ---------- */
    .cmpfm-stock-badge {
      background: #e2f0e2;
      color: #166534;
      padding: 0.1rem 0.9rem;
      border-radius: 40px;
      font-size: 0.65rem;
      font-weight: 600;
      text-transform: uppercase;
      border: 1px solid #b8d5b8;
      display: inline-block;
      margin-left: 0.2rem;
    }

    .cmpfm-meta-footer {
      margin-top: 1.2rem;
      font-size: 0.8rem;
      color: #7a8b9f;
      border-top: 1px solid #eef3f8;
      padding-top: 1rem;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .cmpfm-meta-footer a {
      color: #1e4a7a;
      text-decoration: none;
      font-weight: 500;
    }
    .cmpfm-meta-footer a:hover { text-decoration: underline; }

    .cmpfm-dot-green {
      display: inline-block;
      width: 8px;
      height: 8px;
      background: #22c55e;
      border-radius: 50%;
      margin-right: 4px;
    }

    /* inline "why choose" list */
    .cmpfm-why-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.3rem 1.2rem;
      background: #f8fbfe;
      padding: 0.6rem 1.2rem;
      border-radius: 60px;
      margin: 0.8rem 0 0.2rem 0;
      border: 1px solid #e2ebf3;
    }

    .cmpfm-why-list span {
      font-size: 0.9rem;
      color: #1a3350;
    }