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



:root {
  /* Primary Brand Colors */
  --color-primary: #004a8f;   /* Dark Blue */
  --color-secondary: #fcaf17; /* Amber/Orange */

  /* Grayscale Palette */
  --gray-900: #404040;
  --gray-700: #7f7f7f;
  --gray-600: #a6a6a6;
  --gray-500: #bfbfbf;
  --gray-300: #d9d9d9;
  --gray-100: #f2f2f2;

  /* Optional: Text Colors */
  --text-color: #404040;
  --text-muted: #7f7f7f;
  --bg-color: #ffffff;
}



html,
body {
  height: 100%;
  scroll-behavior: smooth;
  font-family: 'Vazirmatn', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}




.section-title.red-color {
  color:#D80027
}


input:not([type="checkbox"]):not([type="radio"]),
textarea,
select {
  border: 1px solid #eee;
  padding: 8px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  border-radius: 4px;
  /* background: #fff; */
}

/* On hover */
input:not([type="checkbox"]):not([type="radio"]):hover,
textarea:hover,
select:hover {
  border-color: #ccc;
}

/* On focus */
input:not([type="checkbox"]):not([type="radio"]):focus,
textarea:focus,
select:focus {
  border-color: #4077aa;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1em 0.4em;
  font-weight: 400;
  border-radius: 32px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: #004a8f;
  color: #fff;
  border-color: #004a8f;
}

.btn-primary:hover {
  background-color: #003a6a;
  border-color: #003a6a;
}



.btn-outline {
  background-color: transparent;
  color: #004a8f;
  border-color: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-outline svg {
  width: 16px;
  height: 16px;
  margin-top: -2px;
}

.btn-outline:hover {
  background-color: #004a8f;
  color: #fcaf17;
  border-color: #004a8f;
}

.btn-gray {
  background-color: #F4F5F6;
  color: #303032;
  border-color: #F4F5F6;
}

.btn-gray:hover {
  background-color: #f6fbff;
  border-color: #f6fbff;
  color: #004a8f;
}

.btn-icon {
  background-color: #004a8f;
  color: #fff;
  border-color: #004a8f;
  gap: 0.5em;
  padding: 0.5em 0.75em 0.4em;
}

.btn-icon i[data-lucide] {
  font-size: 1.1em;
  pointer-events: none;
}

.btn-icon:hover {
  background-color: #003a6a;
  border-color: #003a6a;
}


.fd-numbers {
  font-family: 'VazirmatnFD', inherit;
}



* {
  scrollbar-width: thin;
  scrollbar-color: #c0c0c0 #ffffff;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-thumb {
  border-radius: 9999px;
  background: #c0c0c0;
}

@media (min-width: 768px) {
  ::-webkit-scrollbar {
    width: 12px;
    height: 12px;
  }

  ::-webkit-scrollbar-thumb {
    border-radius: 9999px;
  }

  ::-webkit-scrollbar-track {
    border: 1px solid #e0e0e0;
  }
}