@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 Identity --- */
  --brand-vibrant: #ff6600;
  /* Electric Orange (Action/Attention) */
  --brand-grounded: #8b5e4d;
  /* Cocoa Brown (Trust/Depth) */

  /* --- Functional Colors --- */
  --cta-dark: #000000;
  /* Black (High Contrast Buttons) */
  --surface-card: #f8d7b5;
  /* Soft Cream (Testimonials/Sections) */

  /* --- Typography --- */
  --text-main: #1a1a1a;
  /* Near Black (Readability) */
  --text-on-vibrant: #ffffff;
  --text-on-cream: #4d2c1a;
  /* Deep Brown (Contrast on light cards) */

  /* --- Design Elements --- */
  --gradient-authority: linear-gradient(135deg, #ff6600 0%, #d45500 100%);
  --shadow-action: 0 4px 15px rgba(255, 102, 0, 0.3);
}

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);
}