.product-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('cctv.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    margin-top: 60px;
  }
  
  .product-hero h1 {
    font-size: 2.5rem;
    color: #FFD700;
  }
  
  .product-hero p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #f1f1f1;
  }
  
  .products {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .product-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .product-item:hover {
    transform: translateY(-5px);
  }
  
  .product-item img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
  }
  
  .product-item h3 {
    color: #222;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .product-item p {
    color: #555;
    margin-bottom: 15px;
  }
  
  /* WhatsApp Enquiry Button */
  .whatsapp-enquiry {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .whatsapp-enquiry i {
    margin-right: 8px;
    font-size: 1.2rem;
  }
  
  .whatsapp-enquiry:hover {
    background-color: #1EBE5D;
  }
  