* {
  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: #E0E0E0;
  color: #000000;
  padding: 1.8rem;

  font-size: clamp(1.8rem, 4vw, 2.5rem); /* ~28px → 40px */
}

.text-just {
  text-align: justify;
}
.free-shipping {
  background-color: #017014;
}

.foot {
  background-color: #E0E0E0;
}

.foot2 {
  color: #290D04;
}

.glass-red {
background: linear-gradient(135deg, #3E8E7E 50% , #cafaec 50%);}


.hero-bg {
  min-height: 10vh;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bgnew{
  background-image: url(../assets/images/bg1.webp);
}
.bgnew1{
  background-image: url(../assets/images/bg2.webp);
}
.bgnew3{
  background-image: url(../assets/images/blue-leaf.webp);
}
.bgnew2{
  background-image: url(../assets/images/bg3.webp);
}
.bgnew4{
  background-image: url(../assets/images/bg4.webp);
}

.hero-overlay {
  padding: 6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Title */
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

/* Glass box */
.glass-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 1rem 2rem;
  padding: 1.5rem 2rem;
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.08)
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

/* Feature text */
.feature-item {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 600;
  text-align: left;
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .glass-features {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-item {
    text-align: center;
  }
}

/* Grid Layout */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* Ingredient Card */
.ingredient-card {
  position: relative;
  padding: 28px 22px 24px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f8f9fb 100%
  );
  border-radius: 20px;
  text-align: center;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 26px 55px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Image */
.ingredient-card img {
  width: 110px;
  height: auto;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Content */
.ingredient-content h4 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  color: #7550B8;
}

.ingredient-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #555;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .ingredient-card {
    padding: 24px 20px;
  }

  .ingredient-card img {
    width: 120px;
  }
}



.small-ban{
  background-color: #ffffff;
}

.footer{
  background-color: #e7ffeb;
}

svg.lucide {
  width: 40px;
  height: 40px;
}


/* testimonials */

/* testimonial cards */


.review-title {
  font-weight: 700;
  font-size: clamp(26px, 4vw, 40px);
  color: #2E7F3B;
}

/* Card */
.review-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
}

/* Image */
.review-img-wrap {
  display: flex;
  justify-content: center;
}

.review-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #2E7F3B;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Stars */
.stars i {
  color: #ffc107;
  margin-right: 2px;
}

/* Text */
.review-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* User */
.review-user strong {
  display: block;
  font-size: 16px;
  color: #222;
}

.review-user span {
  font-size: 13px;
  color: #888;
}
/* *****************accordion*********** */


/* Rounded accordion items */
.accordion-item {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid #e5e5e5;
}

/* Rounded top when closed */
.accordion-button {
  border-radius: 18px;
  padding: 18px 22px;
}

/* Rounded when opened */
.accordion-button:not(.collapsed) {
  border-radius: 18px 18px 0 0;
}

/* Space between icon and question text */
.accordion-button i {
  margin-right: 10px;
}

/* Space between question and arrow */
.accordion-button::after {
  margin-left: auto;
}

/* Body padding */
.accordion-body {
  padding: 20px 22px;
}