/* Global Styles */
body {
	font-family: 'Raleway', sans-serif !important;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

main {
	flex: 1;
}

.hero-gradient {
	background: linear-gradient(135deg, #0082CA 0%, #6d1889 100%);
}

.dropdown:hover .dropdown-menu {
	display: block;
}

/* Common Headings */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Raleway', sans-serif;
}

/* Mobile Menu Accordion */
.mobile-dropdown-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.mobile-dropdown-content.active {
	max-height: 500px; /* Large enough for the content */
}

.mobile-dropdown-toggle i {
	transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active i {
	transform: rotate(180deg);
}

/* FAQ Accordion */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, margin-top 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Adjust based on content length */
    margin-top: .4rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-label {
  white-space: nowrap;
}

.faq-dots {
  flex: 1;
  min-width: 24px;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
}

.faq-dots::before {
  content: "⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ";
  display: block;
  white-space: nowrap;
  color: #6b7280;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
  font-family: Arial, sans-serif;
}

#header-placeholder {
	position: sticky;
	top: 0;
	z-index: 1000;
}

#main-header {
	width: 100%;
	transition: all 0.3s ease-in-out;
}


#main-header nav {
	transition: all 0.3s ease-in-out;
}

#main-header img {
	transition: all 0.3s ease-in-out;
}

#main-header.scrolled {
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#main-header.scrolled nav {
	height: 4rem; /* Compact height */
}

#main-header.scrolled img {
	height: 2.8rem !important; /* Scaled logo */
}


