    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');


    /* Hero Section */
    .hero {
      height: 70vh;
      background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('http://localhost/panchihub/image/image1.jpg') center/cover;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #ffffff;
      color: white;
      padding: 20px;
    }
    .hero h2 {
      font-size: 50px;
      margin-bottom: 10px;
      animation: fadeIn 1.2s ease;
    }
    .hero p {
      font-size: 18px;
      animation: fadeIn 2s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Product Section */
    .section-title {
      text-align: center;
      margin: 40px 0 10px;
      font-size: 28px;
      font-weight: 600;
    }

    .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
      padding: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .product-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.12);
      transition: 0.3s;
    }

    .product-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .product-details {
      padding: 15px;
      text-align: center;
    }

    .product-details h3 {
      margin-bottom: 5px;
    }

    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.18);
    }

    .product-card button {
      margin-top: 10px;
      padding: 10px 18px;
      background: #2c3e50;
      color: white;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      transition: 0.3s;
    }
    .product-card button:hover {
      background: #1a242f;
    }

    /* Footer */
    footer {
      background: #2c3e50;
      color: white;
      text-align: center;
      padding: 25px;
      margin-top: 50px;
    }