/* ========================================
   Modern CSS Reset
   ======================================== */

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

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-fa);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* Global caret and outline fix */
* {
    caret-color: transparent !important;
}
input, textarea, [contenteditable] {
    caret-color: auto !important;
}
.section-title span,
.section-title,
.content-box-title,
.featured *,
.why *,
.cta-banner *,
.footer * {
    border: none !important;
    outline: none !important;
}
