

.page-bannerrpl{
  position: relative;
  width: 100%;
  height: 360px;
  background: url("img/img/pulsesbanner.png") center / cover no-repeat;
  margin-top: 80px;
  overflow: hidden;
}
/* ====================== PULSES VARIETIES SECTION ====================== */
.pulses-varieties-section {
  padding: 80px 0;
  background: #f8f9fa;
  font-family: 'Arial', sans-serif;
}

.pulses-varieties-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

/* Horizontal Scroll for Pulses Cards */
.varieties-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-behavior: smooth;
}

.pulse-card {
  flex: 0 0 30%; /* 3 cards visible */
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}

.pulse-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.pulse-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #28a745;
}

.pulse-card p {
  font-size: 16px;
  color: #555;
}

.pulse-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  cursor: pointer;
}

/* Hide Scrollbar */
.varieties-cards::-webkit-scrollbar {
  display: none;
}
.varieties-cards {
  -ms-overflow-style: none;  
  scrollbar-width: none;  
}

/* ====================== PULSES USAGE SECTION ====================== */
.pulses-usage-section {
  padding: 80px 20px;
  background: #9dc0a5;
  color: #fff;
  font-family: 'Arial', sans-serif;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  margin-top: -50px; /* overlap slightly */
}

.pulses-usage-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.usage-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.usage-cards li {
  background: rgba(255,255,255,0.1);
  padding: 25px 20px;
  border-radius: 10px;
  flex: 0 0 250px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  transition: transform 0.3s, background 0.3s;
}

.usage-cards li:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.2);
}

.usage-cards li span {
  font-size: 28px;
}
