/*
  Freshyzo Design System
  Android analogy: this file is like colors.xml + themes.xml + reusable view styles.
*/
:root {
  --primary: #2e7d32;
  --primary-dark: #102216;
  --primary-soft: #e9f7e7;
  --accent: #ffc107;
  --background: #f6fff4;
  --surface: #ffffff;
  --text: #18251c;
  --muted: #6b766d;
  --border: #e3efe1;
  --shadow: 0 18px 45px rgba(16, 34, 22, 0.12);
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--background);
}


.btn-brand {
  color: #ffffff;
  background: var(--primary);
  border: 1px solid var(--primary);
}
.btn-brand,
.btn-cream,
.btn-light-outline {
  position: relative;
  overflow: hidden;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.btn-brand:hover,
.btn-brand:focus,
.btn-light-outline:hover,
.btn-light-outline:focus,
.btn-cream:hover,
.btn-cream:focus {
  color: #ffffff;
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(16, 34, 22, 0.22);
}
img {
  max-width: 100%;
  display: block;
}
.section-padding {
  padding: 56px 0;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.section-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}
.ceo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
}
.section-heading h2,
h1,
h2 {
  color: var(--primary-dark);
  font-weight: 600;
  letter-spacing: 0;
}
.section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(1.95rem, 3vw, 2.35rem);
  line-height: 1.25;
}
.section-heading p,
p {
  color: var(--muted);
  line-height: 1.8;
}


.btn-cream {
  color: #ffffff;
  background: var(--primary);
  border: 1px solid var(--primary);
}
.btn-light-outline {
  color: #ffffff;
  background: var(--primary);
  border: 1px solid var(--primary);
}
.top-info-bar {
  background: var(--primary-dark);
  color: #fff;
  padding: 9px 0;
  font-size: 0.88rem;
}
.top-info-bar p,
.top-info-bar a {
  color: rgba(255, 255, 255, 0.88);
}
.top-info-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.fresh-navbar {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(227, 239, 225, 0.9);
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.fresh-navbar.navbar-scrolled {
  box-shadow: 0 14px 34px rgba(16, 34, 22, 0.1);
  background: rgba(255, 255, 255, 0.96);
}
.navbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--primary-dark);
}
.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #72c268);
  color: #fff;
}
.brand-logo {
  width: auto;
  height: 34px;
  object-fit: contain;

}
.nav-link {
  position: relative;
  border-radius: 999px;
  font-weight: 600;
  color: var(--primary-dark);
  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}
.nav-link.active,
.nav-link[aria-current="page"],
.nav-link:hover {
  color: var(--primary);
}
.nav-link.active,
.nav-link[aria-current="page"] {
  background: var(--primary-soft);
}
.nav-link.active::after,
.nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}
.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--background);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}
.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader-mark {
  width: 150px;
  height: 54px;
  display: grid;
  place-items: center;
  animation: pulseScale 1s infinite alternate;
}
.loader-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-fallback {
  min-height: 180px;
  border-radius: 22px;
  object-fit: contain;
  background: var(--primary-soft);
}
.product-card,
.feature-card,
.step-card,
.testimonial-card,
.stat-card,
.blog-card,
.contact-card,
.contact-form {
  height: 100%;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(16, 34, 22, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.product-card:hover,
.feature-card:hover,
.step-card:hover,
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.blog-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.blog-image {
  display: block;
  padding: 18px 18px 0;
  background: linear-gradient(180deg, #f6fff4, #ffffff);
}
.blog-image img {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  background: var(--primary-soft);
  object-fit: contain;
}
.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.blog-meta time {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
}
.blog-card h2,
.blog-card h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.35;
}
.blog-card p {
  margin-bottom: 18px;
}
.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
.blog-read-link:hover {
  color: var(--primary-dark);
}
.article-hero {
  padding: 54px 0 46px;
  background: linear-gradient(135deg, #f6fff4, #fff8dc);
}
.article-hero .container {
  max-width: 100%;
  margin-left: 50px;
}
.article-hero h1 {
  max-width: 850px;
  margin-bottom: 16px;
  margin-top: 16px;;
  font-size:35px;
  line-height: 1.15;
}
.article-back-link {

  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
.article-back-link:hover {
  color: var(--primary-dark);
}
.article-section {
  background: var(--background);
}
.article-card {
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(16, 34, 22, 0.07);
  overflow: hidden;
}
.article-cover {
  width: 100%;
  max-height: 420px;
  padding: 28px;
  background: linear-gradient(180deg, #f6fff4, #ffffff);
  object-fit: contain;
}
.article-body {
  padding: clamp(24px, 5vw, 48px);
}
.article-body h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 2.3vw, 1.9rem);
}
.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}
.article-body ul,
.article-body ol {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-weight: 600;
}
.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.product-card {
  border: 1px solid green;
  background: #e6d9a720;
}
.product-card img {
  width: 100%;
  height: 190px;
  margin-bottom: 18px;
  border: 0;
}
.product-card h3,
.feature-card h3,
.step-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-dark);
}
.product-card h3 {
  font-weight: 500;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
}
.product-card strong {
  display: block;
  color: var(--primary);
  margin-bottom: 16px;
}
.product-quantity {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 30px;
  color:white;
  background: var(--primary);
  font-weight: 600;
}
.product-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.btn-card {
  color: var(--primary);
  background: var(--primary-soft);
  border: 0;
}
.feature-card i,
.step-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--primary);
 
  font-size: 1.7rem;
}
.step-card span {
  float: right;
color: rgba(26, 225, 50, 0.4);
  font-size: 3rem;
  font-weight: 600;
}
.testimonial-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto 36px;
}
.testimonial-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 12px 34px rgba(16, 34, 22, 0.07);
  object-fit: cover;
}
@media (max-width: 767px) {
  .testimonial-video-grid {
    grid-template-columns: 1fr;
  }
}
.inner-hero {
  padding: 9px 0;
  background: linear-gradient(135deg, #f6fff4, #fff8dc);
  height: 180px;
}
.inner-hero .container {
  max-width: 850px;
  margin-left: 50px;
  margin-right: 0;
  text-align: left;
}
.inner-hero h1 {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.25;
}

h2{
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 2.6vw, 2.35rem);
  line-height: 1.25;
  font-weight: 600;
}
.site-footer {
  padding: 70px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--primary-dark);
}
.site-footer h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 10px;
}
.site-footer a:hover {
  color: #fff;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.footer-legal-links a {
  margin-bottom: 0;
}
.footer-fssai {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-top: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: #ffffff;
}
.footer-fssai img {
  width: 74px;
  height: auto;
  flex: 0 0 auto;
}
.footer-fssai span {
  color: #11142d;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
}
.footer-fssai-inline {
  margin-top: 0;
}
.footer-brand {
  color: #fff;
  margin-bottom: 18px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 26px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.compact-footer {
  padding-top: 26px;
}
.legal-section {
  background: var(--background);
}
.legal-hero .container {
  text-align: left;
}
.legal-card {
  max-width: 960px;
  margin-top: -100px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(16, 34, 22, 0.07);
  overflow: hidden;
}
.legal-card h2 {
  margin-top: 30px;
  font-size: 1.35rem;
}
.legal-card h2:first-child {
  margin-top: 0;
}
.legal-card p,
.legal-card li {
  color: var(--muted);
}
.legal-card ul {
  margin-bottom: 0;
  padding-left: 20px;
}
.legal-text {
  margin: 0;
  padding: 14px;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.98rem;
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.legal-text p {
  margin: 0 0 10px;
  color: #18251c;
}
.legal-text .legal-heading {
  margin-top: 24px;
  color: #000;
  font-weight: 600;
}


.legal-text .legal-heading:first-child {
  margin-top: 0;
}
.legal-space {
  height: 10px;
}
