@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import "tailwindcss";

*,
*::before,
*::after {
  box-sizing: border-box !important;
}

html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;

}

:root {
  /* Brand colors */
  --color-primary: #C8102E;
  /* Crimson red — hero, navbar, CTA buttons */
  --color-accent: #F5A800;
  /* Golden yellow — highlights, badges, hover states */
  --color-background: #F9F4EC;
  /* Warm white — page & card backgrounds */
  --color-text: #1C1C1C;
  /* Charcoal — body copy, icons, footer */

  /* Functional aliases */
  --color-btn-bg: var(--color-primary);
  --color-btn-hover: #a50d25;
  /* Crimson red darkened */
  --color-highlight: var(--color-accent);
  --color-surface: #ffffff;
  /* Pure white — modals, input fields */
  --color-border: #e5ddd2;
  /* Warm white darkened — subtle borders */
  --color-text-muted: #5a5550;
  /* Charcoal lightened — secondary text */
}

body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text-charcoal);
}

/* TESTIMONIAL SLIDER */
.testimonial-dots-container {
  position: relative;
  z-index: 40;
  margin-top: -24px;
}

.slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.slick-dots li {
  display: inline-block;
}

.slick-dots li button {
  text-indent: -9999px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--text-heading);
}

.slick-dots li.slick-active button {
  background-color: var(--primary-accent);
}