.gallery-container { margin: 40px; }
.gallery-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; justify-content: flex-start; }
.product-card { flex: 0 0 calc(25% - 10px); max-width: calc(25% - 10px); box-sizing: border-box; border: 1px solid #ddd; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; background-color: #fff; transition: transform 0.3s; }
.product-card:hover { transform: scale(1.03); }
.product-card img { width: 100%; height: auto; }
.product-info { padding: 10px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.read-more-btn { display: inline-block; margin-top: 10px; padding: 6px 10px; text-align: center; background-color: #103178; color: #fff; border-radius: 5px; text-decoration: none; font-size: 14px; }
.read-more-btn:hover { background-color: #103178; }
@media (max-width: 1024px) { .product-card { flex: 0 0 calc(50% - 10px); max-width: calc(50% - 10px); } }
@media (max-width: 600px) { .product-card { flex: 0 0 100%; max-width: 100%; } }
.cutting-capabilities .container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 24px;
    box-sizing: border-box;
    text-align: center; /* Center heading and table wrapper */
  }

  .cc-heading {
    font-size: 1.5rem;
    margin: 0 0 12px;
    font-weight: 600;
    color: #1f2937; /* dark slate */
  }

  /* Responsive wrapper */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
    background: #fff;
    padding: 8px;
    display: inline-block; /* Center the table wrapper */
  }

  /* Table base styles */
  .cutting-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px; /* keeps readable column widths on small screens; wrapper allows scroll */
    table-layout: auto;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    text-align: center; /* Center all cell content */
  }

  .cutting-table thead th {
    font-size: 0.95rem;
    padding: 12px 16px;
    border-bottom: 2px solid #e6e9ee;
    background: #fbfdff;
    position: sticky;
    top: 0;
    z-index: 1;
  }

  .cutting-table tbody td {
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #334155;
    vertical-align: middle; /* Center vertically */
    border-bottom: 1px solid #f1f5f9;
  }

  /* Zebra rows */
  .cutting-table tbody tr:nth-child(odd) { background: #ffffff; }
  .cutting-table tbody tr:nth-child(even) { background: #f8fafc; }

  /* Make the equipment name stand out */
  .cutting-table tbody td strong {
    font-weight: 600;
    color: #0f172a;
  }

  /* Small note */
  .note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center; /* Center note */
  }

  /* Accessibility helper (hidden caption) */
  .visually-hidden {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
  }

  /* Mobile tweaks */
  @media (max-width: 640px) {
    .cc-heading { font-size: 1.25rem; }
    .cutting-table thead th, .cutting-table tbody td { padding: 10px 12px; font-size: 0.92rem; }
    .cutting-table { min-width: 640px; }
  }
  .table-responsive { overflow-x: auto; }
  