@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --brand-blue: #0054A6;
  --brand-orange: #F58220;
  --brand-dark: #0F172A;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
  font-family: 'Outfit', sans-serif;
}

/* Mobile */
@media (max-width: 767px) {
  .logo {
    width: 120px;

  }
}


.logo {
  display: inline-block;
  width: 180px;
  /* height: 120px; */
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* Custom Text Stroke for Large Outline Text */
.text-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(156, 163, 175, 0.3);
}

.text-outline-dark {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.08);
}

/* Accordion Transition Utilities */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-icon {
  transition: transform 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #0054A6;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #003d7a;
}

/* Text stroke for decorative numerals in layout */
.text-stroke-number {
  color: transparent;
  -webkit-text-stroke: 2px rgba(245, 130, 32, 0.15);
  /* orange with opacity */
  font-weight: 800;
}