/* Container */


.page-bannerrp {
  position: relative;
  width: 100%;
  height: 360px;
  background: url("img/img/pomengranatebanner.png") center / cover no-repeat;
  margin-top: 80px;
  overflow: hidden;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #b71c1c;
  font-weight: 700;
}

/* ================= Pomegranate Varieties ================= */
.pomegranate-varieties-section {
  background-color: #fff0f0;
  padding: 60px 0;
}

.variety-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.variety-card {
  background: #fff;
  border-radius: 15px;
  width: 250px;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.variety-card img {
  width: 100%;
  height: 200px;
  border-radius: 15px;
  object-fit: cover;
  margin-bottom: 15px;
}

.variety-card h4 {
  margin-bottom: 10px;
  color: #d32f2f;
}

.variety-card p {
  font-size: 0.9rem;
  color: #555;
}

/* Hover Effect */
.variety-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

/* ================= Pomegranate Usage ================= */
.pomegranate-usage-section {
  background-color: #ffe6e6;
  padding: 60px 0;
}

.usage-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.usage-card {
  background: #fff;
  width: 220px;
  text-align: center;
  padding: 25px 15px;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.usage-card span {
  font-size: 2rem;
  display: block;
  margin-bottom: 15px;
}

.usage-card h4 {
  margin-bottom: 10px;
  color: #d32f2f;
}

.usage-card p {
  font-size: 0.9rem;
  color: #555;
}

/* Hover effect for usage cards */
.usage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .variety-cards, .usage-cards {
    flex-direction: column;
    align-items: center;
  }
  .variety-card, .usage-card {
    width: 90%;
  }
}
