@charset "UTF-8";
/* -------- Global Reset -------- */
*,
*::before,
*::after {
  box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%; }

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #FFFFFF;
  background-color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%; }

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease-in-out; }

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0; }

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block; }

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer; }

/* -------- Custom Container -------- */
.custom-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px; }
  @media (max-width: 1540px) {
    .custom-container {
      max-width: 1280px; } }
  @media (max-width: 1440px) {
    .custom-container {
      max-width: 1200px;
      padding: 0 32px; } }
  @media (max-width: 1199px) {
    .custom-container {
      max-width: 100%;
      padding: 0 35px; } }
  @media (max-width: 991px) {
    .custom-container {
      padding: 0 30px; } }

/* -------- Typography Utilities -------- */
.text-gradient {
  background: linear-gradient(101.54deg, #E8C068 0%, #B88736 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block; }

.text-white {
  color: #FFFFFF; }

.text-muted-light {
  color: rgba(255, 255, 255, 0.75); }

/* -------- Reusable Buttons -------- */
.btn-base, .btn-primary-gradient, .btn-banner-gradient, .btn-banner-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.3s ease-in-out; }
  .btn-base:hover, .btn-primary-gradient:hover, .btn-banner-gradient:hover, .btn-banner-dark:hover {
    transform: translateY(-2px); }
  .btn-base:active, .btn-primary-gradient:active, .btn-banner-gradient:active, .btn-banner-dark:active {
    transform: translateY(0); }

/* Primary gradient button (header CTA) */
.btn-primary-gradient {
  padding: 12px 26px;
  font-size: 14px;
  color: #000000;
  background: linear-gradient(101.54deg, #E8C068 0%, #B88736 100%);
  box-shadow: 0 4px 16px rgba(184, 135, 54, 0.3); }
  .btn-primary-gradient:hover {
    color: #000000;
    box-shadow: 0 6px 20px rgba(184, 135, 54, 0.45); }
  @media (max-width: 767px) {
    .btn-primary-gradient {
      padding: 10px 22px;
      font-size: 13px; } }

/* Banner CTA — gold gradient large pill */
.btn-banner-gradient {
  padding: 16px 32px;
  font-size: 14px;
  color: #1a1300;
  background: linear-gradient(101.54deg, #FFD67B 0%, #E89D21 100%);
  box-shadow: 0 6px 20px rgba(232, 157, 33, 0.3); }
  .btn-banner-gradient:hover {
    color: #1a1300;
    box-shadow: 0 8px 24px rgba(232, 157, 33, 0.5); }
  @media (max-width: 767px) {
    .btn-banner-gradient {
      padding: 14px 26px;
      font-size: 13px; } }

/* Banner secondary — dark transparent pill (Get in touch) */
.btn-banner-dark {
  padding: 16px 30px;
  font-size: 14px;
  color: #FFFFFF;
  background: transparent;
  border: 1px solid rgba(212, 166, 74, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px); }
  .btn-banner-dark:hover {
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.7); }
  @media (max-width: 767px) {
    .btn-banner-dark {
      padding: 18px 24px;
      font-size: 13px; } }

@media (max-width: 400px) {
  .hero-title, .about-heading, .brand-story-heading, .help-heading, .disciplines-title, .discipline-heading,
  .categories-title, .consulting-heading, .cert-title, .cr-title, .astroSectionTitle, .blog-title, .faq-title {
    font-size: 26px !important; } }

@media (max-width: 500px) {
  .testi-title {
    display: flex;
    flex-direction: column; } }

/* Small complimentary pill chip */
.chip-complimentary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(232, 192, 113, 0.25);
  border-radius: 50px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px); }
  @media (max-width: 767px) {
    .chip-complimentary {
      font-size: 11px;
      padding: 8px 18px; } }

/* -------- Section Spacing Utility -------- */
.section {
  position: relative;
  width: 100%; }

/* -------- Dot Background Pattern --------
   Apply .section-dot-bg to any section that needs the subtle dot overlay.
   The ::before pseudo-element holds the pattern below all content (z-index: 0).
   Direct children are lifted to z-index: 1 so content always sits on top. */
.section-dot-bg {
  position: relative; }
  .section-dot-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/bg-dots.svg");
    background-repeat: repeat;
    background-size: auto;
    z-index: 1;
    pointer-events: none; }
  .section-dot-bg > * {
    position: relative;
    z-index: 1; }

/* -------- Reusable Section Eyebrow Label -------- */
.section-label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D4A64A;
  margin-bottom: 16px; }
  @media (max-width: 767px) {
    .section-label {
      font-size: 11px;
      margin-bottom: 12px; } }

/* -------- Reusable Gold Border Card -------- */
.gold-border-card {
  border: 1px solid rgba(253, 200, 88, 0.39);
  border-radius: 20px; }

/* -------- Mixed heading: gradient word + white word -------- */
.heading-mixed {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: #FFFFFF; }
  .heading-mixed .gradient-word {
    background: linear-gradient(101.54deg, #E8C068 0%, #B88736 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline; }

/*# sourceMappingURL=common.css.map */
