.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.product-title {
  font-size: 18px;
  margin: 10px 0;
}

.pagination ul {
  display: flex;
  list-style: none;
  justify-content: center;
  padding: 0;
}

.pagination li {
  margin: 0 5px;
}

.pagination a,
.pagination span {
  display: block;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
}

.pagination .current {
  background: #0a5e2c;
  color: #fff;
  border-color: #0a5e2c;
}

.pagination-wrapper .nav-links {
  display: flex;
  gap: 10px;
}

.img-box img {
  height: 100%;
  object-fit: contain;
}



.products-section {
  text-align: center;
  padding: 0 20px 60px 20px;
  /* background: #fff; */
  color: #333;
  font-family: "Open Sans", sans-serif;
}

.products-section h2 {
  font-size: 24px;
  color: #004b8d;
  text-transform: uppercase;
  font-weight: 700;
}

.products-section h2 span {
  color: #333;
}

.products-section p {
  max-width: 800px;
  margin: 15px auto;
  line-height: 1.7;
  color: #555;
}

.cta-buttons {
  margin-top: 20px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  text-decoration: none;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
}

.btn-primary {
  background: #003366;
}

.btn-secondary {
  background: #ff7a00;
}

.btn-primary:hover {
  background: #004b8d;
}

.btn-secondary:hover {
  background: #e66a00;
}

.subheading {
  margin-top: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.product-card {
  /* background: #fff; */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}

.product-card .model {
  color: #ff7a00;
  font-weight: bold;
  margin-top: 10px;
}

.product-card .name {
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
}

.view-btn {
  background: #003366;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

.view-btn:hover {
  background: #004b8d;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.pagination-wrapper .page-numbers {
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
}

.pagination-wrapper .page-numbers.current {
  background-color: #003366;
  color: #fff;
  border-color: #003366;
}