/**
 * Relevana Theme Styles
 * Converted from Tailwind CSS to vanilla CSS
 */

/* CSS Variables - Design System */
:root {
	--background: 0 0% 100%;
	--foreground: 222.2 47.4% 11.2%;
	--card: 0 0% 100%;
	--card-foreground: 222.2 47.4% 11.2%;
	--primary: 280 85% 60%;
	--primary-foreground: 0 0% 100%;
	--secondary: 210 40% 96.1%;
	--secondary-foreground: 222.2 47.4% 11.2%;
	--muted: 210 40% 96.1%;
	--muted-foreground: 215.4 16.3% 46.9%;
	--accent: 280 85% 60%;
	--accent-foreground: 0 0% 100%;
	--border: 214.3 31.8% 91.4%;
	--input: 214.3 31.8% 91.4%;
	--ring: 280 85% 60%;
	--radius: 0.5rem;
}

.dark {
	--background: 222.2 84% 4.9%;
	--foreground: 45 15% 92%;
	--card: 222.2 84% 6%;
	--card-foreground: 45 15% 92%;
	--primary: 280 85% 60%;
	--primary-foreground: 0 0% 100%;
	--secondary: 217.2 32.6% 17.5%;
	--secondary-foreground: 45 15% 92%;
	--muted: 217.2 32.6% 17.5%;
	--muted-foreground: 215 20.2% 65.1%;
	--accent: 280 85% 60%;
	--accent-foreground: 0 0% 100%;
	--border: 217.2 32.6% 17.5%;
	--input: 217.2 32.6% 17.5%;
	--ring: 280 85% 60%;
}

/* Base Styles */
* {
	box-sizing: border-box;
	border-color: hsl(var(--border));
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Inter', sans-serif;
	background-color: hsl(var(--background));
	color: hsl(var(--foreground));
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Typography */
.font-display {
	font-family: 'Montserrat', sans-serif;
}

.font-heading {
	font-family: 'Space Grotesk', sans-serif;
}

.font-brand {
	font-family: 'Nunito';
	/*font-family: 'Nunito', sans-serif;*/
}

.font-sans {
	font-family: 'Inter', sans-serif;
}

/* Container */
.container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 640px) {
	.container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 640px) {
	.sm\:px-6 {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.lg\:px-8 {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

/* Layout */
.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.items-center {
	align-items: center;
}

.items-start {
	align-items: flex-start;
}

.justify-between {
	justify-content: space-between;
}

.justify-center {
	justify-content: center;
}

.space-x-3 > * + * {
	margin-left: 0.75rem;
}

.space-x-6 > * + * {
	margin-left: 1.5rem;
}

.space-y-2 > * + * {
	margin-top: 0.5rem;
}

.space-y-4 > * + * {
	margin-top: 1rem;
}

.space-y-6 > * + * {
	margin-top: 1.5rem;
}

.space-y-8 > * + * {
	margin-top: 2rem;
}

.gap-2 {
	gap: 0.5rem;
}

.gap-4 {
	gap: 1rem;
}

.gap-6 {
	gap: 1.5rem;
}

.gap-8 {
	gap: 2rem;
}

.gap-12 {
	gap: 3rem;
}

/* Grid */
.grid {
	display: grid;
}

.grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
	.md\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.md\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.lg\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lg\:grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* Spacing */
.w-full {
	width: 100%;
}

.h-2{
	height: 0.5rem;
}
.h-5 {
	height: 1.25rem;
}

.h-16 {
	height: 4rem;
}

.h-20 {
	height: 5rem;
}

.h-24 {
	height: 6rem;
}

.w-2{
	width: 0.5rem;
}

.w-5 {
	width: 1.25rem;
}

.w-16 {
	width: 4rem;
}

.w-20 {
	width: 5rem;
}

.w-24 {
	width: 6rem;
}

.min-h-screen {
	min-height: 100vh;
}

/* Typography Sizes */
.text-xs {
	font-size: 0.75rem;
	line-height: 1rem;
}

.text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.text-xl {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.text-2xl {
	font-size: 1.5rem;
	line-height: 2rem;
}

.text-3xl {
	font-size: 1.875rem;
	line-height: 2.25rem;
}

.text-4xl {
	font-size: 2.25rem;
	line-height: 2.5rem;
}

.text-5xl {
	font-size: 3rem;
	line-height: 1;
}

.text-6xl {
	font-size: 3.75rem;
	line-height: 1;
}

@media (min-width: 640px) {
	.sm\:text-2xl {
		font-size: 1.5rem;
		line-height: 2rem;
	}

	.sm\:text-4xl {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}

	.sm\:text-5xl {
		font-size: 3rem;
		line-height: 1;
	}

	.sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
	.lg\:text-5xl {
		font-size: 3rem;
		line-height: 1;
	}

	.lg\:text-6xl {
		font-size: 3.75rem;
		line-height: 1;
	}
}

/* Font Weights */
.font-medium {
	font-weight: 500;
}

.font-semibold {
	font-weight: 600;
}

.font-bold {
	font-weight: 700;
}

/* Text Alignment */
.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.leading-tight {
	line-height: 1.25;
}

.leading-relaxed {
	line-height: 1.625;
}

.leading-none {
	line-height: 1;
}
.font-brand.leading-none {
	color: hsl(var(--foreground));;
	/*color: #fff;*/
}

/* Colors */
.text-muted-foreground {
	color: hsl(var(--muted-foreground));
}

.text-foreground {
	color: hsl(var(--foreground));
}

.text-primary {
	color: hsl(var(--primary));
}

.bg-background {
	background-color: hsl(var(--background));
}

.bg-muted-30 {
	background-color: hsla(var(--muted) / 0.3);
}

.bg-primary {
	background-color: hsl(var(--primary));
}

.text-primary-foreground {
	color: hsl(var(--primary-foreground));
}

.border-border {
	border-color: hsl(var(--border));
}

/* Gradients */
.gradient-text {
	background: linear-gradient(135deg, hsl(320, 85%, 60%) 0%, hsl(280, 85%, 60%) 50%, hsl(240, 85%, 40%) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Buttons */
.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1.5rem;
	background-color: hsl(var(--primary));
	color: hsl(var(--primary-foreground));
	border-radius: var(--radius);
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s;
	border: none;
	cursor: pointer;
}

.btn-primary:hover {
	background-color: hsla(var(--primary) / 0.9);
}

.btn-lg {
	padding: 0.75rem 2rem;
	font-size: 1rem;
}

/* Cards */
.card {
	padding: 2rem;
	background-color: hsla(var(--card) / 0.4);
	backdrop-filter: blur(12px);
	border: 1px solid hsl(var(--border) / 0.5);/*1px solid hsla(var(--border), 0.5);*/
	border-radius: var(--radius);
	transition: all 0.3s;
}

.card:hover {
	/* border-color: hsla(var(--primary), 0.5); */
    border-color: hsl(var(--primary) / 0.5);
	box-shadow: 0 10px 25px hsla(var(--primary) / 0.05);
}

/* Navbar */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	transition: all 0.3s;
}

.navbar.scrolled {
	background-color: hsla(var(--background) / 0.8);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid hsl(var(--border));
}

.header-logo-wrapper{
    text-decoration: none;
}

.nav-link,
li.nav-link a {
	font-size: 0.875rem;
	color: hsl(var(--foreground));
	text-decoration: none;
	transition: color 0.2s;
}

.nav-link:hover,
li.nav-link a:hover {
	color: hsl(var(--primary));
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu li {
	margin: 0;
}

.nav-menu a {
	text-decoration: none;
}

/* Mobile Menu */
.mobile-menu {
	display: none;
	position: fixed;
	top: 4rem;
	right: 0;
	width: 280px;
	background-color: hsl(var(--background));
	border-left: 1px solid hsl(var(--border));
	padding: 2rem;
	z-index: 40;
	height: calc(100vh - 4rem);
	overflow-y: auto;
}

.mobile-menu.hidden {
	display: none;
}

.mobile-menu:not(.hidden) {
	display: block;
}

.mobile-nav-link {
	display: block;
	padding: 0.75rem 0;
	font-size: 1.125rem;
	color: hsl(var(--foreground));
	text-decoration: none;
	transition: color 0.2s;
}

.mobile-nav-link:hover {
	color: hsl(var(--primary));
}

.mobile-menu-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.mobile-menu-btn,
.theme-toggle-btn {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 9999px;
	color: hsl(var(--foreground));
	transition: background-color 0.2s;
}

.mobile-menu-btn:hover,
.theme-toggle-btn:hover {
	background-color: hsla(var(--muted) / 0.5);
}

.mobile-theme-toggle {
	display: flex;
	align-items: center;
	padding: 0.75rem 0;
	font-size: 1.125rem;
	color: hsl(var(--foreground));
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	width: 100%;
}

/* Theme Toggle Icons */
.sun-icon,
.moon-icon {
	width: 1.25rem;
	height: 1.25rem;
}

.hidden {
	display: none !important;
}

/*html .sun-icon,
html.dark .moon-icon {
  display: none !important;
}

html.dark .sun-icon
html .moon-icon {
  display: block !important;
}
*/
.moon-icon {
  display: block !important;
}
html.dark .moon-icon {
  display: none !important;
}

/* Section Spacing */
.p-4{
	padding: 1rem;
}
.py-24 {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.pt-16 {
	padding-top: 4rem;
}

.mb-0 {
	margin-bottom: 0;
}

.mb-4 {
	margin-bottom: 1rem;
}

.mb-6 {
	margin-bottom: 1.5rem;
}

.mb-8 {
	margin-bottom: 2rem;
}

.mb-12 {
	margin-bottom: 3rem;
}

.mb-16 {
	margin-bottom: 4rem;
}

.mt-0 {
	margin-top: 0;
}

.mt-3 {
	margin-top: 0.75rem;
}

.mt-4 {
	margin-top: 1rem;
}

.mt-6 {
	margin-top: 1.5rem;
}

.mt-12 {
	margin-top: 3rem;
}

.mt-24 {
	margin-top: 6rem;
}

.pt-4 {
	padding-top: 1rem;
}

.pt-8 {
	padding-top: 2rem;
}

/* Main Content */
.main-content {
	padding-top: 4rem;
}

/* Hero Section */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom right, hsla(320, 85%, 60%, 0.2), hsla(280, 85%, 60%, 0.2), hsla(240, 85%, 40%, 0.2));
}

.dark .hero-gradient {
	opacity: 0.3;
}

.hero-backdrop {
	position: absolute;
	inset: 0;
	background-color: hsla(var(--background) / 0.5);
	backdrop-filter: blur(48px);
}

.hero-title {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.25;
}

@media (min-width: 640px) {
	.hero-title {
		font-size: 3rem;
	}
}

@media (min-width: 1024px) {
	.hero-title {
		font-size: 2.25rem;
	}
}
@media (min-width: 1317px) { //1187
	.hero-title {
		font-size: 2.25rem;
	}
}
@media (min-width: 1451px) {
	.hero-title {
		font-size: 2.5rem;
	}
}
@media (min-width: 1584px) {
	.hero-title {
		font-size: 2.75rem;
	}
}
@media (min-width: 1718px) {
	.hero-title {
		font-size: 3rem;
	}
}
@media (min-width: 1852px) {
	.hero-title {
		font-size: 3.25rem;
	}
}
@media (min-width: 1990px) {
	.hero-title {
		font-size: 3.5rem;
	}
}
@media (min-width: 2120px) {
	.hero-title {
		font-size: 3.75rem;
	}
}

.hero-image {
	position: relative;
}

.dashboard-preview {
	padding: 1rem;
	background-color: hsla(var(--card) / 0.4);
	backdrop-filter: blur(12px);
	border: 1px solid hsla(var(--border) / 0.5);
	border-radius: var(--radius);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}

/*.dashboard-preview:hover {*/
.dashboard-preview.is-active {
	transform: scale(1.5);
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(1.5);
	z-index: 50;
	box-shadow: 0 0 60px hsla(var(--primary) / 0.4);
	backdrop-filter: blur(24px);
}
.dashboard-preview:hover {
	/*cursor: pointer;*/
}

.hero-orb {
	position: absolute;
	width: 16rem;
	height: 16rem;
	border-radius: 50%;
	filter: blur(48px);
	opacity: 0.2;
	z-index: -10;
}

.hero-orb-1 {
	top: 25%;
	right: -2.5rem;
	background-color: hsl(280, 85%, 60%);
}

.hero-orb-2 {
	bottom: 25%;
	left: -2.5rem;
	background-color: hsl(240, 85%, 40%);
}

/* Value Pillars */
.pillar-image-preview {
	margin-top: 1.5rem;
	cursor: zoom-in;
}

.pillar-image-preview img {
	width: 100%;
	border-radius: var(--radius);
	transition: transform 0.3s ease-out;
	border: 1px solid hsl(var(--border) / 0.5);
}

.pillar-image-preview:hover img {
	transform: scale(1.02);
}

/* Image Overlay */
.image-overlay {
	position: fixed;
	inset: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: hsla(var(--background) / 0.9);
	backdrop-filter: blur(12px);
	animation: fadeIn 0.2s ease-out;
}

.image-overlay.hidden {
	display: none;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.image-overlay-content {
	position: relative;
	padding: 1rem;
	background-color: hsla(var(--background) / 0.8);
	backdrop-filter: blur(12px);
	border-radius: 0.75rem;
	box-shadow: 0 25px 50px -12px hsla(var(--primary) / 0.2);
}

.image-overlay-close {
	position: absolute;
	top: -0.5rem;
	right: -0.5rem;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background-color: hsl(var(--background));
	border: 1px solid hsl(var(--border));
	color: hsl(var(--foreground));
	font-size: 1.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

/* How It Works */
.steps-connector {
	position: absolute;
	top: 2rem;
	left: 0;
	right: 0;
	height: 2px;
	background-color: hsl(var(--border));
	width: calc(100% - 4rem);
	margin-left: 2rem;
}

.step-number {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background-color: hsl(var(--primary));
	color: hsl(var(--primary-foreground));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.step-number-mobile {
	width: 3rem;
	height: 3rem;
	font-size: 1rem;
	flex-shrink: 0;
	margin-bottom: 0;
}

/* Pricing Cards */
.pricing-card {
	display: flex;
	flex-direction: column;
}

.min-h-[100px] {
	min-height: 100px;
}

.min-h-[120px] {
	min-height: 120px;
}

.min-h-[140px] {
	min-height: 140px;
}

/* Belief Items */
.belief-item {
	background-color: hsla(var(--card) / 0.4);
	backdrop-filter: blur(12px);
	border: 1px solid hsla(var(--border) / 0.5);
}

/* Team Members */
.team-member-avatar img {
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	object-fit: cover;
}

/* Blog Styles */
.blog-page {
	min-height: 100vh;
}

.blog-posts-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.blog-posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.blog-posts-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.blog-post-card {
	background-color: hsla(var(--card) / 0.4);
	backdrop-filter: blur(12px);
	border: 1px solid hsla(var(--border));
	border-radius: var(--radius);
	overflow: hidden;
	transition: all 0.3s;
}

.blog-post-card:hover {
	border-color: hsla(var(--primary)/ 0.5);
	box-shadow: 0 10px 25px hsla(var(--primary) / 0.05);
	transform: translateY(-4px);
}

.blog-post-thumbnail {
	width: 100%;
	overflow: hidden;
}

.blog-post-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s;
}

.blog-post-card:hover .blog-post-thumbnail img {
	transform: scale(1.05);
}

.blog-post-content {
	padding: 1.5rem;
}

.blog-post-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	font-family: 'Space Grotesk', sans-serif;
}

.blog-post-title a {
	color: hsl(var(--foreground));
	text-decoration: none;
	transition: color 0.2s;
}

.blog-post-title a:hover {
	color: hsl(var(--primary));
}

.blog-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: hsl(var(--muted-foreground));
	margin-bottom: 1rem;
}

.blog-post-excerpt {
	color: hsl(var(--muted-foreground));
	margin-bottom: 1rem;
}

.blog-post-link {
	color: hsl(var(--primary));
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}

.blog-post-link:hover {
	color: hsl(var(--primary));
	text-decoration: underline;
}

/* Single Post */
.single-post-content {
	max-width: 800px;
	margin: 0 auto;
}

.entry-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.25;
}

@media (min-width: 640px) {
	.entry-title {
		font-size: 2.5rem;
	}
}

@media (min-width: 1024px) {
	.entry-title {
		font-size: 3rem;
	}
}

.entry-meta {
	color: hsl(var(--muted-foreground));
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.entry-content {
	font-size: 1.125rem;
	line-height: 1.75;
}

.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius);
}

.entry-content p {
	margin-bottom: 1.5rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.entry-content ul,
.entry-content ol {
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}

.entry-content li {
	margin-bottom: 0.5rem;
}

.entry-footer {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid hsl(var(--border));
}

/* Footer */
.footer {
	padding: 2rem 0;
	border-top: 1px solid hsl(var(--border));
	margin-top: 6rem;
}

/* Responsive */
@media (max-width: 767px) {
	.hidden {
		display: none !important;
	}

	.hero-image.md\:hidden {
		display: none !important;
	}
	.md\:block {
		display: block !important;
	}

	.md\:inline-flex {
		display: none !important;
	}

	.md\:flex {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.md\:hidden {
		display: none !important;
	}
	.hero-image.md\:block {
		display: block !important;
	}

	.md\:flex {
		display: flex !important;
	}

	.md\:inline-flex {
		display: inline-flex !important;
	}
}

/* Utility Classes */
.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.fixed {
	position: fixed;
}

.inset-0 {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.z-10 {
	z-index: 10;
}

.z-40 {
	z-index: 40;
}

.z-50 {
	z-index: 50;
}

.object-contain {
	object-fit: contain;
}

.object-cover {
	object-fit: cover;
}

.rounded-lg {
	border-radius: var(--radius);
}

.rounded-full {
	border-radius: 9999px;
}

.uppercase {
	text-transform: uppercase;
}

.tracking-wider {
	letter-spacing: 0.05em;
}

.max-w-3xl {
	max-width: 48rem;
}

.max-w-4xl {
	max-width: 56rem;
}

.max-w-5xl {
	max-width: 64rem;
}

.max-w-6xl {
	max-width: 72rem;
}

.max-w-7xl {
	max-width: 80rem;
}

.overflow-hidden {
	overflow: hidden;
}

.transition-all {
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.duration-300 {
	transition-duration: 300ms;
}

.ease-out {
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.cursor-pointer {
	cursor: pointer;
}

.w-1\/5 {
	width: 20%;
}

/* WordPress Specific */
.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	font-size: 0.875rem;
	color: hsl(var(--muted-foreground));
	margin-top: 0.5rem;
	text-align: center;
}

.alignleft {
	float: left;
	margin-right: 1.5rem;
	margin-bottom: 1.5rem;
}

.alignright {
	float: right;
	margin-left: 1.5rem;
	margin-bottom: 1.5rem;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* Pagination */
.page-numbers {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
	padding: 0;
	list-style: none;
}

.page-numbers li {
	margin: 0;
}

.page-numbers a,
.page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	border-radius: var(--radius);
	background-color: hsla(var(--card) / 0.4);
	color: hsl(var(--foreground));
	text-decoration: none;
	transition: all 0.2s;
}

.page-numbers a:hover,
.page-numbers .current {
	background-color: hsl(var(--primary));
	color: hsl(var(--primary-foreground));
}

.post-categories a,
.nav-previous a,
.nav-next a{
	color: hsl( var(--primary) );
	text-decoration: none;
}
.post-categories a:hover,
.nav-previous a:hover,
.nav-next a:hover{
	text-decoration: underline;
}
.single-post-page .nav-previous,
.single-post-page .nav-next{
	display: none;
}

@media (min-width: 993px) and (max-width: 1130px){
	li.nav-link a {
		font-size: 0.7rem;
	}
	.navbar .btn-primary{
		font-size: 0.7rem;
	}
}

/*@media (max-width: 992px){
	.md\:flex,
	.md.flex.hidden {
		display: none !important;
	}
	.md.hidden.mobile-menu-btn{
		display: block;
	}
}
@media (min-width: 993px){
	.md\:flex,
	.md.flex.hidden {
		display: flex !important;
	}
	.md.hidden.mobile-menu-btn{
		display: none;
	}
}*/

.how-it-works-section p{
	padding: 0 10px;
}

.demo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.demo-modal.active {
  display: block;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.demo-modal-content {
  position: relative;
  background: #fff;
  max-width: 480px;
  margin: 10vh auto;
  padding: 30px;
  border-radius: 12px;
  z-index: 1;
}

.demo-modal-content h2 {
  margin-bottom: 20px;
  color: hsl(var(--muted-foreground));
}

.demo-modal-content .font-brand.leading-none{
	color: hsl(var(--foreground));
}

.demo-modal-content input,
.demo-modal-content textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.demo-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.form-message {
  margin-top: 10px;
  font-size: 14px;
}
 