:root {
  --primary: #7ac121;
  --primary-dark: #5e9a1b;
  --light-bg: #EFF6EF;
  --text-dark: #2d3748;
}

/* About Section */
.about-section {
  padding: 60px 0;
}

.about-section img {
  width: 100%;
  max-width: 450px;
  height: auto;
}

/* Vision & Goal Section */
.vision-goal-section {
  background-color: #f8fbfd;
}

.card-custom {
  background-color: #ffffff;
  padding: 30px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-custom img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.btn-shop {
  background-color: var(--primary);
  color: white;
  border: none;
  margin-top: 15px;
}

.btn-shop:hover {
  background-color: var(--primary-dark);
}

/* Why Choose Us Section */
.section-title {
  color: var(--primary);
}

.section-title-underline {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}

.feature-icon img {
  width: 40px;
  height: 40px;
}

.feature-box {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
  background-color: rgba(122, 193, 33, 0.05);
  border-top: 3px solid var(--primary);
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(122, 193, 33, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.feature-image {
  max-height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Testimonials Section */
.testimonial-subtitle {
  color: var(--primary);
}

.testimonial-box {
  background-color: #f8f9fa;
  padding: 25px;
  border-left: 4px solid var(--primary);
  margin: 15px 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.testimonial-box i {
  color: var(--primary);
  font-size: 20px;
}

.testimonial-box .stars {
  color: gold;
  margin-top: 10px;
}

.testimonial-box p {
  font-style: italic;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-role {
  color: var(--primary);
  font-size: 14px;
}

/* Animation Keyframes */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .feature-box {
    margin-bottom: 20px !important;
  }
  
  .col-md-6:last-child .feature-box:last-child {
    margin-bottom: 0 !important;
  }
}

.breadcrumb-section {
      background: url('images/allproduct.png') no-repeat left top;
      background-size: cover;
      padding: 80px 0;
      position: relative;
      background-color: #f4fafc;
    }

    .breadcrumb-box {
      background: white;
      text-align: center;
      padding: 30px;
      max-width: 400px;
      margin: auto;
      border-top: 3px solid #8bc34a;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .breadcrumb-box h1 {
      font-weight: 700;
      margin: 10px 0 0;
    }

    .breadcrumb-box small {
      color: #8bc34a;
      font-weight: 500;
    }

    .grocery-image {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 300px;
      height: auto;
    }

    @media(max-width: 768px) {
      .grocery-image {
        display: none;
      }
    }