* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #070606d4;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* Typography */
.fontSize {
  font-size: 3.5rem;
  font-weight: 900;
  color: #000 !important;
}

.subsize {
  font-size: 1.8rem;
  font-weight: 700;
}

.hel {
  background-color: #266e6d;
  color: white;
  font-size: 1.4rem;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  border-radius: 10px;
}

.contented {
  color: #266e6d;
  font-weight: bold;
}

.colors {
  background-color: #266e6d;
  color: white;
  padding: 0.75rem 2rem;
  font-size: 2rem;
  display: inline-block;
  border-radius: 0.5rem;
}
.redcolors {
  background-color: #266e6d;
  color: white;
  padding: 0.75rem 2rem;
  font-size: 2rem;
  display: inline-block;
  border-radius: 0.5rem;
}

.text {
  font-size: 2rem;
  font-style: italic;
  font-family: "Young Serif", serif;
  font-weight: 900;
}

.success {
  font-size: 2rem;
  font-weight: 900;
  color: #266e6d;
  text-align: center;
  margin: 2rem 0;
}

.rem {
  font-size: 1.4rem;
  text-align: justify;
  padding: 1rem;
}

/* Buttons */
.button {
  display: inline-block;
  background: #266e6d;
  color: white;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0.8rem 2rem;
  border: 1px solid black;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0.1em 0.1em;
  transition: all 0.3s ease;
  animation: zoomInOut 1.6s ease-in-out infinite;
  width: 220px;
}

.button:hover {
  transform: scale(1.15);
  box-shadow: 0.15em 0.15em;
}

.button:active {
  transform: scale(0.95) translate(0.05em, 0.05em);
  box-shadow: 0.05em 0.05em;
}

@keyframes zoomInOut {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

.new_button {
  text-align: center;
  margin: 2rem 0;
}

/* Ingredient Cards */
.ingredient-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1.5rem 0;
}

.img-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid white;
  margin-bottom: -40px;
  z-index: 10;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box {
  background: white;
  width: 100%;
  max-width: 300px;
  padding: 60px 20px 25px;
  text-align: center;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.title {
  color: #c30000;
  font-weight: bold;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.desc {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  text-align: justify;
}

.tail {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid white;
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
}

/* Benefit Cards */
.cardss {
  text-align: center;
  margin: 1rem 0;
}

.cardss_img {
  width: 60%;
  max-width: 150px;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.cardss_title {
  font-weight: 700;
  font-size: 1.3rem;
}

/* Steps Section */
.headings {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.headings.reverse-img {
  flex-direction: row-reverse;
}

.img1,
.img2 {
  width: 80px;
  z-index: 99;
  flex-shrink: 0;
}

.img2 {
  width: 70px;
  z-index: 99;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.p1,
.p2 {
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  font-weight: bold;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.p1 {
  margin-left: -2rem;
}

.p2 {
  margin-right: -2rem;
  padding-right: 3rem;
  text-align: right;
}

/* Form */
.sectionss {
  background: linear-gradient(180deg, #ffe9dc, #ffd0b6 48%);
  border: 1px solid #000;
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 500px;
}

.center {
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.label {
  font-weight: 600;
  font-size: 0.9rem;
}

.inputs {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 3rem;
  border: 2px solid #374151;
  border-radius: 0.5rem;
  /* margin-bottom: 1rem; */
}

.test {
  position: absolute;
  top: 65%;
  left: 0.5rem;
  transform: translateY(-50%);
  border-right: 1px solid #000;
  padding-right: 0.5rem;
}

.buttons {
  background: #18181b;
  color: white;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  width: 100%;
  max-width: 300px;
  margin: 1rem auto;
  display: block;
}

/* Customer Reviews */
.review-card {
  background: white;
  border-radius: 0.375rem;
  padding: 1rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.24);
  margin-bottom: 1.5rem;
}

.customer_name {
  font-weight: 600;
  font-size: 1rem;
}

.customer_img {
  width: 16px;
  margin-left: 0.25rem;
}

.review {
  font-size: 1.2rem;
  text-align: justify;
}

.img_size {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* Footer */
.footer_section {
  background: white;
  padding: 2rem 1rem;
  margin-top: 3rem;
  color: #000;
}

.footer_image {
  width: 120px;
}

.footer_newsection {
  font-weight: 800;
  font-size: 1.25rem;
  text-align: center;
  margin: 1rem 0;
}

.footer_content {
  font-size: 0.95rem;
  text-align: center;
}

.tesitn a {
  color: #000;
  text-decoration: none;
  margin: 0 1rem;
}

.Copyright {
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .fontSize {
    font-size: 2.2rem;
  }

  .subsize {
    font-size: 1.3rem;
  }

  .hel {
    font-size: 1rem;
    padding: 0.75rem;
  }

  .text {
    font-size: 1.5rem;
  }

  .button {
    width: 180px;
    font-size: 1.1rem;
  }

  .p1,
  .p2 {
    font-size: 1rem;
    padding: 0.75rem;
  }

  .img1,
  .img2 {
    width: 60px;
  }

  .p1 {
    margin-left: -1.5rem;
    padding-left: 2rem;
  }

  .p2 {
    margin-right: -1.5rem;
    padding-right: 2rem;
  }

  .center {
    font-size: 1.2rem;
  }

  .sectionss {
    margin: 1.5rem 1rem;
    padding: 1.5rem;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .fontSize {
    font-size: 2.8rem;
  }

  .subsize {
    font-size: 1.5rem;
  }

  .hel {
    font-size: 1.2rem;
  }
}

@media (min-width: 769px) {
  .fontSize {
    font-size: 3.5rem;
  }

  .subsize {
    font-size: 1.8rem;
  }
}
