/* Basic reset and body styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .product-section {
    padding: 3rem;
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .product-section h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  /* Grid Layout for Product Cards */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* 3 equal columns */
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  /* Styling for each product card */
  .product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  
  /* Hover effects for product cards */
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Image styling */
  .product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
  }
  
  /* Zoom effect on image hover */
  .product-card img:hover {
    transform: scale(1.05);  /* Slight zoom-in effect */
  }
  
  /* Heading and text styling */
  .product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
  }
  
  .product-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
  }
  
  /* Footer Styling */
  .footer {
    text-align: center;
    padding: 1rem;
    background-color: #f5f5f5;
    position: relative;
    bottom: 0;
    width: 100%;
  }

  /* Responsive layout for smaller screens */
@media (max-width: 768px) {
  .product-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .product-card {
    width: 90%;
    max-width: 400px;
    text-align: center;
  }

  .product-card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 8px;
  }

  .product-card img:hover {
    transform: scale(1.03);
  }
}


  