/* refined-design-system.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Sans+Devanagari:wght@400;500;700&display=swap');

:root {
  /* Angana Biotech Palette */
  --color-primary: #01652f;
  /* Deep Green */
  --color-secondary: #502a16;
  /* Earthy Brown */
  --color-accent: #07a54e;
  /* Bright Green */

  --bg-primary: #fdfdfd;
  /* Light cleaner background */
  --bg-secondary: #f4fdf8;
  /* Very light green tint */
  --bg-tertiary: #eefbf3;

  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #737373;
  --text-inverse: #ffffff;

  --border-subtle: #e5e5e5;

  /* Typography */
  --font-sans: 'Inter', sans-serif;
  --font-hindi: 'Noto Sans Devanagari', sans-serif;

  /* Animation */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* Leaf Animation */
/* Leaf Animation Removed */