.promo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border-radius: 12px;
  color: #fff;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 220px;
}

.promo-card .content {
  max-width: 60%;
}

.promo-card .content .subtitle {
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.9;
  display: block;
  margin-bottom: 8px;
}

.promo-card .content h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #fff !important;
}

.promo-card .content p {
  font-size: 15px;
  margin-bottom: 15px;
  color: #fff !important;
}

.promo-card .btn-buy {
  display: inline-block;
  padding: 8px 18px;
  background: #fff;
  color: #333;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.promo-card .btn-buy:hover {
  background: #333;
  color: #fff;
}

.promo-card .img img {
  width: 130px;
  transition: transform 0.8s ease;
}

/* Hover effect */
.promo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.promo-card:hover .img img {
  transform: scale(1.15);
}

/* Background colors */
.bg-rice { background: linear-gradient(135deg, #c48b3f, #dcae67); }
.bg-pulses { background: linear-gradient(135deg, #228b22, #66bb6a); }
.bg-spices { background: linear-gradient(135deg, #b22222, #e57373); }

.about-us-img-wrap img {
  max-width: 100%;
  height: 550px !important;
  width: 100%;
  border-radius: 10px;
}
