
.hero-section {
  background: none;
  background-image: url('image/dripkk.jpg'); /* your new image */
  height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  padding: 50px;
  width: 100%;
  color: #fff; /* You can change to #000 if text is not visible */
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-breadcrumb {
  font-size: 18px;
}

    .category-card {
      border: none;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      text-align: center;
      padding: 50px 10px;
      transition: transform 0.2s;
    }

    .category-card:hover {
      transform: scale(1.05);
    }

    
/* Product Card Image Styling - Global for all pages */
.category-image {
  width: 100%;
  max-height: 240px;   /* Increase as needed */
  object-fit: contain; /* Maintains aspect ratio */
  margin-bottom: 15px;
  padding: 10px;        /* Optional spacing inside card */
  /* background-color: #bff6b3;  */
}



    .category-title {
      margin-top: 15px;
      font-weight: bold;
      color: #4a2c2a;
      /* background: #489D01; */
    }

    .section-title {
      font-size: 2rem;
      font-weight: bold;
      color:#489D01;
      text-align: center;
      margin-bottom: 20px;
    }
    body {
      font-family: 'Segoe UI', sans-serif;
    }
 .product-img {
      max-width: 100%;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
