@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 {
  --primary-blue: #0054A6;
  --secondary-orange: #F58220;
}

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);
  /* gray-400 with opacity */
}

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

/* Infinite Marquee Animation for Background Text */
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  display: flex;
  width: 200%;
  animation: marquee 30s linear infinite;
}

/* Custom styles for Hero offset header */
.hero-title-right {
  margin-top: -0.5rem;
}

@media (min-width: 1024px) {
  .hero-title-right {
    margin-top: 1.5rem;
  }
}

/* Accordion transition utility */
.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: 250px;
  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;
}