* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}



.footer li {
  margin-bottom: 10px;
}

.footer .nav-link:hover {
  text-decoration: underline !important;
}
.section-title {
  text-align: center;
  font-weight: 700;
  background-color: #2d5a18;
  color: #ffffff;
  padding: 1.8rem;
  font-size: clamp(24px, 4vw, 40px);
}

.text-just {
  text-align: left;
}
.free-shipping {
  background-color: #4e8635;
}

.foot {
  background-color: #4e8635;
}

.glass-purple {
background: linear-gradient(90deg, #000000, #4e8635, #102905);

}





/* benefits */
/* Benefit Card Styling */
/* Section */
.benefit-modern {
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* Card box */
.benefit-box {
  background: #ffffff;
  border-radius: 16px;
  position: relative;
  border: 1px solid #f1f1f1;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* top accent line */
.benefit-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #22c55e, #3b82f6);
}

/* hover */
.benefit-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

/* Icon */
.icon-box {
  width: 65px;
  height: 65px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Text */
.benefit-box p {
  color: #64748b;
  line-height: 1.6;
}

/* Hover icon effect */
.benefit-box:hover .icon-box {
  transform: scale(1.1);
  transition: 0.3s ease;
}

/* Mobile */
@media (max-width: 576px) {
  .benefit-box {
    padding: 20px;
  }
}
/* Ingredient Image */
/* SECTION BACKGROUND */
.ingredient-modern {
background: linear-gradient(90deg, #000000, #4e8635, #102905);
  padding: 60px 0;
}

/* CARD */
.ingredient-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  transition: 0.35s ease;
  height: 100%;
}

/* HOVER EFFECT */
.ingredient-box:hover {
  transform: translateY(-10px);
}

/* IMAGE CONTAINER */
.ingredient-img {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* IMAGE */
.ingredient-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: 0.3s ease;
}

/* IMAGE HOVER */
.ingredient-box:hover .ingredient-img img {
  transform: scale(1.08);
}

/* TEXT */
.ingredient-box h3 {
  color: #ffffff;
}

.ingredient-box p {
  color: #e5e7eb;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 576px) {
  .ingredient-img {
    width: 110px;
    height: 110px;
  }

  .ingredient-box {
    padding: 20px;
  }
}
/* why people choose */

/* Section */
.feature-section {
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* Timeline container */
.feature-timeline {
  position: relative;
  padding-left: 40px;
}

/* vertical line */
.feature-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #22c55e, #3b82f6);
  border-radius: 10px;
}

/* Item */
.feature-item {
  position: relative;
  margin-bottom: 40px;
  align-items: flex-start;
}

/* Icon */
.feature-icon {
  position: absolute;
  left: -5px;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.feature-icon img {
  max-width: 100%;
  max-height: 30px;
}

/* Box */
.feature-box {
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 16px;
  margin-left: 50px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

/* Hover */
.feature-box:hover {
  transform: translateX(6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Title */
.feature-box h3 {
  font-weight: 700;
  margin-bottom: 6px;
}

/* Text */
.feature-box p {
  color: #555;
}

/* Mobile */
@media (max-width: 576px) {
  .feature-timeline {
    padding-left: 0;
  }

  .feature-timeline::before {
    display: none;
  }

  .feature-icon {
    position: static;
    margin-bottom: 10px;
  }

  .feature-box {
    margin-left: 0;
    text-align: center;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
  }
}

/* testimonial */

/* Background */
.testimonial-section {
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
  padding: 60px 0;
}

/* Card */
.testimonial-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 24px;
  gap: 20px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* subtle gradient border glow */
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(120deg, #22c55e, #3b82f6);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: 0.4s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* Image */
.testimonial-img {
  width: 110px;
  height: 110px;
  min-width: 110px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

/* image overlay glow */
.testimonial-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.2));
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-img img {
  transform: scale(1.08);
}

/* Content */
.testimonial-content {
  position: relative;
}

/* Quote icon */
.quote-icon {
  font-size: 26px;
  color: #22c55e;
  margin-bottom: 10px;
  opacity: 0.9;
}

/* Stars */
.stars {
  color: #facc15;
  font-size: 18px;
  letter-spacing: 2px;
}

/* Name */
.testimonial-name {
  font-weight: 600;
  font-size: 18px;
  margin-top: 10px;
  color: #1f2937;
}

/* subtle divider */
.testimonial-content::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, #22c55e, #3b82f6);
  border-radius: 10px;
  margin-top: 12px;
}

/* Mobile */
@media (max-width: 576px) {
  .testimonial-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .testimonial-img {
    margin-bottom: 12px;
  }

  .testimonial-content .d-flex {
    justify-content: center !important;
    gap: 10px;
  }
}
/* free shipping */

.shipping-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f8f9fa;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.shipping-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
/* Image */
.shipping-img img {
  max-width: 160px;
  height: auto;
}

/* Content */
.shipping-content h3 {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.75rem; /* matches fs-3 */
}

.shipping-content h3 i {
  color: #28a745;
  margin-right: 8px;
}

.shipping-content p {
  font-size: 1.5rem; /* matches fs-4 */
  margin-bottom: 12px;
  color: #000000;
}

/* Badges */
.shipping-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shipping-badges span {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.shipping-badges i {
  color: #28a745;
}

/* Responsive */
@media (max-width: 768px) {
  .shipping-box {
    flex-direction: column;
    text-align: center;
  }

  .shipping-badges {
    justify-content: center;
  }
}

/* consistency section */
/* Section */
/* Section */
.modern-points {
  background: linear-gradient(90deg, #000000, #4e8635, #102905);
  position: relative;
  overflow: hidden;
}

/* soft glow background */
.modern-points::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;

  top: -120px;
  right: -120px;
}

/* Card */
.point-box {
  position: relative;
  padding: 20px 22px;
  border-radius: 16px;
  display: flex;
  gap: 18px;
  align-items: flex-start;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);

  transition: all 0.35s ease;
  overflow: hidden;
}

/* gradient border glow */
.point-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(120deg, #22c55e, #3b82f6);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: 0.4s ease;
}

/* subtle shine effect */
.point-box::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  top: -100%;
  left: -100%;
  transform: rotate(25deg);
  transition: 0.6s;
}

/* Hover */
.point-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.point-box:hover::before {
  opacity: 1;
}

.point-box:hover::after {
  top: 100%;
  left: 100%;
}

/* Number */
.point-number {
  font-size: 40px;
  font-weight: 800;
  min-width: 60px;
  color: #22c55e;
  position: relative;
}

/* glow behind number */
.point-number::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(34,197,94,0.4), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* Text */
.point-box p {
  color: #e2e8f0;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 576px) {
  .point-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .point-number {
    margin-bottom: 8px;
  }

  .point-box:hover {
    transform: none;
  }
}
/* built for everyday */

/* Points container */
.feature-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Each item */
.point-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s ease;
}

/* Hover effect */
.point-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Icon box */
.icon-box2 {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: 0.3s ease;
}

/* Icon hover */
.point-item:hover .icon-box2 {
  background: #22c55e;
  transform: scale(1.1);
}

/* Text */
.point-item p {
  font-size: 23px; /* matches fs-5 */
  line-height: 1.6;
  color: #f1f5f9;
}

/* Image styling */
.glass-purple img {
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Mobile */
@media (max-width: 576px) {
  .point-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icon-box2 {
    margin-bottom: 8px;
  }

  .point-item:hover {
    transform: none;
  }
}

/* hero section */

/* SECTION */


/* IMAGE WRAPPER */
.hero-img-wrap {
  position: relative;
}

/* MAIN PRODUCT IMAGE */
.hero-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  margin: 0 auto;
  background: transparent;
}

/* REMOVE GLOW/BORDER EFFECT */
.hero-img,
.hero-img-wrap img {
  box-shadow: none !important;
  border-radius: 0;
}

/* CERTIFICATION IMAGE */
.cert-img {
  width: 75%;
  max-width: 300px;
  margin-top: 15px;
}

/* MOBILE FIX */
@media (max-width: 576px) {

  .hero-img {
    max-width: 280px;
  }

  .cert-img {
    width: 90%;
    max-width: 260px;
  }

  .glass-purple {
    text-align: center;
  }
}