/* =====================================================
   HYPRO AGRI FOODS — style.css
   Color Palette: Deep Forest Green + Warm Gold + Cream
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-900: #1a3a1a;
  --green-800: #1e4620;
  --green-700: #236328;
  --green-600: #2d7a30;
  --green-500: #3a9940;
  --green-200: #a8d8aa;
  --green-100: #d4edda;
  --green-50:  #f0f9f1;

  --gold-600:  #b8860b;
  --gold-500:  #d4a017;
  --gold-400:  #e8b83a;
  --gold-200:  #f5d98a;
  --gold-100:  #fdf3d0;

  --cream:     #faf7f0;
  --sand:      #f0e8d5;
  --white:     #ffffff;

  --text-dark: #1a2e1a;
  --text-mid:  #3d5240;
  --text-soft: #6b8a6e;

  --shadow-sm: 0 2px 12px rgba(30,70,32,0.08);
  --shadow-md: 0 8px 30px rgba(30,70,32,0.12);
  --shadow-lg: 0 16px 50px rgba(30,70,32,0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  --transition: 0.3s ease;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ===== UTILITY ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-50);
  border: 1px solid var(--green-200);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(30,70,32,0.10);
  z-index: 1000;
  transition: box-shadow var(--transition), background var(--transition);
  backdrop-filter: blur(10px);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.99);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon {
  font-size: 28px;
  width: 44px; height: 44px; 
	margin-left: 50px;
/*   background: linear-gradient(135deg, var(--green-800), var(--green-600));
  border-radius: 12px; */
  display: flex; align-items: center; justify-content: center;
}
.brand-icon.large { font-size: 36px; width: 56px; height: 56px; }
.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1;
}
.brand-tagline {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--green-700);
  background: var(--green-50);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--green-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(45,122,48,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(212,160,23,0.18) 0%, transparent 60%),
    linear-gradient(135deg, #0f2410 0%, #1a3a1a 40%, #1e4620 100%);
}
/* Decorative leaf shape */
.hero-bg::after {
  content: '';
  position: absolute;
  right: -80px; top: 10%;
  width: 520px; height: 520px;
  background: rgba(45,122,48,0.15);
  border-radius: 60% 40% 55% 45%;
  transform: rotate(25deg);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px 48px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.35);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-accent { color: var(--gold-400); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  text-decoration: none;
  background: var(--gold-500);
  color: var(--green-900);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(212,160,23,0.35);
}
.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,160,23,0.45);
}
.btn-outline {
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}
.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.stat-card {
	text-align: center;
  padding: 28px 24px;
  background: rgba(0,0,0,0.18);
  display: flex; flex-direction: column; gap: 5px;
  transition: background var(--transition);
}
.stat-card:hover { background: rgba(45,122,48,0.25); }
.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  font-weight: 400;
}

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-text strong { color: var(--green-800); }
.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--green-100);
  background: var(--green-50);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.value-item:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-sm);
}
.value-icon { font-size: 24px; flex-shrink: 0; }
.value-item strong { display: block; color: var(--green-800); font-size: 15px; margin-bottom: 2px; }
.value-item p { font-size: 13px; color: var(--text-soft); margin: 0; }

.visual-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 60%, var(--green-600) 100%);
  padding: 4px;
  box-shadow: var(--shadow-lg);
}
.visual-inner {
  border-radius: calc(var(--radius-lg) - 4px);
  background: linear-gradient(135deg, var(--green-900) 0%, #1e4620 100%);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex; flex-direction: column; justify-content: center;
}
.visual-inner::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  background: rgba(45,122,48,0.20);
  border-radius: 50%;
}
.vb-icon { font-size: 48px; margin-bottom: 20px; }
.visual-inner h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.visual-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-style: italic;
  position: relative; z-index: 1;
}

/* ===== PRODUCTS ===== */
.products { background: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(30,70,32,0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-700), var(--gold-500));
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-200); }
.product-card:hover::before { opacity: 1; }
.product-icon { font-size: 40px; margin-bottom: 18px; display: block; }
.product-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 12px;
  line-height: 1.3;
}
.product-card p { font-size: 15px; color: var(--text-soft); line-height: 1.75; margin-bottom: 20px; }
.product-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.product-tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-200);
}

/* ===== CERTIFICATIONS ===== */
.certs { background: var(--green-900); }
.certs .section-label { background: rgba(255,255,255,0.08); color: var(--gold-400); border-color: rgba(212,160,23,0.35); }
.certs .section-title { color: var(--white); }
.certs .section-sub { color: rgba(255,255,255,0.60); }
.certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  transition: background var(--transition), border-color var(--transition);
}
.cert-item:hover {
  background: rgba(45,122,48,0.20);
  border-color: rgba(45,122,48,0.40);
}
.cert-badge {
  width: 36px; height: 36px;
  background: rgba(212,160,23,0.20);
  border: 1px solid rgba(212,160,23,0.40);
  color: var(--gold-400);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.cert-item span {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* ===== GOVERNMENT SUPPLY ===== */
.govt { background: var(--sand); }
.govt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.govt p { font-size: 16px; color: var(--text-soft); margin-top: 16px; }
.govt-cards { display: flex; flex-direction: column; gap: 20px; }
.govt-category {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(30,70,32,0.10);
  box-shadow: var(--shadow-sm);
}
.govt-cat-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--green-100);
}
.govt-category ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.govt-category ul li {
  font-size: 14px;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.govt-category ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-size: 12px;
  top: 2px;
}

/* ===== STRENGTH ===== */
.strength { background: var(--white); }
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.strength-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(30,70,32,0.08);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.strength-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.strength-icon { font-size: 36px; display: block; margin-bottom: 16px; }
.strength-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 10px;
  line-height: 1.3;
}
.strength-card p { font-size: 14px; color: var(--text-soft); line-height: 1.7; }

/* ===== VALUES BANNER ===== */
.values-banner {
  background: linear-gradient(135deg, var(--gold-100) 0%, var(--sand) 60%, #e8efe8 100%);
  padding: 90px 0;
  border-top: 1px solid rgba(184,134,11,0.15);
  border-bottom: 1px solid rgba(184,134,11,0.15);
}
.values-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.values-text h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 20px;
}
.values-text p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 14px;
  line-height: 1.8;
}
.values-text strong { color: var(--green-800); }
blockquote {
  border-left: 4px solid var(--gold-500);
  padding: 24px 28px;
  background: rgba(255,255,255,0.7);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 18px;
  font-style: italic;
  color: var(--green-800);
  line-height: 1.75;
  font-family: var(--font-display);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-900);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

/* footer logo */
/* footer logo */
.brand-icon .large  { margin-left: 16px;}
.footer-brand .brand-icon.large { margin-bottom: 16px;
margin-left: 104px;}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}


.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 16px; }
.footer-gst { display: flex; flex-direction: column; gap: 4px; }
.footer-gst span { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-links h4,
.footer-products h4,
.footer-contact h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 20px;
}
.footer-links ul,
.footer-products ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-products li { font-size: 14px; color: rgba(255,255,255,0.55); }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.ci-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.contact-item p,
.contact-item a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  text-decoration: none;
}
.contact-item a:hover { color: var(--gold-400); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid, .govt-grid, .values-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .strength-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .products-grid, .certs-grid { grid-template-columns: 1fr; }
  .strength-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(30,70,32,0.10);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 38px; }
  .hero-content { padding-top: 60px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
}
