.page-bannerr3 {
  position: relative;
  width: 100%;
  height: 360px;
  background: url("img/img/chillibanner.png") center / cover no-repeat;
  margin-top: 80px;
  overflow: hidden;
}
/* Container */
.chilli-varieties-section,
.chilli-usage-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.chilli-varieties-section h2,
.chilli-usage-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #2a2a2a;
}

/* Chilli Cards */
.chilli-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.chilli-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 250px;
  transition: transform 0.4s, box-shadow 0.4s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.chilli-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.chilli-card h4 {
  margin: 10px 0;
  color: #d32f2f; /* Red for chilli theme */
}

.chilli-card p {
  font-size: 14px;
  color: #555;
}

/* Hover effect */
.chilli-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Usage Section */
.usage-cards {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.usage-cards li {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 220px;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.usage-cards li span {
  font-size: 24px;
}

.usage-cards li:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
