@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-navy: #0b2c4d;
  /* Hero text and Branding */
  --color-secondary-blue: #205380;
  /* Subtitles and Dividers */
  --color-accent-teal: #3a96a5;
  /* Action items/Social Icons */

  /* --- Surfaces --- */
  --bg-main: #ffffff;
  --bg-soft: #f1f5f9;
  /* Subtle background for the "Value Statement" */
  --bg-dark-section: var(--color-primary-navy);

  /* --- Typography --- */
  --text-main: #1e293b;
  --text-inverse: #ffffff;
  --text-accent: var(--color-accent-teal);

  /* --- UI Elements --- */
  --border-subtle: #e2e8f0;
  --gradient-medical: linear-gradient(135deg, #0b2c4d 0%, #205380 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);
}