.nav-logo {
  max-width: 45%;
}

/* banner slider  */
@media screen and (orientation: landscape) {
  .carousel img {
    height: 100vh;
  }
}


/* CSS */
.what-we-do {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.what-we-do .container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  gap: 40px;
}

.text-content {
  flex: 1;
  min-width: 300px;
}

.text-content h2 {
  font-size: 32px;
  color: #e10215;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.highlights {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 120px;
}

.highlight-item img {
  width: 48px;
  height: 48px;
}

.highlight-item span {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}

.image-content {
  flex: 1;
  min-width: 300px;
}

.image-content img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


/* CSS */
.our-promise {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.our-promise .container {
  max-width: 1100px;
  margin: auto;
}

.our-promise h2 {
  font-size: 32px;
  color: #e10215;
  margin-bottom: 40px;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.promise-item {
  padding: 20px;
  border-radius: 12px;
  background: #f4f9f4;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.promise-item:hover {
  transform: translateY(-5px);
}

.promise-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}

.promise-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.promise-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}


/* blacktore start  */
   .blocktor-section {
      max-width: 1200px;
      margin: auto;
      padding: 60px 20px;
    }

    /* .title {
      text-align: center;
      font-size: 2.8em;
      color: #e10215;
      margin-bottom: 10px;
    } */

    /* .subtitle {
      text-align: center;
      font-size: 1.2em;
      color: #555;
      margin-bottom: 40px;
    } */

    .content {
      font-size: 1.05em;
      line-height: 1.7;
      text-align: justify;
      margin-bottom: 50px;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-bottom: 50px;
    }

    .card {
      background: #fff;
      border-left: 5px solid #005b4f;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 91, 79, 0.1);
      transition: all 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 91, 79, 0.2);
    }

    .card-title {
      font-weight: bold;
      color: #005b4f;
      font-size: 1.2em;
      margin-bottom: 10px;
    }

    .footer-note {
      text-align: center;
      font-size: 1.1em;
      font-weight: 500;
      color: #005b4f;
      margin-top: 40px;
    }

    @media (max-width: 768px) {
      .title {
        font-size: 2em;
      }
    }


    /* key-ingredients-section  */

    .key-ingredients-section {
  background: #ffffff;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

/* .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #e60000;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
} */

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.ingredient-card {
  background: #111;
  border: 1px solid #e60000;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 0 transparent;
  transition: all 0.4s ease;
  position: relative;
}

.ingredient-card:hover {
  background: #1a1a1a;
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(230, 0, 0, 0.25);
}

.icon-box {
  font-size: 40px;
  color: #e60000;
  margin-bottom: 15px;
}

.ingredient-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.ingredient-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #ccc;
}
