body {
  font-family: Arial, sans-serif;
  background: #fffdf6;
}

/* Hero Heading */
.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
}
.hero h1 span {
  color: #f97316;
}

/* Buttons */
.btn-primary-custom {
  background: #f97316;
  border: none;
}
.btn-primary-custom:hover {
  background: #ea580c;
}
.btn-outline-custom {
  border: 2px solid #f97316;
  color: #f97316;
}
.btn-outline-custom:hover {
  background: #fff7ed;
}

/* Image with text overlays */
.image-container {
  position: relative;
  display: inline-block;
  max-width: 350px;
  margin: auto;
}
.image-container img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Labels */
.image-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.2;
}
.image-label.top {
  top: 10px;
  left: 10px;
}
.image-label.bottom {
  bottom: 10px;
  right: 10px;
}

/* Navbar Hover Effect */
.navbar .nav-link {
  position: relative;
  color: #333;
  transition: color 0.3s;
  margin-left: 50px;
}
.navbar .nav-link:hover {
  color: #f97316;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f97316;
  transition: width 0.3s;
}
.navbar .nav-link:hover::after {
  width: 100%;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .image-label {
    font-size: 0.8rem;
    padding: 8px 12px;
    gap: 6px;
  }
}

.icon-custom {
  font-size: 2rem;
  color: #c96b1e; /* same orange as in screenshot */
}
.card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
}

.comparison-section {
  background: #f8f9fa;
  padding: 60px 0;
}
.comparison-card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
}
.harvestri {
  background: #fff3e6;
  border: 2px solid #e07b39;
}
.harvestri h4 {
  color: #e07b39;
  font-weight: bold;
}
.others {
  background: #ffffff;
  border: 1px solid #ddd;
}
.others h4 {
  color: #6c757d;
  font-weight: bold;
}
.check {
  color: green;
  font-weight: bold;
}
.cross {
  color: red;
  font-weight: bold;
}

.step-card {
  border-radius: 12px;
  padding: 25px;
  background: #fff;
  border: 1px solid #eee;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  background: #d97706; /* Orange */
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-btn {
  background: #d97706;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  transition: background 0.3s ease;
  border: none;
}
.cta-btn:hover {
  background: #b45309;
  color: #fff;
}

.benefits-section {
  background: #fffaf5;
  padding: 60px 0;
}
.benefit-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  height: 100%;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
}
.benefit-icon {
  font-size: 2rem;
  color: #d97706; /* orange */
  margin-bottom: 15px;
}

.reviews-section {
  background: #fff;
  padding: 60px 0;
}
.review-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
}
.stars {
  color: #fbbf24; /* golden */
  margin-bottom: 10px;
}
.customer-initial {
  width: 45px;
  height: 45px;
  background: #fde68a;
  color: #92400e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 50%;
  margin-right: 10px;
}
.customer-info {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.product-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
}
.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.product-info {
  padding: 20px;
}
.price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #d97706;
}
.btn-buy {
  background: #d97706;
  color: #fff;
  border-radius: 8px;
  transition: 0.3s;
}
.btn-buy:hover {
  background: #b45309;
  color: #fff;
}

.cta-section {
  background-color: #d97706; /* orange */
  color: white;
  padding: 80px 20px;
  text-align: center;
}
.cta-section h2 {
  font-weight: 700;
  margin-bottom: 15px;
}
.cta-btn {
  background: white;
  color: #d97706;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 30px;
  transition: 0.3s;
  margin-top: 20px;
}
.cta-btn:hover {
  background: #f3f4f6;
  color: #b45309;
}
.cta-icons {
  margin-top: 40px;
}
.cta-icons i {
  font-size: 1.3rem;
  margin-right: 8px;
  color: #22c55e; /* green check for 1st */
}
.cta-icons span {
  color: white;
  margin: 0 15px;
}
.cta-icons .secure i {
  color: #fff; /* secure payment icon white */
}
.cta-icons .dispatch i {
  color: #fff; /* clock icon white */
}

.faq-section {
  padding: 80px 20px;
  background: #fff;
}
.faq-section h2 {
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
.faq-section p {
  text-align: center;
  color: #6b7280;
  margin-bottom: 40px;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button {
  font-weight: 600;
  color: #111827;
}
.accordion-button:not(.collapsed) {
  background-color: #f3f4f6;
  color: #d97706;
}
.contact-btn {
  background: #d97706;
  color: white;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.contact-btn:hover {
  background: #b45309;
  color: white;
}
.faq-footer {
  text-align: center;
  margin-top: 40px;
}
