/* ============================= */
/* Banner Section Styling */
/* ============================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.banner-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* background: linear-gradient(135deg, #1f5f4a, #1a4f3d); */
  position: relative;
  overflow: hidden;
  color: #232323;
}

*{
    font-family: "Poppins", sans-serif;
}
h1,h2,h3,h4,h5,h6{
    font-family: "DM Sans", sans-serif;
}

/* Subtle pattern overlay */
.banner-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
}

/* Content Animation */
.banner-content {
  animation: fadeSlide 1.2s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}

@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Heading */
.main-heading {
  font-size: 50px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
}

.main-heading span {
  font-weight: 600;
  border-bottom: 4px solid #d4af37;
  display: inline-block;
  padding-bottom: 8px;
}

/* Paragraph */
.sub-text {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.feature-list li {
  margin-bottom: 18px;
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-list li i {
  background: #d4af37;
  color: #1a4f3d;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: 0.3s;
}

/* Hover Effect on List */
.feature-list li:hover {
  transform: translateX(10px);
  color: #d4af37;
}

.feature-list li:hover i {
  background: #fff;
  transform: rotate(360deg);
}

/* Button */
.read-btn {
    background: #d4af37;
    color: #1a4f3d;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    display: inline-block;
    text-decoration:none;
}

.read-btn:hover {
  background: #fff;
  color: #1a4f3d;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Image */
.banner-image {
  max-width: 90%;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Responsive */
@media (max-width: 991px) {
  .main-heading {
    font-size: 38px;
  }

  .banner-section {
    text-align: center;
    padding: 60px 0;
  }

  .feature-list li {
    justify-content: center;
  }

  .banner-image {
    margin-top: 40px;
  }
}
/* ========================= */
/* Rotating Feature Bar */
/* ========================= */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.feature-bar {
  background: linear-gradient(90deg, #2d2d2d, #1f1f1f);
  color: #fff;
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}

.feature-wrapper {
  width: 100%;
  overflow: hidden;
}

.feature-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
}

.feature-bar:hover .feature-track {
  animation-play-state: paused;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  transition: 0.3s ease;
}

.feature-item i {
  font-size: 18px;
  color: #f4b400;
  transition: 0.3s;
}

/* Hover effect */
.feature-item:hover {
  color: #f4b400;
  transform: scale(1.05);
}

.feature-item:hover i {
  transform: rotate(15deg);
}

/* Animation */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .feature-item {
    padding: 0 20px;
    font-size: 14px;
  }
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #1f5f4a;
}

/* Section */
.category-section {
  padding: 100px 0;
}

/* Card */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  cursor: pointer;
}

/* Image */
.category-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.6s ease;
  border-radius: 25px;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 25px;
  transition: 0.5s ease;
}

/* Default Visible Items */
.overlay h3 {
  font-size: 25px;
  margin-bottom: 10px;
  transform: translateY(64px);
  transition: 0.4s ease;
  color: #fff;
}

.overlay a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  transition: 0.4s ease;
}

/* Paragraph hidden by default */
.overlay p {
  font-size: 15px;
  margin-bottom: 15px;
  color: #ddd;
  opacity: 0;
  transform: translateY(64px);
  transition: 0.4s ease;
}

/* Underline animation */
.overlay a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #d4af37;
  left: 0;
  bottom: -4px;
  transition: 0.4s ease;
}

.overlay a:hover::after {
  width: 100%;
}

/* Hover Effects */
.category-card:hover img {
  transform: scale(1.1);
}

.category-card:hover .overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4));
}

/* On hover move heading slightly up */
.category-card:hover .overlay h3 {
  transform: translateY(-10px);
}

/* Show paragraph smoothly */
.category-card:hover .overlay p {
  opacity: 1;
  transform: translateY(0);
}

/* Slight movement for button */
.category-card:hover .overlay a {
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
  .category-card img {
    height: 350px;
  }
}
/* Section Background */
.benefits-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  overflow: hidden;
}

/* Layout */
.container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Image */
.benefit-image {
  flex: 1;
  text-align: center;
  animation: slideLeft 1.2s ease forwards;
}

.benefit-image img {
  max-width: 400px;
  width: 100%;
  transition: transform 0.5s ease;
}

.benefit-image img:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* Content */
.benefit-content {
  flex: 1.3;
  animation: slideRight 1.2s ease forwards;
}

.section-subtitle {
  color: #aaa;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #fff;
  font-weight: 700;
}

/* Benefit Cards */
.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.benefit-card {
  padding: 25px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.2s; }
.benefit-card:nth-child(2) { animation-delay: 0.4s; }
.benefit-card:nth-child(3) { animation-delay: 0.6s; }
.benefit-card:nth-child(4) { animation-delay: 0.8s; }
.benefit-card:nth-child(5) { animation-delay: 1s; }
.benefit-card:nth-child(6) { animation-delay: 1.2s; }

.benefit-card h3 {
     font-size: 18px;
    margin-bottom: 10px;
    color: #cba117;
    font-weight: 600;
}

.benefit-card p {
  font-size: 14px;
  color: #ddd;
}

/* Hover Effect */
.benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 18px 14px rgb(255 166 71 / 6%);
}

/* Animations */
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-80px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .benefit-content {
    margin-top: 40px;
  }
}
.compare-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  font-size: 16px;
}

.compare-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 60px;
}

.compare-container {
  max-width: 1200px;
  margin: auto;
}

/* PERFECT GRID ALIGNMENT */
.comparison-table {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
}

/* Header */
.table-header {
  padding: 25px;
  font-weight: 600;
  text-align: center;
  background: rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Cells */
.comparison-table > div {
  padding: 22px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Feature column left align */
.feature {
  text-align: left !important;
  padding-left: 30px !important;
  background: rgba(255,255,255,0.02);
}

/* Highlight Column (Theme Matching Orange) */
.highlight-col {
  background: linear-gradient(180deg, #f4b400, #dca303);
  color: #fff;
}

/* Icons */
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #f4b400;
  font-weight: bold;
}

.cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #aaa;
}

/* Hover effect */
.comparison-table > div:hover {
  background: rgba(255,255,255,0.06);
  transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
  .comparison-table {
    grid-template-columns: 1fr;
  }

  .table-header {
    text-align: left;
  }

  .feature {
    text-align: left !important;
  }
}
.steps-section {
  padding: 100px 8%;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  position: relative;
}

.steps-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 70px;
}

/* Wrapper */
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

/* Subtle connecting line */
.steps-wrapper::before {
  content: "";
  position: absolute;
  top: 90px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(to right, transparent, #d69a07, transparent);
  z-index: 0;
}

/* Card */
.step-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s ease;
  z-index: 1;
  text-align: center;
}

/* Hover */
.step-card:hover {
  transform: translateY(-12px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 20px 50px rgba(255, 77, 0, 0.15);
}

/* Image */
.step-image {
  position: relative;
  margin-bottom: 20px;
}

.step-image img {
     width: auto;
    height: 70px;
  object-fit: cover;
  border-radius: 16px;
}

/* Step badge */
.step-badge {
  position: relative;
  margin: auto;
  bottom: -12px;
  left: 0;
  transform: translateX(-50%);
  background: #d69a07;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}

/* Title */
.step-card h3 {
     margin-top: 25px;
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

/* Text */
.step-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1100px) {
  .steps-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-wrapper::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .steps-wrapper {
    grid-template-columns: 1fr;
  }
}

.science-section {
  padding: 100px 8%;
  background: #f8f9fb;
  position: relative;
  overflow: hidden;
}

.science-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Label */
.section-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: #f4b400;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

/* Heading */
.science-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #111;
}

/* Paragraph */
.science-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 15px;
}

/* Highlight text */
.highlight-text {
  font-weight: 600;
  color: #222;
}

/* Certified list */
.certified-list {
  margin-top: 30px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 25px;
}

.certified-list div {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
  transition: 0.3s ease;
}

.certified-list span {
  background: #f4b400;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 12px;
}

/* Hover on list */
.certified-list div:hover {
  transform: translateX(6px);
  color: #f4b400;
}

/* Button (Banner Style) */
.primary-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #f4b400;
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
}

.primary-btn:hover {
  background: #e64300;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255,77,0,0.25);
}

/* Image */
.science-image {
  position: relative;
}

.science-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  transition: 0.5s ease;
}

.science-image:hover img {
  transform: scale(1.04);
}

/* Subtle Fade Animation */
.science-content,
.science-image {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.science-image {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.inner-block-image image{
        max-width: 650px;
}

/* Responsive */
@media (max-width: 992px) {
  .science-container {
    grid-template-columns: 1fr;
  }

  .science-image {
    margin-top: 40px;
  }

  .certified-list {
    grid-template-columns: 1fr;
  }
}

.ingredients-section {
  background: #f2eee9;
  padding: 90px 0;
}

.section-title-2 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #2c2c2c;
  margin-bottom: 10px;
}

/* Card */
.ingredient-card {
  background: #ffffff;
  padding: 40px 25px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ingredient-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* Circular Image */
.ingredient-img {
  width: 160px;
  height: 160px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
}

.ingredient-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.ingredient-card:hover .ingredient-img img {
  transform: scale(1.08);
}

/* Title */
.ingredient-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

/* Text */
.ingredient-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

.footer color-scheme-3{
    font-size: 15px;
}