body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding-top: 100px;
  background-color: #fff;
  color: #222;
}

/*.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #e6f2ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #003366;
  font-weight: 600;
}*/

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.product-card {
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.3s ease;
}

.product-card h3 {
  font-size: 18px;
  color: #003366;
  margin: 10px 0;
}

.load-more-container {
  text-align: center;
  margin: 40px 0;
}

#load-more-btn {
  padding: 12px 30px;
  font-size: 16px;
  background-color: #0078ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

#load-more-btn:hover {
  background-color: #005ecb;
}

@media (max-width: 900px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products {
    grid-template-columns: 1fr;
  }
}

.page-title {
  text-align: center;
  margin-top: 120px;
  color: #003366;
}

.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.3s ease;
  filter: brightness(70%);
}

.category-card h2 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.group-title {
  font-size: 28px;
  margin: 40px 0 20px 5px;
  font-weight: 700;
  color: #333;
  text-align: left;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 50px;
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}



