* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: #0c111d; /* Updated background color */
  color: var(--color-text);
  font-family: "Manjari", "Baloo Chettan 2", "Inter", sans-serif;
  line-height: 1.6;

  overflow-x: hidden;
}

/* Malayalam Font Utility Classes */
.manjari-thin {
  font-family: "Manjari", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.manjari-regular {
  font-family: "Manjari", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.manjari-bold {
  font-family: "Manjari", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.eb-garamond-regular {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.eb-garamond-bold {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.baloo-chettan-2-regular {
  font-family: "Baloo Chettan 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.baloo-chettan-2-bold {
  font-family: "Baloo Chettan 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}


:root {
  --color-primary: #14143f;
  --color-accent: #ffd93b;
  --color-white: #ffffff;
  --color-light-bg: #f5f7fb;
  --color-text: #0f172a;
  --color-muted: #6b7280;
}

p {
  font-size: 1rem;
}

a {
  text-decoration: none !important;
}

img {
  width: 100%;
}
.text-center {
  text-align: center;
}
