* {
  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: #334264;
  color: #ffffff;
  padding: 1.8rem;
  font-size: clamp(24px, 4vw, 40px);
}

.text-just {
  text-align: left;
}
.free-shipping {
  background-color: #192131;
}

.foot {
  background-color: #192131;
}

.glass-purple {
background: linear-gradient(135deg, #192131 50%, #334264 50%);

}





/* 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 {

  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 */
.testimonial-card-new {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.testimonial-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-img-new img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.quote-icon {
  font-size: 22px;
  color: #999;
}

.stars {
  color: #f5a623;
}
/* guarantee section */
.guarantee-glass {
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

/* GLASS CARD */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  padding: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* BADGE */
.glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

/* TEXT */
.glass-content h2 {
  color: #fff;
  font-size: 32px;
}

.glass-content p {
  color: #cbd5f5;
  font-size: 22px;
}

/* FEATURES */
.glass-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  padding: 10px 14px;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
}

.feature-item i {
  color: #22c55e;
}

/* IMAGE BOX */
.glass-badge-box {
  background: rgba(255,255,255,0.9);
  border-radius: 20px;
  padding: 20px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.glass-badge-box:hover {
  transform: translateY(-6px) scale(1.02);
}

/* IMAGE */
.glass-img {
  max-width: 140px;
  width: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
  .glass-card {
    padding: 25px;
  }

  .glass-content h2 {
    font-size: 26px;
  }

  .glass-features {
    justify-content: center;
  }
}

/* consistency section */
/* Section */
/* Section */
.points-modern-new {
 
}

/* CARD */
.point-card-new {
  position: relative;
  padding: 25px 20px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  height: 100%;
  transition: 0.3s ease;
}

/* HOVER */
.point-card-new:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* NUMBER BADGE */
.point-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* TEXT */
.point-card-new p {
  color: #cbd5f5;
}

/* MOBILE */
@media (max-width: 768px) {
  .point-card-new {
    text-align: center;
  }

  .point-badge {
    left: 50%;
    transform: translateX(-50%);
  }
}
/* built for everyday */

/* Points container */
.feature-modern {

}

/* CARD */
.feature-card-new {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
  height: 100%;
}

/* HOVER */
.feature-card-new:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ICON */
.feature-icon-new {
  min-width: 60px;
}

.feature-icon-new img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* CONTENT */
.feature-content h3 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 8px;
}

.feature-content p {
  color: #cbd5f5;
}

/* MOBILE */
@media (max-width: 768px) {
  .feature-card-new {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon-new {
    margin: 0 auto;
  }
}

/* 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;
  }
}


.hero-bg {
  min-height: 10vh;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bgnew{
  background-image: url(../assets/images/faq.webp);
}
.bgnew1{
  background-image: url(../assets/images/bgs1.webp);
}


/* free shipping */

.shipping-modern {
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

/* MAIN CARD */
.shipping-card {
  background: rgba(255,255,255,0.05);
  border-radius: 25px;
  padding: 35px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  transition: 0.3s ease;
}

.shipping-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.shipping-img-new {
  max-width: 220px;
  width: 100%;
}

/* CONTENT */
.shipping-content-new h2 {
  color: #fff;
  font-size: 30px;
}

.shipping-content-new p {
  color: #cbd5f5;
  font-size: 22px;
}

/* FEATURES */
.shipping-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.ship-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  padding: 10px 14px;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
}

.ship-feature i {
  color: #22c55e;
}

/* MOBILE */
@media (max-width: 768px) {
  .shipping-card {
    padding: 25px;
    text-align: center;
  }

  .shipping-content-new h2 {
    font-size: 24px;
  }

  .shipping-features {
    justify-content: center;
  }
}

/* daily use  */

.routine-modern {
  
}

/* GRID */
.routine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.routine-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  transition: 0.3s ease;
}

.routine-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ICON */
.routine-card i {
  color: #22c55e;
  font-size: 18px;
  margin-top: 4px;
}

/* TEXT */
.routine-card p {
  font-size: 22px;
  color: #cbd5f5;
}

/* IMAGE CARD */
.routine-image-card {
  background: rgba(183, 223, 235, 0.9);
  padding: 20px;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  transition: 0.3s ease;
}

.routine-image-card:hover {
  transform: translateY(-6px) scale(1.02);
}

/* IMAGE */
.routine-img {
  max-width: 405px;
  width: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
  .routine-grid {
    grid-template-columns: 1fr;
  }

  .routine-card {
    text-align: left;
  }
}