@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Manrope',sans-serif;
  background:#fff;
}

/* =========================
   SECTION
========================= */
.ingredients-section{
  width:100%;
  padding:110px 20px;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f8fff5 45%,
      #eef8ee 100%
    );

  position:relative;
  overflow:hidden;
}

/* =========================
   BUBBLES
========================= */
.ingredients-bubble{
  position:absolute;
  border-radius:50%;
  filter:blur(40px);
}

.bubble-1{
  width:300px;
  height:300px;

  background:rgba(157,186,67,0.18);

  top:-120px;
  left:-100px;
}

.bubble-2{
  width:260px;
  height:260px;

  background:rgba(253,182,6,0.15);

  right:-80px;
  top:30%;
}

.bubble-3{
  width:240px;
  height:240px;

  background:rgba(42,98,39,0.12);

  bottom:-100px;
  left:40%;
}

/* =========================
   CONTAINER
========================= */
.ingredients-container{
  max-width:1250px;
  margin:auto;

  position:relative;
  z-index:2;
}

/* =========================
   HEADER
========================= */
.ingredients-header{
  text-align:center;
  max-width:820px;
  margin:auto auto 70px;
}

.ingredients-badge{
  display:inline-block;

  padding:12px 24px;

  background:#edf7ea;

  border-radius:100px;

  color:#1C472C;

  font-size:13px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;

  margin-bottom:24px;
}

.ingredients-header h2{
  font-size:54px;
  line-height:1.15;

  color:#1C472C;

  font-weight:900;

  margin-bottom:20px;
}

.ingredients-header p{
  font-size:17px;
  line-height:1.9;

  color:#4f5f4f;
}

/* =========================
   TOP GRID
========================= */
.ingredients-top-grid{
  display:grid;
  grid-template-columns:1.3fr 0.7fr;
  gap:30px;

  margin-bottom:30px;
}

/* =========================
   IMAGE BOX
========================= */
.ingredients-image-box{
  position:relative;

  border-radius:36px;
  overflow:hidden;

  min-height:620px;

  box-shadow:
    0 25px 60px rgba(0,0,0,0.12);
}

.ingredients-image-box img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.6s ease;
}

.ingredients-image-box:hover img{
  transform:scale(1.06);
}

/* FLOAT CARD */
.floating-card{
  position:absolute;

  left:30px;
  bottom:30px;

  padding:24px;

  width:260px;

  border-radius:24px;

  background:rgba(255,255,255,0.25);

  backdrop-filter:blur(20px);

  border:1px solid rgba(255,255,255,0.4);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.15);
}

.floating-card span{
  display:block;

  color:#ffffff;

  font-size:12px;
  font-weight:800;

  letter-spacing:2px;
  text-transform:uppercase;

  margin-bottom:12px;
}

.floating-card h4{
  font-size:22px;
  line-height:1.4;

  color:#060606;

  font-weight:800;
}

/* =========================
   SIDE CARDS
========================= */
.ingredients-side-cards{
  display:flex;
  flex-direction:column;
  gap:30px;
}

/* =========================
   CARD
========================= */
.ingredient-card{
  background:rgba(255,255,255,0.7);

  backdrop-filter:blur(18px);

  border:1px solid rgba(255,255,255,0.5);

  border-radius:32px;

  padding:34px;

  transition:0.45s ease;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.06);

  position:relative;
  overflow:hidden;
}

/* hover */
.ingredient-card:hover{
  transform:translateY(-10px);

  background:
    linear-gradient(
      135deg,
      #1C472C,
      #2A6227
    );

  box-shadow:
    0 25px 55px rgba(28,71,44,0.28);
}

.ingredient-card:hover h3,
.ingredient-card:hover p{
  color:#fff;
}

/* top glow */
.ingredient-card::before{
  content:"";

  position:absolute;

  width:120px;
  height:120px;

  background:rgba(253,182,6,0.18);

  border-radius:50%;

  top:-50px;
  right:-40px;

  filter:blur(30px);
}

/* =========================
   ICON
========================= */
.ingredient-icon{
  width:68px;
  height:68px;

  border-radius:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:30px;

  margin-bottom:22px;

  background:
    linear-gradient(
      135deg,
      #9DBA43,
      #2A6227
    );

  transition:0.4s ease;
}

.orange{
  background:
    linear-gradient(
      135deg,
      #FDB606,
      #F7892B
    );
}

.green{
  background:
    linear-gradient(
      135deg,
      #9DBA43,
      #1C472C
    );
}

.yellow{
  background:
    linear-gradient(
      135deg,
      #FDB606,
      #9DBA43
    );
}

.dark{
  background:
    linear-gradient(
      135deg,
      #1C472C,
      #2A6227
    );
}

.gold{
  background:
    linear-gradient(
      135deg,
      #FDB606,
      #F7892B
    );
}

/* hover icon */
.ingredient-card:hover .ingredient-icon{
  transform:rotate(-6deg) scale(1.08);
}

/* =========================
   TEXT
========================= */
.ingredient-card h3{
  font-size:26px;
  line-height:1.3;

  color:#1C472C;

  margin-bottom:14px;

  font-weight:800;

  transition:0.4s ease;
}

.ingredient-card p{
  font-size:15px;
  line-height:1.9;

  color:#5c675c;

  transition:0.4s ease;
}

/* =========================
   BOTTOM GRID
========================= */
.ingredients-bottom-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:1100px){

  .ingredients-top-grid{
    grid-template-columns:1fr;
  }

  .ingredients-side-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
  }

  .ingredients-bottom-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .ingredients-section{
    padding:80px 16px;
  }

  .ingredients-header h2{
    font-size:34px;
  }

  .ingredients-header p{
    font-size:15px;
  }

  .ingredients-image-box{
    min-height:420px;
  }

  .floating-card{
    width:220px;

    left:18px;
    bottom:18px;

    padding:18px;
  }

  .floating-card h4{
    font-size:18px;
  }

  .ingredients-side-cards{
    grid-template-columns:1fr;
  }

  .ingredients-bottom-grid{
    grid-template-columns:1fr;
  }

  .ingredient-card{
    padding:28px;
  }

  .ingredient-card h3{
    font-size:22px;
  }

}









@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Manrope',sans-serif;
}

/* =========================
   SECTION
========================= */
.stats-section{
  width:100%;
  padding:90px 20px;

  background:
    linear-gradient(
      135deg,
      #1C472C 0%,
      #24552a 50%,
      #2A6227 100%
    );

  position:relative;
  overflow:hidden;
}

/* =========================
   BUBBLES
========================= */
.stats-bubble{
  position:absolute;
  border-radius:50%;
  filter:blur(40px);
}

.bubble-left{
  width:300px;
  height:300px;

  background:rgba(255,255,255,0.05);

  top:-100px;
  left:-100px;
}

.bubble-right{
  width:260px;
  height:260px;

  background:rgba(253,182,6,0.12);

  right:-80px;
  bottom:-100px;
}

/* =========================
   CONTAINER
========================= */
.stats-container{
  max-width:1250px;
  margin:auto;

  position:relative;
  z-index:2;
}

/* =========================
   GRID
========================= */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

/* =========================
   CARD
========================= */
.stat-card1{
  background:rgba(255,255,255,0.08);

  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);

  border:1px solid rgba(255,255,255,0.08);

  border-radius:30px;

  padding:38px 20px;

  text-align:center;

  transition:0.45s ease;

  position:relative;
  overflow:hidden;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.14);
}

/* hover */
.stat-card1:hover{
  transform:translateY(-12px);

  background:rgba(255,255,255,0.14);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.2);
}

/* glow */
.stat-card1::before{
  content:"";

  position:absolute;

  width:130px;
  height:130px;

  background:rgba(253,182,6,0.15);

  border-radius:50%;

  top:-50px;
  right:-50px;

  filter:blur(30px);
}

/* =========================
   ICON
========================= */
.stat-icon{
  width:72px;
  height:72px;

  margin:auto auto 22px;

  border-radius:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:32px;

  background:
    linear-gradient(
      135deg,
      #FDB606,
      #F7892B
    );

  transition:0.4s ease;
}

/* variants */
.orange{
  background:
    linear-gradient(
      135deg,
      #F7892B,
      #FDB606
    );
}

.green{
  background:
    linear-gradient(
      135deg,
      #9DBA43,
      #2A6227
    );
}

.gold{
  background:
    linear-gradient(
      135deg,
      #FDB606,
      #9DBA43
    );
}

/* hover icon */
.stat-card1:hover .stat-icon{
  transform:rotate(-6deg) scale(1.08);
}

/* =========================
   TEXT
========================= */
.stat-card1 h2{
  font-size:52px;
  line-height:1;

  color:#ffffff;

  font-weight:900;

  margin-bottom:14px;
}

.stat-card1 p{
  font-size:13px;

  color:rgba(255,255,255,0.75);

  text-transform:uppercase;

  letter-spacing:3px;

  line-height:1.8;

  font-weight:700;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:991px){

  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .stats-section{
    padding:70px 16px;
  }

  .stats-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .stat-card1{
    padding:34px 20px;
  }

  .stat-card1 h2{
    font-size:42px;
  }

  .stat-card1 p{
    font-size:12px;
    letter-spacing:2px;
  }

}