@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 {
  /* --- Primary Brand Colors --- */
  --primary-blue: #2053d6;
  --secondary-slate: #ebf2fc;
  --accent-brown: #8b5733;

  /* --- Surfaces --- */
  --bg-main: var(--white);
  --bg-alt: var(--secondary-slate);

  /* --- Typography --- */
  --text-primary: #1a1a1a;
  --text-inverse: #ffffff;

  /* --- Design Elements --- */
  --shadow-blue: 0 4px 14px rgba(32, 83, 214, 0.2);
}

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: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #1a1a1a;
}

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