@import url('https://fonts.googleapis.com/css2?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');
@import url('./typography-system.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
}

html{
    scroll-behavior: smooth;
}

:root {
  /* Brand Colors */
  --primary: #5fa92e;
  --primary-dark: #4c8924;
  --primary-light:#E7F2EA;

  --navy: #1f2a44;
  --text: #1f2937;
  --text-black: #000000;
  --text-light-dark: #434343;
  --text-light: #404040;
  --text-mid-light: #eaeaea;
  --text-xlight: #e5e5e5;
  --text-white: #ffffff;

  --footerbg: #4c8924;
  --bg: #fafafa;
  --card: #ffffff;

  --border: #d9e9cc;

  /* Radius */
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 15px;
  --radius-xl: 20px;

  /* Shadow */
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.04);

  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);

  /* Spacing */
  --section-gap: 120px;
}

body {
  background: var(--bg);
  color: var(--text-black);
  overflow-x: hidden;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--text-black);
}

section,
header,
footer {
  scroll-margin-top: 100px;
  padding-left: 80px;
  padding-right: 80px;
}

/* Tablet */
@media (max-width: 1024px) {
  section,
  header,
  footer {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  section,
  header,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 425px) {
  section,
  header,
  footer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 320px) {
  section,
  header,
  footer {
    padding-left: 10px;
    padding-right: 10px;
  }
}

section {
  padding-bottom: 60px;
}

.button {
  background-color: var(--primary);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.6ms step-end;
}

.button:hover {
  background-color: var(--primary-dark);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}

.flex-ccc {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.flex-ccr {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.fflex-ccc {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}

.fflex-ccr {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.section-heading {
  font-size: var(--fs-section-title);
  font-weight: 700;
  color: var(--navy);
}

.section-heading-green {
  color: var(--primary);
}

.section-subtitle {
  font-size: var(--fs-section-subtitle-sm);
  color: var(--text-light);
}
