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

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

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

}

:root {
  /* --- Brand Identity --- */
  --primary-mocha: #4e3629;
  /* Grounded Authority */
  --accent-terracotta: #b35d38;
  /* Warm Action */
  --accent-amber: #d9a036;
  /* Intellectual Glow */
  --pop-azure: #8cc9e8;
  /* Fresh Contrast */

  /* --- Surfaces --- */
  --bg-main: #faf3e0;
  /* Soft Cream */
  --bg-dark: var(--primary-mocha);
  --bg-alt: #ffffff;
  /* Pure White for cards */

  /* --- Typography --- */
  --text-main: #2a1b15;
  --text-on-dark: #faf3e0;
  --text-accent: var(--accent-terracotta);

  /* --- UI Elements --- */
  --border-subtle: #e5d5c0;
  --gradient-warmth: linear-gradient(135deg, #4e3629 0%, #b35d38 100%);
}

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

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