@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 --- */
  --color-primary-blue: #2563EB;
  /* Electric Blue (Main brand color) */
  --color-primary-dark: #0F172A;
  /* Midnight Navy (Deep backgrounds/Hero) */
  --color-secondary-red: #EF4444;
  /* Crimson Red (Attention/Tags/CTAs) */

  /* --- Functional Accents --- */
  --color-accent-cyan: #06B6D4;
  --color-surface-soft: #1E293B;

  /* --- Typography --- */
  --text-primary: #FFFFFF;
  --text-muted: #94A3B8;
  --text-inverse: #0F172A;

  /* --- Gradients --- */
  --gradient-brand: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  --gradient-overlay: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), #0f172a);
}

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